Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 918 Bytes

HttpSuccess.md

File metadata and controls

30 lines (21 loc) · 918 Bytes

HttpSuccess

A simple response indicating success when no extra data is needed

Properties

Name Type Description Notes
status str [optional]

Example

from openapi_client.models.http_success import HttpSuccess

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

# convert the object into a dict
http_success_dict = http_success_instance.to_dict()
# create an instance of HttpSuccess from a dict
http_success_from_dict = HttpSuccess.from_dict(http_success_dict)

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