semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
get_account_feed.h
1#ifndef _fc_get_account_feed_
2#define _fc_get_account_feed_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char* json = nullptr;
11
12public:
13// Function: ~GetAccountFeed
14
15// distructor of the class, frees up the memory occupied by the array/s
16
17// Prototype:
18// ~GetAccountFeed()
19
20// Parameters:
21
22// Returns:
25 {
26 delete[] json;
27 json = nullptr;
28 }
29
30// Function: GetAccountFeed.set
31
32// Gets the account feed's configuration and content. Each post can only contain a bucket component type.
33
34// Prototype:
35// void GetAccountFeed::set(const char* accountId,int before,int after,int limit);
36
37// Parameters:
42
43// Returns:
45
46 void set(const char* accountId,int before,int after,int limit);
47
48// Function: GetAccountFeed.get
49
50// Prototype:
52
53// Parameters:
54
55// Returns:
57
58 char* getEPurl();
59
60// Function: BucketOpen.getWSEPurl
61
62// provides this endpoint
63
64// Prototype:
66
67// Parameters:
68
69// Returns:
71
72 char* getWSEPurl();
73
74// return the json script
75
76// Prototype:
77// void GetAccountFeed::get();
78
79// Parameters:
80
81// Returns:
83 char* get();
84};
85
86#endif
Definition get_account_feed.h:7
char * getEPurl()
Definition get_account_feed.cpp:42
char * get()
Definition get_account_feed.cpp:76
~GetAccountFeed()
Definition get_account_feed.h:24
void set(const char *accountId, int before, int after, int limit)
Definition get_account_feed.cpp:19
char * getWSEPurl()
Definition get_account_feed.cpp:59