Skip to main content

PromotionTranslation

Represents promotion translations.

Added in Saleor 3.17
type PromotionTranslation implements Node {
id: ID!
language: LanguageDisplay!
name: String
description: JSONString
translatableContent: PromotionTranslatableContent
}

Fields

PromotionTranslation.id ● ID! non-null scalar miscellaneous

ID of the promotion translation.

PromotionTranslation.language ● LanguageDisplay! non-null object miscellaneous

Translation language.

PromotionTranslation.name ● String scalar miscellaneous

Translated name of the promotion.

PromotionTranslation.description ● JSONString scalar miscellaneous

Translated description of the promotion.

Rich text format. For reference see https://editorjs.io/

PromotionTranslation.translatableContent ● PromotionTranslatableContent object discounts

Represents the promotion fields to translate.

Added in Saleor 3.14

Interfaces

Node interface miscellaneous

An object with an ID

Member Of

Promotion object ● PromotionTranslatableContent object

Implemented By

TranslationTypes union