Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.5 KB

DataCastingRequest.md

File metadata and controls

42 lines (33 loc) · 1.5 KB

DataCastingRequest

Properties

Name Type Description Notes
url str
catalog_id str
workspace_id str
processor_id str
additional_links List[Link] [optional]
subjects List[Subject] [optional]
collection str [optional]
asset_filters List[str] [optional]
path str [optional]
casting DataCastingEnum [optional]
depth int [optional]
background_job_id str [optional]
id str [optional]
assets_filters List[str] [optional]

Example

from openapi_client.models.data_casting_request import DataCastingRequest

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

# convert the object into a dict
data_casting_request_dict = data_casting_request_instance.to_dict()
# create an instance of DataCastingRequest from a dict
data_casting_request_from_dict = DataCastingRequest.from_dict(data_casting_request_dict)

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