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

# ShippingMethodTranslatableContent Object

Represents shipping method's original translatable fields and related translations.

```graphql
type ShippingMethodTranslatableContent implements Node {
  id: ID!
  shippingMethodId: ID!
  name: String!
  description: JSONString
  translation(languageCode: LanguageCodeEnum!): ShippingMethodTranslation
  shippingMethod: ShippingMethodType @deprecated
}
```

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

### Fields

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

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

The ID of the shipping method translatable content.

<a id="shipping-method-id"></a>

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

The ID of the shipping method to translate.

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

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

Shipping method name to translate.

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

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

Shipping method description to translate.

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

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

#### [`translation`](#translation) ● [`ShippingMethodTranslation`](/api-reference/shipping/objects/shipping-method-translation.md)

Returns translated shipping method fields for the given language code.

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

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

A language code to return the translation for shipping method.

Show deprecatedHide deprecated

<a id="shipping-method"></a>

#### [`shippingMethod`](#shipping-method) ● [`ShippingMethodType`](/api-reference/shipping/objects/shipping-method-type.md)

DEPRECATED

Get model fields from the root level queries.

Shipping method are the methods you'll use to get customer's orders to them. They are directly exposed to the customers.

Requires the MANAGE\_SHIPPING 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

[`ShippingMethodTranslation`](/api-reference/shipping/objects/shipping-method-translation.md) object

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

### Implemented By

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