Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

CommonSuccessEmptyResource.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

CommonSuccessEmptyResource

Properties

Name Type Description Notes
message str [optional]

Example

from hostinger_api.models.common_success_empty_resource import CommonSuccessEmptyResource

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

# convert the object into a dict
common_success_empty_resource_dict = common_success_empty_resource_instance.to_dict()
# create an instance of CommonSuccessEmptyResource from a dict
common_success_empty_resource_from_dict = CommonSuccessEmptyResource.from_dict(common_success_empty_resource_dict)

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