semilimes mcu sdk 0.1
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
channel_get.h
1#ifndef _get_channels_
2#define _get_channels_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char** pjson;
11
12public:
13// Function: ChannelGet
14
15// This endpoint finds channels based on specified parameters
16
17// Prototype:
18// void ChannelGet(char* json);
19
20// Parameters:
22
23// Returns:
25 ChannelGet(char* json)
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: ChannelGet.setObj
32
33// This endpoint finds channels based on specified parameters
34
35// Prototype:
36// void setObj(char* ownerId,char* editorId,char* channelId,char* title);
37
38// Parameters:
43
44
45// Returns:
47 void setObj(char* ownerId,char* editorId,char* channelId,char* title);
48
49// Function: ChannelGet.getEPurl
50
51// provides the full url for this endpoint
52
53// Prototype:
54// char* getEPurl();
55
56// Parameters:
57
58// Returns:
60 char* getEPurl();
61};
62
63#endif
Definition channel_get.h:7
ChannelGet(char *json)
Definition channel_get.h:25
char * getEPurl()
Definition channel_get.cpp:41
void setObj(char *ownerId, char *editorId, char *channelId, char *title)
Definition channel_get.cpp:20