Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1008 Bytes

File metadata and controls

29 lines (20 loc) · 1008 Bytes

MultipleNewAttribute

Properties

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

Example

from talon_one.models.multiple_new_attribute import MultipleNewAttribute

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

# convert the object into a dict
multiple_new_attribute_dict = multiple_new_attribute_instance.to_dict()
# create an instance of MultipleNewAttribute from a dict
multiple_new_attribute_from_dict = MultipleNewAttribute.from_dict(multiple_new_attribute_dict)

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