Token
data class Token @RestrictTo(value = [RestrictTo.Scope.LIBRARY_GROUP] ) constructor(id: String, type: Token.Type, created: Date, livemode: Boolean, used: Boolean, bankAccount: BankAccount?, card: Card?) : StripeModel, StripePaymentSource
Content copied to clipboard
Tokenization is the process Stripe uses to collect sensitive card, bank account details, Stripe account details or personally identifiable information (PII), directly from your customers in a secure manner. A Token representing this information is returned to you to use.
Constructors
Link copied to clipboard
fun Token(id: String, type: Token.Type, created: Date, livemode: Boolean, used: Boolean, bankAccount: BankAccount? = null, card: Card? = null)
Content copied to clipboard