vx_req_account_get_conversations
Reference the Vivox Core SDK API.
읽는 시간 1분최근 업데이트: 7달 전
Returns a list of conversations a user is participating in, in reverse order. More...
#include <VxcRequests.h>Public Attributes
Name | |
|---|---|
| vx_req_base_t | base The common properties for all requests. |
| VX_HANDLE | account_handle The handle returned from a successful login request. |
| int | cursor Page number you want to retrieve, 0-indexed. |
| long long | request_time The time of your first request, this ensures that you ignore newer messages coming into conversations and therefor preserve the ordering between requests. |
| int | page_size The number of conversations that will be returned per page, maximum value of 50 will be respected. |
Detailed Description
struct vx_req_account_get_conversations;
Returns a list of conversations a user is participating in, in reverse order.
See: vx_resp_account_req_get_conversations
Only returns conversations from a user's DMs and also from channels where a user sent a message.
Public Attributes Documentation
variable base
vx_req_base_t base;
The common properties for all requests.
variable account_handle
VX_HANDLE account_handle;
The handle returned from a successful login request.
variable cursor
int cursor;
Page number you want to retrieve, 0-indexed.
The default setting is -1 which returns the first page
variable request_time
long long request_time;
The time of your first request, this ensures that you ignore newer messages coming into conversations and therefor preserve the ordering between requests.
The default setting is -1 which assumes you only want the first page of results.
variable page_size
int page_size;
The number of conversations that will be returned per page, maximum value of 50 will be respected.
The default setting is -1 which returns a maximum of 50 results