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

# VoucherTranslatableContent Object

Represents voucher's original translatable fields and related translations.

```graphql
type VoucherTranslatableContent implements Node {
  id: ID!
  voucherId: ID!
  name: String
  translation(languageCode: LanguageCodeEnum!): VoucherTranslation
  voucher: Voucher @deprecated
}
```

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

### Fields

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

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

The ID of the voucher translatable content.

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

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

The ID of the voucher to translate.

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

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

Voucher name to translate.

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

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

Returns translated voucher fields for the given language code.

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

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

A language code to return the translation for voucher.

Show deprecatedHide deprecated

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

#### [`voucher`](#voucher) ● [`Voucher`](/api-reference/discounts/objects/voucher.md)

DEPRECATED

Get model fields from the root level queries.

Vouchers allow giving discounts to particular customers on categories, collections or specific products. They can be used during checkout by providing valid voucher codes.

Requires the MANAGE\_DISCOUNTS permission.

<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

[`VoucherTranslation`](/api-reference/discounts/objects/voucher-translation.md) object

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

### Implemented By

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