Properties
| Name |
Type |
Description |
Notes |
| source |
str |
The source parameter is ignored and will be removed in version 1.61. The source is automatically extracted from the link |
[optional] |
| metadata_link |
str |
|
|
| template_id |
str |
|
[optional] |
Example
from odm_api.models.import_metadata_request import ImportMetadataRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ImportMetadataRequest from a JSON string
import_metadata_request_instance = ImportMetadataRequest.from_json(json)
# print the JSON string representation of the object
print(ImportMetadataRequest.to_json())
# convert the object into a dict
import_metadata_request_dict = import_metadata_request_instance.to_dict()
# create an instance of ImportMetadataRequest from a dict
import_metadata_request_from_dict = ImportMetadataRequest.from_dict(import_metadata_request_dict)
[Back to Model list] [Back to API list] [Back to README]