XrefSetMetadata¶
Xrefset metadata
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| xref_set_id | str | [optional] | |
| created_by | str | [optional] | |
| created_date | int | [optional] | |
| last_updated | int | [optional] | |
| data | object | [optional] |
Example¶
from odm_api.models.xref_set_metadata import XrefSetMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of XrefSetMetadata from a JSON string
xref_set_metadata_instance = XrefSetMetadata.from_json(json)
# print the JSON string representation of the object
print(XrefSetMetadata.to_json())
# convert the object into a dict
xref_set_metadata_dict = xref_set_metadata_instance.to_dict()
# create an instance of XrefSetMetadata from a dict
xref_set_metadata_from_dict = XrefSetMetadata.from_dict(xref_set_metadata_dict)