/** * @type PageMetaTag: Document representing a Page Meta Tag object. * * @property id: The ID of the Page Meta Tag. * - **Max Length:** 256 * * @property value: Locale-specific value of the Page Meta Tag, evaluated by resolving the rule set for the given Business Manager ID. * * @property type: The kind of Page Meta Tag, indicating how the storefront should render the value. Documented values are `name`, `property`, `title`, and `jsonld`: * `name` — render as ``. * `property` — render as `` (e.g. Open Graph tags). * `title` — render as the HTML `` element. * `jsonld` — JSON-LD structured data, intended for rendering inside `<script type=\"application/ld+json\">`. The field may be absent when the kind cannot be determined. Clients should treat unknown values as opaque so additional kinds can be introduced without breaking the contract. * - **Max Length:** 64 * */ export type PageMetaTag = { id?: string; value?: string; type?: string; } & { [key: string]: any; };