vx_req_account_send_subscription_reply
Reference the Vivox Core SDK API.
Read time 1 minuteLast updated 20 hours ago
Respond to an incoming subscription event. 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 vx_req_account_anonymous_login request. |
| vx_rule_type | rule_type The presence rule type. |
| int | auto_accept Determine whether the buddy will automatically be added to the account's buddy list (1 or 0). |
| char * | buddy_uri The identifier of the buddy who sent the initial subscription. |
| char * | subscription_handle The subscription identifier that was presented with the inbound subscription event. |
Detailed Description
Respond to an incoming subscription event. See: vx_resp_account_send_subscription_reply For example, a request from another user to put a user on their buddy list.struct vx_req_account_send_subscription_reply;
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 vx_req_account_anonymous_login request.VX_HANDLE account_handle;
variable rule_type
The presence rule type. The following list details possible values:vx_rule_type rule_type;
- rule_allow
- rule_block
- rule_hide
variable auto_accept
Determine whether the buddy will automatically be added to the account's buddy list (1 or 0). The default value is 0.int auto_accept;
variable buddy_uri
The identifier of the buddy who sent the initial subscription.char * buddy_uri;
variable subscription_handle
The subscription identifier that was presented with the inbound subscription event.char * subscription_handle;