# CartPaymentMethod Describes a cart payment method, including type, status, fees, and additional information. ## Type Definition ```graphql 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 | Field | Type | Description | |-------|------|-------------| | type | String | Returns the type. | | title | String | Returns the title. | | status | String | Returns the status. | | isPaid | Boolean | Returns true if this payment method status is paid. | | currency | Currency | Returns payment method currency. | | info | String | Returns additional information about the payment method. | | description | String | Returns payment method description. | | fee | Float | Returns the payment fee in customer's currency. | | netFee | Float | Returns the payment fee without tax in customer's currency. | | tax | Float | Returns the tax amount in customer's currency. | | paidAmount | Float | Returns the paid amount in customer's currency. | | rate | Float | Returns the tax rate in decimals. | | ratePercentage | Float | Returns the tax rate. | | giftCard | GiftCard | If this payment method type is gift_card this returns a GiftCard object with information about the gift card used as a payment method. | ## 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 ```graphql { type title status isPaid currency { code name } info description fee netFee tax paidAmount rate ratePercentage giftCard { id balance } } ``` ## Implements None ## Related Types - [Currency](/reference/storefront/v1/objects/currency) - [GiftCard](/reference/storefront/v1/objects/gift-card)