Comment
Base definition
{
"kind": "comment",
"createdAt": int,
"updatedAt": int,
"text": str,
"user": {
...user.base // See user resource definition
}
}
Documentation
Fields
Description
kind
string
The resource type. Will always be "comment".
createdAt
integer
Timestamp for when the comment was created. Stored as milliseconds since the epoch (1970-01-01).
updatedAt
integer
Timestamp for when the comment was last updated. Stored as milliseconds since the epoch (1970-01-01).
user
object The user who left the comment. Will contain the contents of the user.base resource definition
Last updated
Was this helpful?