semilimes mcu sdk 0.1
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** pjson;
11
12public:
13// Function: GetAccountFeed
14
15// Gets the account feed's configuration and content. Each post can only contain a bucket component type.
16
17// Prototype:
18// void GetAccountFeed(char* json);
19
20// Parameters:
22
23// Returns:
25 GetAccountFeed(char* json)
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: GetAccountFeed.setObj
32
33// Gets the account feed's configuration and content. Each post can only contain a bucket component type.
34
35// Prototype:
36// void GetAccountFeed::setObj(char* accountId,int before,int after,int limit);
37
38// Parameters:
43
44// Returns:
46
47 void setObj(char* accountId,int before,int after,int limit);
48};
49
50#endif
Definition get_account_feed.h:7
void setObj(char *accountId, int before, int after, int limit)
Definition get_account_feed.cpp:19
GetAccountFeed(char *json)
Definition get_account_feed.h:25