Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.64 KB

PublicationRequest.md

File metadata and controls

41 lines (32 loc) · 1.64 KB

PublicationRequest

Properties

Name Type Description Notes
id str [optional]
catalog_id str
token AccessToken [optional]
url str
additional_links List[Link] [optional]
subjects List[Subject] [optional]
collection str Path in the workspace where the imported data will be stored. Not mandatory, usually the service prepares a unique path according to the type of import [optional]
depth int [optional]
background_job_id str [optional]
publication_link List[Link] [optional]
context_id str [optional]
properties Dict[str, object] [optional]
assets_filters List[str] [optional]

Example

from openapi_client.models.publication_request import PublicationRequest

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

# convert the object into a dict
publication_request_dict = publication_request_instance.to_dict()
# create an instance of PublicationRequest from a dict
publication_request_from_dict = PublicationRequest.from_dict(publication_request_dict)

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