Skip to content

BlogFile

The BlogFile object represents a single blog file for blog article in the storefront.

classDiagram
  direction LR
  BlogFile --> Url
  BlogFile --> Size
  class Url{
  }
  class Size{
  }
  class BlogFile{
    int id
    string name
    string description
    string extension
    Url url
    Size size
  }

Properties

Attribute name Type Description
id int The unique identifier of the blog file.
name string Name of the blog file.
description string Description of the blog file.
extension string Extension of the blog file.
url Url The Url object of the blog file.
size Size The Size object of the blog file.

Examples

id property

{{ blogFile.id }}
1

name property

{{ blogFile.name }}
example name

description property

{{ blogFile.description }}
example description

extension property

{{ blogFile.extension }}
jpg

url property

{{ blogFile.url }}
/example/url

size property

{{ blogFile.size }}
15 kB