Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

File metadata and controls

33 lines (24 loc) · 1.26 KB

AddDocumentAttributeEntity

Document Entity Attribute

Properties

Name Type Description Notes
key str Attribute key
entity_type_id str EntityType Identifier or Entity Type Name
entity_id str Entity Identifier
namespace EntityTypeNamespace [optional]

Example

from formkiq_client.models.add_document_attribute_entity import AddDocumentAttributeEntity

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

# convert the object into a dict
add_document_attribute_entity_dict = add_document_attribute_entity_instance.to_dict()
# create an instance of AddDocumentAttributeEntity from a dict
add_document_attribute_entity_from_dict = AddDocumentAttributeEntity.from_dict(add_document_attribute_entity_dict)

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