Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 935 Bytes

File metadata and controls

29 lines (20 loc) · 935 Bytes

MigrateRegionInput

Properties

Name Type Description Notes
region_id UUID

Example

from stratum.models.migrate_region_input import MigrateRegionInput

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

# convert the object into a dict
migrate_region_input_dict = migrate_region_input_instance.to_dict()
# create an instance of MigrateRegionInput from a dict
migrate_region_input_from_dict = MigrateRegionInput.from_dict(migrate_region_input_dict)

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