Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.22 KB

DeleteDocumentAccessAttributesResponse.md

File metadata and controls

29 lines (20 loc) · 1.22 KB

DeleteDocumentAccessAttributesResponse

Properties

Name Type Description Notes
message str Document Action message [optional]

Example

from formkiq_client.models.delete_document_access_attributes_response import DeleteDocumentAccessAttributesResponse

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

# convert the object into a dict
delete_document_access_attributes_response_dict = delete_document_access_attributes_response_instance.to_dict()
# create an instance of DeleteDocumentAccessAttributesResponse from a dict
delete_document_access_attributes_response_form_dict = delete_document_access_attributes_response.from_dict(delete_document_access_attributes_response_dict)

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