Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 989 Bytes

File metadata and controls

29 lines (21 loc) · 989 Bytes

RemoveCountries

Properties

Name Type Description Notes
value object Страна.
status object Результат удаления страны.

Example

from timeweb_cloud_api.models.remove_countries import RemoveCountries

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

# convert the object into a dict
remove_countries_dict = remove_countries_instance.to_dict()
# create an instance of RemoveCountries from a dict
remove_countries_form_dict = remove_countries.from_dict(remove_countries_dict)

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