PaymentMethod

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.

Parameters

card

Contains additional metadata for the associated Card.

id

Unique identifier for the payment method.

type

The type of the payment method. Currently supported:

  • credit_card

  • apple_pay

  • google_pay

Constructors

Link copied to clipboard
constructor(card: Card, id: String, type: String)

Properties

Link copied to clipboard
val card: Card
Link copied to clipboard
val id: String
Link copied to clipboard