BillingDetails
data class BillingDetails @JvmOverloads constructor( val address: Address? = null, val email: String? = null, val name: String? = null, val phone: String? = null) : StripeModel, StripeParamsModel
Content copied to clipboard
Billing information associated with the PaymentMethod that may be used or required by particular types of payment methods.
Constructors
Link copied to clipboard
fun BillingDetails( address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)
Content copied to clipboard