Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1000 Bytes

File metadata and controls

34 lines (25 loc) · 1000 Bytes

WarningEvent

Properties

Name Type Description Notes
attempt int
identifiers List[str] [optional]
kind str
message str
seq int
type str

Example

from revengai.models.warning_event import WarningEvent

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

# convert the object into a dict
warning_event_dict = warning_event_instance.to_dict()
# create an instance of WarningEvent from a dict
warning_event_from_dict = WarningEvent.from_dict(warning_event_dict)

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