Comment
A comment is a written remark on a contract from a participant of that contract.
Comment attributes
Attribute | Type | Description |
---|---|---|
_links | object | Contains links to endpoints associated with the parent object. See Links. |
body | string | The body contains the content of the comment. |
created_time | string(datetime) | The time the comment was created. |
id | integer(signed_integer_id) | The ID of the comment. |
parent_id | integer(signed_integer_id) | The ID of the parent comment. It should not be an ID of a reply comment. |
participants | object | Contains the participants' information that the comment should notify. See comment participants. |
private | boolean | Whether comment visibility is to the commentator's party or not. True if only visible to the commentator's party and false otherwise. |
updated_time | string(datetime) | The time the comment was last updated. |
Comment participants
Participants contain an array of comment recipient objects and a comment sender object.
Attribute | Type | Description |
---|---|---|
recipients | array | Recipients contain a list of participant objects of the comment's recipients. |
sender | object | Sender's participant object. |
Participant object
Attribute | Type | Description |
---|---|---|
participant_id | integer(signed_integer_id) | The ID of the participant. |
participant_name | string | The name of the participant. |
party_id | integer(signed_integer_id) | The ID of the party. |
party_name | string | The name of the party. |
Updated over 1 year ago