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