| Name |
Type |
Description |
Notes |
| data |
str |
|
|
from dappserver_server_sdk.models.ini_object_parse_jsondto import INIObjectParseJSONDTO
# TODO update the JSON string below
json = "{}"
# create an instance of INIObjectParseJSONDTO from a JSON string
ini_object_parse_jsondto_instance = INIObjectParseJSONDTO.from_json(json)
# print the JSON string representation of the object
print INIObjectParseJSONDTO.to_json()
# convert the object into a dict
ini_object_parse_jsondto_dict = ini_object_parse_jsondto_instance.to_dict()
# create an instance of INIObjectParseJSONDTO from a dict
ini_object_parse_jsondto_form_dict = ini_object_parse_jsondto.from_dict(ini_object_parse_jsondto_dict)
[Back to Model list] [Back to API list] [Back to README]