Attributes used to transfer data
| Name | Type | Description | Notes |
|---|---|---|---|
| empty | bool | [optional] |
from halo_client.models.reason_attributes import ReasonAttributes
# TODO update the JSON string below
json = "{}"
# create an instance of ReasonAttributes from a JSON string
reason_attributes_instance = ReasonAttributes.from_json(json)
# print the JSON string representation of the object
print(ReasonAttributes.to_json())
# convert the object into a dict
reason_attributes_dict = reason_attributes_instance.to_dict()
# create an instance of ReasonAttributes from a dict
reason_attributes_from_dict = ReasonAttributes.from_dict(reason_attributes_dict)