The core structure of a QnA item

interface QnAItem {
    createdDate?: Date;
    id?: number;
    status?: QnAItemStatus;
    text?: string;
    updatedDate?: Date;
    user?: UserIdentityRef;
}

Hierarchy (View Summary)

Properties

createdDate?: Date

Time when the review was first created

id?: number

Unique identifier of a QnA item

status?: QnAItemStatus

Get status of item

text?: string

Text description of the QnA item

updatedDate?: Date

Time when the review was edited/updated

User details for the item.