semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
groupchat_create.h
1#ifndef _groupchat_create_
2#define _groupchat_create_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char* json = nullptr;
11 char* jsonArray = nullptr;
12
13public:
14// Function: ~GroupchatCreate
15
16// distructor of the class, frees up the memory occupied by the array/s
17
18// Prototype:
19// ~GroupchatCreate()
20
21// Parameters:
22
23// Returns:
26 {
27 delete[] json;
28 delete[] jsonArray;
29 json = nullptr;
30 jsonArray = nullptr;
31 }
32
33// Function: GroupchatCreate.set
34
35// This endpoint creates a new group chat with a specified name. It's also possible to directly invite other accounts to the chat upon creation by specifying their accountIds in the recipientIds array.
36
37// Prototype:
38// void set(const char* title);
39
40// Parameters:
42
43// Returns:
45 void set(const char* title);
46
47// Function: GroupchatCreate.addRecipientIds
48
49// Add the recipientId (the account Id to be added in the groupchat)
50
51// Prototype:
52// void addRecipientIds(const char* recipientIds);
53
54// Parameters:
56
57// Returns:
59 void addRecipientId(const char* recipientIds);
60
61// Function: GroupchatCreate.appendRecipientIds
62
63// Append the selected recipientIds
64
65// Prototype:
66// void appendRecipientIds();
67
68// Parameters:
69
70// Returns:
72 void appendRecipientIds();
73
74// Function: GroupchatCreate.getEPurl
75
76// provides the full url for this endpoint
77
78// Prototype:
79// char* getEPurl();
80
81// Parameters:
82
83// Returns:
85 char* getEPurl();
86
87// Function: GroupchatCreate.getWSEPurl
88
89// provides this endpoint
90
91// Prototype:
92// char* getWSEPurl();
93
94// Parameters:
95
96// Returns:
98 char* getWSEPurl();
99
100// Function: GroupchatCreate.get
101
102// return the json script
103
104// Prototype:
105// void GroupchatCreate::get();
106
107// Parameters:
108
109// Returns:
111 char* get();
112};
113
114#endif
Definition groupchat_create.h:7
void set(const char *title)
Definition groupchat_create.cpp:16
void addRecipientId(const char *recipientIds)
Definition groupchat_create.cpp:38
char * get()
Definition groupchat_create.cpp:123
~GroupchatCreate()
Definition groupchat_create.h:25
char * getWSEPurl()
Definition groupchat_create.cpp:106
char * getEPurl()
Definition groupchat_create.cpp:89
void appendRecipientIds()
Definition groupchat_create.cpp:67