postId

Id of the post for the current view, if the current view is a post.



Note that this field is only present if the current view is a post, i.e. view.isPost is true.


postId is a member of the view dictionary.



postId has data type number

Numbers are integer values. They can be used in mathematical operators.

Operators

The following operators apply to the number data type.
number1 + number2
Returns a number which is the sum of the given numbers.
number1 - number2
Returns a number which is the difference of the given numbers.
number1 * number2
Returns a number which is the product of the given numbers.
number1 / number2
Returns a number which is the division of the given numbers.
number1 <= number2
(Also supported with the syntax lte)
Returns a boolean which is true if the first number is less than or equal to the second number.
number1 >= number2
(Also supported with the syntax gte)
Returns a boolean which is true if the first number is greater than or equal to the second number.
number1 > number2
(Also supported with the syntax gt)
Returns a boolean which is true if the first number is greater than the second number.
number1 < number2
(Also supported with the syntax lt)
Returns a boolean which is true if the first number is less than the second number.
number1 % number2
Returns a number which is the first number modulo the second number.




View all "view fields