Interface GetConversationsParameters

Parameters object for VonageClient.getConversations

interface GetConversationsParameters {
    cursor?: Nullable<string>;
    includeCustomData?: Nullable<boolean>;
    order?: Nullable<PresentingOrder>;
    orderBy?: Nullable<OrderBy>;
    pageSize?: Nullable<number>;
}

Properties

cursor?: Nullable<string>

The cursor indicating the starting point for pagination, default is the first page.

includeCustomData?: Nullable<boolean>

Indicates whether to include custom data in the results, default is false.

order?: Nullable<PresentingOrder>

The order in which conversations are presented, default is PresentingOrder.ASC.

orderBy?: Nullable<OrderBy>

The strategy for ordering the conversations, default is OrderBy.CREATED.

pageSize?: Nullable<number>

The maximum number of conversations to retrieve per request, default is 10.