Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Record

Properties

NameTypeDescriptionNotes
idstrRecord identifier returned by the store adapter.
modelstrModel identifier used for this record.
versionstrModel version used for this record.
payloadDict[str, object]Opaque business payload routed to the IO adapter.

Example

from ce_rise_hex_core_sdk.models.record import Record

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

# convert the object into a dict
record_dict = record_instance.to_dict()
# create an instance of Record from a dict
record_from_dict = Record.from_dict(record_dict)

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