Parse Arduino Yun SDK
1
Parse Arduino Yun SDK
|
Class responsible for tracking an event. More...
#include <ParseTrackEvent.h>
Public Member Functions | |
ParseTrackEvent () | |
Constructor of ParseTrackEvent object. | |
void | setEventName (const char *eventName) |
set the track event name, which will be available in Parse Analytics 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 tracking an event.
void ParseTrackEvent::setEventName | ( | const char * | eventName | ) |
set the track event name, which will be available in Parse Analytics
eventName | event name. |