Interface CommentResponse

interface CommentResponse {
    comment_view: CommentView;
    errors?: string[];
    message?: string;
    recipient_ids: number[];
    status?: string;
}

Properties

comment_view: CommentView
errors?: string[]
message?: string
recipient_ids: number[]
status?: string

Generated using TypeDoc