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 deprecatedHide deprecated

shippingMethod ● ShippingMethodType

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_SHIPPINGpermission.

Interfaces

Node

An object with an ID

Member Of

ShippingMethodTranslation object

Implemented By

TranslatableItem union