Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

DataWriteRequestMetadata

DataWriteRequestMetadata defines the structure of metadata for a write request. It includes the schema version of the data to be written.

Properties

NameTypeDescriptionNotes
schema_versionstrschema_version represents the version of the schema for the data being written.[optional]

Example

frompermify_async.models.data_write_request_metadataimportDataWriteRequestMetadata# TODO update the JSON string belowjson="{}"# create an instance of DataWriteRequestMetadata from a JSON stringdata_write_request_metadata_instance=DataWriteRequestMetadata.from_json(json)
# print the JSON string representation of the objectprint(DataWriteRequestMetadata.to_json())
# convert the object into a dictdata_write_request_metadata_dict=data_write_request_metadata_instance.to_dict()
# create an instance of DataWriteRequestMetadata from a dictdata_write_request_metadata_from_dict=DataWriteRequestMetadata.from_dict(data_write_request_metadata_dict)

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