Package-level declarations

Types

Link copied to clipboard
data class AddPaymentMethodRequest(val customerId: String, val cardNumber: String, val expirationMonth: Int, val expirationYear: Int, val cvc: String)

Request to add a PaymentMethod to a Customer's collection.

Link copied to clipboard
@ObjCName(name = "AddPaymentMethodTypeKmp")
sealed interface AddPaymentMethodType

Options for available payment methods to add for a Customer

Link copied to clipboard
data class Card(val brand: String, val fingerprint: String, val firstSix: String, val lastFour: String)

Additional metadata for a Customer's PaymentMethod Card.

Link copied to clipboard
data class PaymentMethod(val card: Card, val id: String, val type: String)

A PaymentMethod represents a customer’s payment instrument. A PaymentMethod may be used to add funds to a customer’s balance.

Link copied to clipboard
data class PaymentMethodCollection(val count: Int, val paymentMethods: List<PaymentMethod>)

A collection of PaymentMethod