| Name | Type | Description | Notes |
|---|---|---|---|
| attributes | List[NewAttribute] | [optional] |
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)