Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

AddDocumentAccessAttributesRequest.md

File metadata and controls

30 lines (21 loc) · 1.28 KB

AddDocumentAccessAttributesRequest

List of document access attributes to add

Properties

Name Type Description Notes
access_attributes List[AddAccessAttribute] List of document access attributes [optional]

Example

from formkiq_client.models.add_document_access_attributes_request import AddDocumentAccessAttributesRequest

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

# convert the object into a dict
add_document_access_attributes_request_dict = add_document_access_attributes_request_instance.to_dict()
# create an instance of AddDocumentAccessAttributesRequest from a dict
add_document_access_attributes_request_form_dict = add_document_access_attributes_request.from_dict(add_document_access_attributes_request_dict)

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