semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
bucket_like.h
1#ifndef _bucket_like_
2#define _bucket_like_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char* json = nullptr;
11
12public:
13
14// Function: ~BucketLike
15
16// distructor of the class, frees up the memory occupied by the array/s
17
18// Prototype:
19// ~BucketLike()
20
21// Parameters:
22
23// Returns:
26 {
27 delete[] json;
28 json = nullptr;
29 }
30
31// Function: BucketLike.set
32
33// This endpoint sets a like by the current account to any referenced bucket that allows likes.
34
35// Prototype:
36// void set(const char* bucketId);
37
38// Parameters:
40
41// Returns:
43 void set(const char* bucketId);
44
45// Function: BucketLike.getEPurl
46
47// provides the full url for this endpoint
48
49// Prototype:
50// char* getEPurl();
51
52// Parameters:
53
54// Returns:
56 char* getEPurl();
57
58// Function: BucketLike.getWSEPurl
59
60// provides this endpoint
61
62// Prototype:
63// char* getWSEPurl();
64
65// Parameters:
66
67// Returns:
69 char* getWSEPurl();
70
71// Function: BucketLike.get
72
73// return the json script
74
75// Prototype:
76// void BucketLike::get();
77
78// Parameters:
79
80// Returns:
82 char* get();
83};
84
85#endif
Definition bucket_like.h:7
char * getWSEPurl()
Definition bucket_like.cpp:54
~BucketLike()
Definition bucket_like.h:25
char * getEPurl()
Definition bucket_like.cpp:37
void set(const char *bucketId)
Definition bucket_like.cpp:16
char * get()
Definition bucket_like.cpp:71