Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

InterestReason

The reason to be interested in

Properties

Name Type Description Notes
expression str The expression to be interested in [optional]
reason_type str The name of the reason definition to be interested in
subject InterestReasonSubject

Example

from halo_client.models.interest_reason import InterestReason

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

# convert the object into a dict
interest_reason_dict = interest_reason_instance.to_dict()
# create an instance of InterestReason from a dict
interest_reason_from_dict = InterestReason.from_dict(interest_reason_dict)

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