CartPaymentMethod
Describes a cart payment method, including type, status, fees, and additional information.
Type Definition
type CartPaymentMethod {
type: String
title: String
status: String
isPaid: Boolean
currency: Currency
info: String
description: String
fee: Float
netFee: Float
tax: Float
paidAmount: Float
rate: Float
ratePercentage: Float
giftCard: GiftCard
}Fields
Relationships
CartPaymentMethod represents a payment method associated with a cart. It contains a reference to a Currency object that specifies the currency in which fees and amounts are calculated. When the payment method type is gift_card, it includes a GiftCard object containing details about the gift card used for payment.
Example
{
type
title
status
isPaid
currency {
code
name
}
info
description
fee
netFee
tax
paidAmount
rate
ratePercentage
giftCard {
id
balance
}
}Implements
None