Skip to main content

ShippingMethodTranslatableContent Object

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

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

Fields

id ● ID!

The ID of the shipping method translatable content.

shippingMethodId ● ID!

The ID of the shipping method to translate.

name ● String!

Shipping method name to translate.

description ● JSONString

Shipping method description to translate.

Rich text format. For reference see https://editorjs.io/

translation ● ShippingMethodTranslation

Returns translated shipping method fields for the given language code.

languageCode ● LanguageCodeEnum!

A language code to return the translation for shipping method.

Show deprecated

Interfaces

Node

An object with an ID

Member Of

ShippingMethodTranslation object

Implemented By

TranslatableItem union