Interface CreateThreadedCommentData

interface CreateThreadedCommentData {
    authorId: null | string;
    createdAt: null | Date;
    externalId: null | string;
    text: string;
    updatedAt: null | Date;
}

Hierarchy

  • default
    • CreateThreadedCommentData

Properties

authorId: null | string
createdAt: null | Date
externalId: null | string
text: string
updatedAt: null | Date