pub struct Comment {
pub body: Option<String>,
pub create_time: Option<DateTime<Utc>>,
pub creator: Option<Actor>,
pub name: Option<String>,
pub plain_text_body: Option<String>,
}Expand description
A comment associated with a support case. Case comments are the primary way for Google Support to communicate with a user who has opened a case. When a user responds to Google Support, the user’s responses also appear as comments.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- comments create cases (request|response)
- comments get cases (response)
Fields§
§body: Option<String>The full comment body. Maximum of 12800 characters.
create_time: Option<DateTime<Utc>>Output only. The time when the comment was created.
creator: Option<Actor>Output only. The user or Google Support agent who created the comment.
name: Option<String>Output only. Identifier. The resource name of the comment.
plain_text_body: Option<String>Output only. DEPRECATED. DO NOT USE. A duplicate of the body field. This field is only present for legacy reasons.