LinkWithAttributes¶
The LinkWithAttributes object represents a single link with attributes in the storefront.
classDiagram
direction LR
LinkWithAttributes --> Url
LinkWithAttributes --> AttributesList
AttributesList --> Attribute
class LinkWithAttributes{
string title
Url url
?AttributesList attributes
}
class Url{
}
class AttributesList{
}
class Attribute{
}
Properties¶
| Attribute name | Type | Description |
|---|---|---|
| title | string |
Title of the link. |
| url | null|Url |
Reference to the Url object. |
| attributes | null|AttributesList |
Reference to the AttributesList object. |