interface ShippingMethod {
    createdAt: string;
    createdBy?: CreatedBy;
    custom?: CustomFields;
    description?: string;
    id: string;
    isDefault: boolean;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    localizedDescription?: LocalizedString;
    localizedName?: LocalizedString;
    name: string;
    predicate?: string;
    taxCategory: TaxCategoryReference;
    version: number;
    zoneRates: ZoneRate[];
}

Hierarchy

Properties

createdAt: string

Date and time (UTC) the ShippingMethod was initially created.

createdBy?: CreatedBy

Present on resources created after 1 February 2019 except for events not tracked.

custom?: CustomFields

Custom Fields of the ShippingMethod.

description?: string

Description of the ShippingMethod.

Deprecated

id: string

Unique identifier of the ShippingMethod.

isDefault: boolean

If true this ShippingMethod is the Project's default ShippingMethod.

key?: string

User-defined unique identifier of the ShippingMethod.

lastModifiedAt: string

Date and time (UTC) the ShippingMethod was last updated.

lastModifiedBy?: LastModifiedBy

Present on resources created after 1 February 2019 except for events not tracked.

localizedDescription?: LocalizedString

Localized description of the ShippingMethod.

localizedName?: LocalizedString

Localized name of the ShippingMethod.

name: string

Name of the ShippingMethod.

predicate?: string

Valid Cart predicate to select a ShippingMethod for a Cart.

TaxCategory of all ZoneRates of the ShippingMethod.

version: number

Current version of the ShippingMethod.

zoneRates: ZoneRate[]

Defines ShippingRates (prices) for specific Zones.

Generated using TypeDoc