Skip to Content

CartShippingMethod

Describes a cart shipping method, including type, title, pickup availability, address, fees, and additional information.

Type Definition

type CartShippingMethod { title: String type: String pickupAvailability: String pickupAddress: Address info: String description: String fee: Float price: Float netPrice: Float tax: Float rate: Float ratePercentage: Float }

Fields

FieldTypeDescription
titleStringReturns the title.
typeStringReturns the type.
pickupAvailabilityStringReturns the pickup availability as a string if it’s available.
pickupAddressAddressReturns the pickup address.
infoStringReturns additional information about the shipping method.
descriptionStringReturns the description.
feeFloatReturns the shipping fee in customer’s currency.
priceFloatReturns the shipping price in customer’s currency.
netPriceFloatReturns the shipping price without tax in customer’s currency.
taxFloatReturns the tax amount in customer’s currency.
rateFloatReturns the tax rate in decimals.
ratePercentageFloatReturns the tax rate.

Relationships

CartShippingMethod contains a reference to the Address type through its pickupAddress field, which provides location details for pickup-based shipping methods.

Example

{ title type pickupAvailability pickupAddress { street city postalCode country } info description fee price netPrice tax rate ratePercentage }

Implements

None