Parse Arduino Yun SDK
1
Parse Arduino Yun SDK
|
Class responsible for cloud function. More...
#include <ParseCloudFunction.h>
Public Member Functions | |
ParseCloudFunction () | |
Constructor of ParseCloudFunction object. | |
void | setFunctionName (const char *function) |
Set the cloud funciton name to be called. More... | |
![]() | |
ParseObjectCreate () | |
Constructor of ParseObjectCreate object. | |
void | add (const char *key, int d) |
Add a key and integer value pair to object. More... | |
void | add (const char *key, double d) |
Add a key and double value pair to object. More... | |
void | add (const char *key, const char *s) |
add a key and string value pair to object. More... | |
void | add (const char *key, bool b) |
add a key and boolean value pair to object. More... | |
void | addGeoPoint (const char *key, double lat, double lon) |
add a key and GeoPoint value pair to object. More... | |
void | addJSONValue (const char *key, const char *json) |
add a key and json value pair to object. More... | |
void | addJSONValue (const char *key, const String &json) |
add a key and json value pair to object. More... | |
void | setJSONBody (const char *jsonBody) |
set the json body of object directly. More... | |
void | setJSONBody (const String &jsonBody) |
set the json body of object directly. More... | |
virtual ParseResponse | send () |
launch the object creation request and execute. | |
![]() | |
ParseRequest () | |
Constructor of ParseRequest object. | |
~ParseRequest () | |
Destructor of ParseRequest object. | |
void | setClassName (const char *className) |
set the ParseObject class name in which request will be performed. More... | |
void | setObjectId (const char *objectId) |
set the ParseObject object id in which request will be performed. More... | |
Additional Inherited Members | |
![]() | |
void | addKey (const char *key) |
![]() | |
String | httpPath |
String | requestBody |
bool | isBodySet |
Class responsible for cloud function.
void ParseCloudFunction::setFunctionName | ( | const char * | function | ) |
Set the cloud funciton name to be called.
function | Function name |