Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

ResourceState

The current status of the resource.

Properties

Name Type Description Notes
state str Represents one of the possible states of the resource. [readonly]
message str A human readable message describing the current state. In case of an error, the message will contain a detailed error message. [optional] [readonly]

Example

from ionoscloud_cdn.models.resource_state import ResourceState

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

# convert the object into a dict
resource_state_dict = resource_state_instance.to_dict()
# create an instance of ResourceState from a dict
resource_state_from_dict = ResourceState.from_dict(resource_state_dict)

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