interface CommentCreate {
    body?: string;
    public?: boolean;
}

Hierarchy (view full)

Properties

Properties

body?: string

Content of the comment.

public?: boolean

Indicates whether the comment is public (true) or private/internal (false).