Token
data class Token @RestrictTo(value = [RestrictTo.Scope.LIBRARY_GROUP] ) constructor( val id: String, val type: Token.Type, val created: Date, val livemode: Boolean, val used: Boolean, val bankAccount: BankAccount? = null, val card: Card? = null) : 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