Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 983 Bytes

File metadata and controls

31 lines (22 loc) · 983 Bytes

ItemAttribute

Properties

Name Type Description Notes
attributeid int The ID of the attribute of the item.
name str The name of the attribute.
value object

Example

from talon_one.models.item_attribute import ItemAttribute

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

# convert the object into a dict
item_attribute_dict = item_attribute_instance.to_dict()
# create an instance of ItemAttribute from a dict
item_attribute_from_dict = ItemAttribute.from_dict(item_attribute_dict)

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