Interface GetConversationMembersParameters

interface GetConversationMembersParameters {
    cursor?: Nullable<string>;
    order?: Nullable<PresentingOrder>;
    pageSize?: Nullable<number>;
}

Properties

cursor?: Nullable<string>

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

order?: Nullable<PresentingOrder>

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

pageSize?: Nullable<number>

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