Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.01 KB

File metadata and controls

35 lines (26 loc) · 2.01 KB

LibraryAttribute

Properties

Name Type Description Notes
entity str The name of the entity that can have this attribute. When creating or updating the entities of a given type, you can include an `attributes` object with keys corresponding to the `name` of the custom attributes for that type.
name str The attribute name that will be used in API requests and Talang. E.g. if `name == "region"` then you would set the region attribute by including an `attributes.region` property in your request payload.
title str The human-readable name for the attribute that will be shown in the Campaign Manager. Like `name`, the combination of entity and title must also be unique.
type str The data type of the attribute, a `time` attribute must be sent as a string that conforms to the RFC3339 timestamp format.
description str A description of the attribute.
presets List[str] The presets that indicate to which industry the attribute applies to.
suggestions List[str] Short suggestions that are used to group attributes.

Example

from talon_one.models.library_attribute import LibraryAttribute

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

# convert the object into a dict
library_attribute_dict = library_attribute_instance.to_dict()
# create an instance of LibraryAttribute from a dict
library_attribute_from_dict = LibraryAttribute.from_dict(library_attribute_dict)

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