Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

WarningMailLogResponse

Properties

Name Type Description Notes
data List[WarningMailLogFields] [optional]
message str [optional]
status bool [optional]
total int [optional]

Example

from hyperstack.models.warning_mail_log_response import WarningMailLogResponse

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

# convert the object into a dict
warning_mail_log_response_dict = warning_mail_log_response_instance.to_dict()
# create an instance of WarningMailLogResponse from a dict
warning_mail_log_response_from_dict = WarningMailLogResponse.from_dict(warning_mail_log_response_dict)

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