Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.38 KB

AddDocumentAttributeValue.md

File metadata and controls

34 lines (25 loc) · 1.38 KB

AddDocumentAttributeValue

Document Attribute Value

Properties

Name Type Description Notes
string_value str Attribute with string value [optional]
string_values List[str] Attribute with string values [optional]
number_value float Attribute with number value [optional]
number_values List[float] Attribute with number values [optional]
boolean_value bool Attribute with boolean value [optional]

Example

from formkiq_client.models.add_document_attribute_value import AddDocumentAttributeValue

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

# convert the object into a dict
add_document_attribute_value_dict = add_document_attribute_value_instance.to_dict()
# create an instance of AddDocumentAttributeValue from a dict
add_document_attribute_value_from_dict = AddDocumentAttributeValue.from_dict(add_document_attribute_value_dict)

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