| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | ||
| name | str | ||
| code | str | ||
| provider | str | [optional] | |
| endpoint | str | [optional] | |
| active | bool | ||
| created_at | datetime | ||
| updated_at | datetime |
from stratum.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_from_dict = Region.from_dict(region_dict)