Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 888 Bytes

File metadata and controls

29 lines (20 loc) · 888 Bytes

SuccessResponse

Properties

Name Type Description Notes
success bool

Example

from stratum.models.success_response import SuccessResponse

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

# convert the object into a dict
success_response_dict = success_response_instance.to_dict()
# create an instance of SuccessResponse from a dict
success_response_from_dict = SuccessResponse.from_dict(success_response_dict)

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