> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/discounts/llms.txt)
> Source: https://docs.saleor.io/api-reference/discounts/objects/promotion-translatable-content

# PromotionTranslatableContent Object

Represents promotion's original translatable fields and related translations.

```graphql
type PromotionTranslatableContent implements Node {
  id: ID!
  promotionId: ID!
  name: String!
  description: JSONString
  translation(languageCode: LanguageCodeEnum!): PromotionTranslation
}
```

<a id="fields"></a>

### Fields

<a id="id"></a>

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

ID of the promotion translatable content.

<a id="promotion-id"></a>

#### [`promotionId`](#promotion-id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

ID of the promotion to translate.

<a id="name"></a>

#### [`name`](#name) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

Name of the promotion.

<a id="description"></a>

#### [`description`](#description) ● [`JSONString`](/api-reference/miscellaneous/scalars/jsonstring.md)

Description of the promotion.

Rich text format. For reference see [https://editorjs.io/](https://editorjs.io/)

<a id="translation"></a>

#### [`translation`](#translation) ● [`PromotionTranslation`](/api-reference/discounts/objects/promotion-translation.md)

Returns translated promotion fields for the given language code.

<a id="promotion-translatable-content-translation-language-code"></a>

##### [`languageCode`](#promotion-translatable-content-translation-language-code) ● [`LanguageCodeEnum!`](/api-reference/miscellaneous/enums/language-code-enum.md)

A language code to return the translation for promotion.

<a id="interfaces"></a>

### Interfaces

<a id="node"></a>

#### [`Node`](/api-reference/miscellaneous/interfaces/node.md)

An object with an ID

<a id="member-of"></a>

### Member Of

[`PromotionTranslation`](/api-reference/discounts/objects/promotion-translation.md) object

<a id="implemented-by"></a>

### Implemented By

[`TranslatableItem`](/api-reference/miscellaneous/unions/translatable-item.md) union
