The current status of the resource.
| 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] |
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)