/** * @type PageMetaTag: Document representing a Page Meta Tag object. * * @property id: The ID of the Page Meta Tag. * * @property value: Locale-specific value of the Page Meta Tag, evaluated by resolving the rule set for the given Business Manager ID. * */ export type PageMetaTag = { id?: string; value?: string; } & { [key: string]: any; };