ConsumerPaymentDetails

data class ConsumerPaymentDetails : StripeModel

Types

Link copied to clipboard
data class BankAccount(    val id: String,     val isDefault: Boolean,     val bankIconCode: String?,     val bankName: String,     val last4: String) : ConsumerPaymentDetails.PaymentDetails
Link copied to clipboard
data class BillingAddress(val countryCode: CountryCode?, val postalCode: String?) : Parcelable
Link copied to clipboard
data class Card(    val id: String,     val isDefault: Boolean,     val expiryYear: Int,     val expiryMonth: Int,     val brand: CardBrand,     val last4: String,     val cvcCheck: CvcCheck,     val billingAddress: ConsumerPaymentDetails.BillingAddress? = null) : ConsumerPaymentDetails.PaymentDetails
Link copied to clipboard
sealed class PaymentDetails : Parcelable

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard