Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 904 Bytes

File metadata and controls

30 lines (21 loc) · 904 Bytes

RegionPayload

Properties

Name Type Description Notes
name str
description str [optional]

Example

from hyperstack.models.region_payload import RegionPayload

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

# convert the object into a dict
region_payload_dict = region_payload_instance.to_dict()
# create an instance of RegionPayload from a dict
region_payload_form_dict = region_payload.from_dict(region_payload_dict)

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