BlogCategory¶
The BlogCategory object represents a single blog category in the storefront.
classDiagram
direction LR
BlogCategory --> BlogArticlesList
BlogCategory --> BlogCategoryUrl
BlogArticlesList "1" --o "*" BlogArticle
class BlogArticle{
}
class BlogArticlesList{
}
class BlogCategoryUrl{
}
class BlogCategory{
int id
string name
BlogCategoryUrl url
BlogArticlesList articles
}
Properties¶
| Attribute name | Type | Description |
|---|---|---|
| id | int |
The unique identifier of the blog category |
| name | string |
The title of the blog category |
| url | BlogCategoryUrl |
The BlogCategoryUrl object that represents the url to the blog category. |
| articles | BlogArticlesList |
Reference to the BlogArticlesList object that represents the articles list of BlogArticle objects associated with this category. |