Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

AddDocumentAttributeEntityValue

Document Entity Attribute Value

Properties

Name Type Description Notes
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_value import AddDocumentAttributeEntityValue

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

# convert the object into a dict
add_document_attribute_entity_value_dict = add_document_attribute_entity_value_instance.to_dict()
# create an instance of AddDocumentAttributeEntityValue from a dict
add_document_attribute_entity_value_from_dict = AddDocumentAttributeEntityValue.from_dict(add_document_attribute_entity_value_dict)

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