123456789101112131415161718 |
- # Represents the value captured by a localization extension. Localization extensions are additional fields required by certain countries on international orders.
- # For example, some countries require additional fields for customs information or tax identification numbers.
- type LocalizationExtension {
- # Country ISO 3166-1 alpha-2 code.
- countryCode: CountryCode!
- # The localized extension keys that are allowed.
- key: LocalizationExtensionKey!
- # The purpose of this localization extension.
- purpose: LocalizationExtensionPurpose!
- # The localized extension title.
- title: String!
- # The value of the field.
- value: String!
- }
|