Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 962 Bytes

BadRequestObject.md

File metadata and controls

29 lines (21 loc) · 962 Bytes

BadRequestObject

Properties

Name Type Description Notes
error str [optional]
message str [optional]

Example

from sparkfly_client.models.bad_request_object import BadRequestObject

# TODO update the JSON string below
json = "{}"
# create an instance of BadRequestObject from a JSON string
bad_request_object_instance = BadRequestObject.from_json(json)
# print the JSON string representation of the object
print BadRequestObject.to_json()

# convert the object into a dict
bad_request_object_dict = bad_request_object_instance.to_dict()
# create an instance of BadRequestObject from a dict
bad_request_object_form_dict = bad_request_object.from_dict(bad_request_object_dict)

[Back to Model list] [Back to API list] [Back to README]