semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
channel_message_update.h
1#ifndef _update_to_channel_request_
2#define _update_to_channel_request_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char* json = nullptr;
11
12// Function: ChannelMessageUpdate.addOptions
13
14// add an list of options
15
16// Prototype:
17// void ChannelMessageUpdate::addOptions(bool silent);
18
19// Parameters:
21
22// Returns:
24 void addOptions(bool silent);
25
26public:
27
28// Function: ~ChannelMessageUpdate
29
30// distructor of the class, frees up the memory occupied by the array/s
31
32// Prototype:
33// ~ChannelMessageUpdate()
34
35// Parameters:
36
37// Returns:
40 {
41 delete[] json;
42 json = nullptr;
43 }
44
45// Function: ChannelMessageUpdate.set
46
47// This endpoint allows to update a specific message published in a channel.
48
49// Prototype:
50// void set(const char* messageId, const char* dataComponent, bool silent);
51
52// Parameters:
56
57// Returns:
59 void set(const char* messageId, const char* dataComponent, bool silent);
60
61// Function: ChannelMessageUpdate.getEPurl
62
63// provides the full url for this endpoint
64
65// Prototype:
66// char* getEPurl();
67
68// Parameters:
69
70// Returns:
72 char* getEPurl();
73
74// Function: ChannelMessageUpdate.getWSEPurl
75
76// provides this endpoint
77
78// Prototype:
79// char* getWSEPurl();
80
81// Parameters:
82
83// Returns:
85 char* getWSEPurl();
86
87// Function: ChannelMessageUpdate.get
88
89// return the json script
90
91// Prototype:
92// void ChannelMessageUpdate::get();
93
94// Parameters:
95
96// Returns:
98 char* get();
99};
100
101#endif
Definition channel_message_update.h:7
~ChannelMessageUpdate()
Definition channel_message_update.h:39
char * get()
Definition channel_message_update.cpp:99
char * getEPurl()
Definition channel_message_update.cpp:65
void set(const char *messageId, const char *dataComponent, bool silent)
Definition channel_message_update.cpp:18
char * getWSEPurl()
Definition channel_message_update.cpp:82