Class responsible for new Parse object creation.
More...
#include <ParseObjectCreate.h>
|
|
void | addKey (const char *key) |
| |
|
|
String | httpPath |
| |
|
String | requestBody |
| |
|
bool | isBodySet |
| |
Class responsible for new Parse object creation.
| void ParseObjectCreate::add |
( |
const char * |
key, |
|
|
int |
d |
|
) |
| |
Add a key and integer value pair to object.
- Parameters
-
| key | The key name. |
| d | The value. |
| void ParseObjectCreate::add |
( |
const char * |
key, |
|
|
double |
d |
|
) |
| |
Add a key and double value pair to object.
- Parameters
-
| key | The key name. |
| d | The value. |
| ParseObjectCreate::add |
( |
const char * |
key, |
|
|
const char * |
s |
|
) |
| |
add a key and string value pair to object.
- Parameters
-
| key | The key name. |
| s | The value. |
| void ParseObjectCreate::add |
( |
const char * |
key, |
|
|
bool |
b |
|
) |
| |
add a key and boolean value pair to object.
- Parameters
-
| key | The key name. |
| b | The value. |
| void ParseObjectCreate::addGeoPoint |
( |
const char * |
key, |
|
|
double |
lat, |
|
|
double |
lon |
|
) |
| |
add a key and GeoPoint value pair to object.
- Parameters
-
| key | The key name. |
| lat | The latitude value. |
| lon | The logitude value. |
| void ParseObjectCreate::addJSONValue |
( |
const char * |
key, |
|
|
const char * |
json |
|
) |
| |
add a key and json value pair to object.
- Parameters
-
| key | The key name. |
| json | The value. |
| void ParseObjectCreate::addJSONValue |
( |
const char * |
key, |
|
|
const String & |
json |
|
) |
| |
add a key and json value pair to object.
- Parameters
-
| key | The key name. |
| json | The value. |
| void ParseObjectCreate::setJSONBody |
( |
const char * |
jsonBody | ) |
|
set the json body of object directly.
NOTE: this will remove all previous key-value pairs set if there are any
- Parameters
-
| jsonBody | The new JSON body. |
| void ParseObjectCreate::setJSONBody |
( |
const String & |
jsonBody | ) |
|
set the json body of object directly.
NOTE: this will remove all previous key-value pairs set if there are any
- Parameters
-
| jsonBody | The new JSON body. |
The documentation for this class was generated from the following files: