Skip to main content

SaleTranslation

Represents sale translations.

DEPRECATED: this type will be removed in Saleor 4.0. Use PromotionTranslation instead.

type SaleTranslation implements Node {
id: ID!
language: LanguageDisplay!
name: String
translatableContent: SaleTranslatableContent
}

Fields

SaleTranslation.id ● ID! non-null scalar miscellaneous

The ID of the sale translation.

SaleTranslation.language ● LanguageDisplay! non-null object miscellaneous

Translation language.

SaleTranslation.name ● String scalar miscellaneous

Translated name of sale.

SaleTranslation.translatableContent ● SaleTranslatableContent object discounts

Represents the sale fields to translate.

Added in Saleor 3.14

Interfaces

Node interface miscellaneous

An object with an ID

Member Of

Sale object ● SaleTranslatableContent object

Implemented By

TranslationTypes union