Skip to content

Latest commit

History

History
32 lines (23 loc) · 984 Bytes

File metadata and controls

32 lines (23 loc) · 984 Bytes

SourceDeltaEvent

Properties

NameTypeDescriptionNotes
attemptint
contentstr
seqint
typestr

Example

fromrevengai.models.source_delta_eventimportSourceDeltaEvent# TODO update the JSON string belowjson="{}"# create an instance of SourceDeltaEvent from a JSON stringsource_delta_event_instance=SourceDeltaEvent.from_json(json)
# print the JSON string representation of the objectprint(SourceDeltaEvent.to_json())
# convert the object into a dictsource_delta_event_dict=source_delta_event_instance.to_dict()
# create an instance of SourceDeltaEvent from a dictsource_delta_event_from_dict=SourceDeltaEvent.from_dict(source_delta_event_dict)

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