Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

ReasonTypeNotifierMatrix

Properties

Name Type Description Notes
notifiers List[NotifierInfo] [optional]
reason_types List[ReasonTypeInfo] [optional]
state_matrix List[List[bool]] [optional]

Example

from halo_client.models.reason_type_notifier_matrix import ReasonTypeNotifierMatrix

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

# convert the object into a dict
reason_type_notifier_matrix_dict = reason_type_notifier_matrix_instance.to_dict()
# create an instance of ReasonTypeNotifierMatrix from a dict
reason_type_notifier_matrix_from_dict = ReasonTypeNotifierMatrix.from_dict(reason_type_notifier_matrix_dict)

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