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

# PromotionRuleTranslatableContent Object

Represents promotion rule's original translatable fields and related translations.

```graphql
type PromotionRuleTranslatableContent implements Node {
  id: ID!
  promotionRuleId: ID!
  name: String
  description: JSONString
  translation(languageCode: LanguageCodeEnum!): PromotionRuleTranslation
}
```

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

### Fields

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

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

ID of the promotion rule translatable content.

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

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

ID of the promotion rule to translate.

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

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

Name of the promotion rule.

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

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

Description of the promotion rule.

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

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

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

Returns translated promotion rule fields for the given language code.

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

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

A language code to return the translation for promotion rule.

<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

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

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

### Implemented By

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