Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1021 Bytes

File metadata and controls

32 lines (23 loc) · 1021 Bytes

CreateRegionInput

Properties

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

Example

from stratum.models.create_region_input import CreateRegionInput

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

# convert the object into a dict
create_region_input_dict = create_region_input_instance.to_dict()
# create an instance of CreateRegionInput from a dict
create_region_input_from_dict = CreateRegionInput.from_dict(create_region_input_dict)

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