Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 884 Bytes

File metadata and controls

30 lines (21 loc) · 884 Bytes

DocumentTags

Properties

Name Type Description Notes
document_id str
tags List[str]

Example

from boldsign.models.document_tags import DocumentTags

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

# convert the object into a dict
document_tags_dict = document_tags_instance.to_dict()
# create an instance of DocumentTags from a dict
document_tags_from_dict = DocumentTags.from_dict(document_tags_dict)

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