v16.3.0
Latest
2020.3+

Class ConversationQueryOptions

Options for GetConversationsAsync(ConversationQueryOptions) requests.

Inheritance
ConversationQueryOptions
Namespace: Unity.Services.Vivox
Syntax
public sealed class ConversationQueryOptions

Properties

CutoffTime

This timestamp will make a GetConversationsAsync(ConversationQueryOptions) query return the results as they would be at a specific point in time. Any changes in what conversations the user is a part of or updates to existing conversations that would have happened after the cutoff time will be omitted from the results of the query.

Declaration
public DateTime? CutoffTime { get; set; }
Property Value
TypeDescription
Nullable<DateTime>

PageCursor

The Page number you want to retrieve, 0-indexed Returns only the first page by default.

Declaration
public int PageCursor { get; set; }
Property Value
TypeDescription
Int32

PageSize

The number of conversations that will be returned per page. A maximum value of 50 will be respected

Declaration
public int PageSize { get; set; }
Property Value
TypeDescription
Int32