Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 957 Bytes

File metadata and controls

29 lines (20 loc) · 957 Bytes

MultipleAttribute

Properties

Name Type Description Notes
attributes List[Attribute] [optional]

Example

from talon_one.models.multiple_attribute import MultipleAttribute

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

# convert the object into a dict
multiple_attribute_dict = multiple_attribute_instance.to_dict()
# create an instance of MultipleAttribute from a dict
multiple_attribute_from_dict = MultipleAttribute.from_dict(multiple_attribute_dict)

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