Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 846 Bytes

Region.md

File metadata and controls

29 lines (21 loc) · 846 Bytes

Region

Properties

Name Type Description Notes
name str Short name of a region
description str Long name of a region

Example

from lambda_cloud_client.models.region import Region

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

# convert the object into a dict
region_dict = region_instance.to_dict()
# create an instance of Region from a dict
region_form_dict = region.from_dict(region_dict)

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