vx_req_account_chat_history_set_marker
Set chat history markers.
Read time 1 minuteLast updated 16 days ago
Sets the message as read in a given conversation, this information will be used to calculate the amount of unread messages in a conversation among other things. 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. |
| char * | with_uri The URI you want to set the chat marker on, can be a channel URI or user URI. |
| char * | message_id The message ID you want to mark as read. |
| long long | seen_at The time you want to mark the message as read. |
Detailed Description
Sets the message as read in a given conversation, this information will be used to calculate the amount of unread messages in a conversation among other things. See: vx_resp_account_chat_history_set_markerstruct vx_req_account_chat_history_set_marker;
Public Attributes Documentation
variable base
The common properties for all requests.vx_req_base_t base;
variable account_handle
The handle returned from a successful login request.VX_HANDLE account_handle;
variable with_uri
The URI you want to set the chat marker on, can be a channel URI or user URI.char * with_uri;
variable message_id
The message ID you want to mark as read.char * message_id;
variable seen_at
The time you want to mark the message as read. Defaults to the current time.long long seen_at;