Class ChatCursorResult<T>
Constructors
constructor
- new ChatCursorResult<T>(params): ChatCursorResult<T>
Parameters
- params: {
cursor: string;
list?: T[];
opt?: {
map: ((obj: any) => any);
};
}cursor: string
Optional
list?: T[]
Optional
opt?: {
map: ((obj: any) => any);
}
Properties
The generic class which contains the cursor and pagination result.
The class instance is returned when you make a paginated query.