The structure of the question / thread

interface Question {
    createdDate?: Date;
    id?: number;
    reCaptchaToken?: string;
    responses?: Response[];
    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

reCaptchaToken?: string
responses?: Response[]

List of answers in for the question / thread

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.