Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.15 KB

ArchiveContentRequest.md

File metadata and controls

29 lines (21 loc) · 1.15 KB

ArchiveContentRequest

Request object holding archive content related paramteres for given content.

Properties

Name Type Description Notes
archive_params Dict[str, str] Optional map (String-String) of archive request properties for given content. [optional]

Example

from alfresco_core_api_client.models.archive_content_request import ArchiveContentRequest

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

# convert the object into a dict
archive_content_request_dict = archive_content_request_instance.to_dict()
# create an instance of ArchiveContentRequest from a dict
archive_content_request_form_dict = archive_content_request.from_dict(archive_content_request_dict)

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