Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

File metadata and controls

33 lines (24 loc) · 1.06 KB

UpdateRegionInput

Properties

Name Type Description Notes
name str [optional]
code str [optional]
provider str [optional]
endpoint str [optional]
active bool [optional]

Example

from stratum.models.update_region_input import UpdateRegionInput

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

# convert the object into a dict
update_region_input_dict = update_region_input_instance.to_dict()
# create an instance of UpdateRegionInput from a dict
update_region_input_from_dict = UpdateRegionInput.from_dict(update_region_input_dict)

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