DataWriteRequestMetadata defines the structure of metadata for a write request. It includes the schema version of the data to be written.
| Name | Type | Description | Notes |
|---|---|---|---|
| schema_version | str | schema_version represents the version of the schema for the data being written. | [optional] |
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)