Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

GenericSuccessResponse

GenericSuccessResponse.

Properties

Name Type Description Notes
message str [optional] [default to 'Successfully completed']
success bool [optional] [default to True]

Example

from mixpeek.models.generic_success_response import GenericSuccessResponse

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

# convert the object into a dict
generic_success_response_dict = generic_success_response_instance.to_dict()
# create an instance of GenericSuccessResponse from a dict
generic_success_response_from_dict = GenericSuccessResponse.from_dict(generic_success_response_dict)

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