Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

BaseResponseStatus

Properties

Name Type Description Notes
status bool Response status on whether the request succeeded [optional] [default to True]
data StatusOutput [optional]
message str [optional]
errors List[ErrorModel] [optional]
meta MetaModel Metadata [optional]

Example

from revengai.models.base_response_status import BaseResponseStatus

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

# convert the object into a dict
base_response_status_dict = base_response_status_instance.to_dict()
# create an instance of BaseResponseStatus from a dict
base_response_status_from_dict = BaseResponseStatus.from_dict(base_response_status_dict)

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