The reason to be interested in
| 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 |
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)