Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 947 Bytes

File metadata and controls

30 lines (21 loc) · 947 Bytes

ReasonAttributes

Attributes used to transfer data

Properties

Name Type Description Notes
empty bool [optional]

Example

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)

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