BillingDetails

data class BillingDetails @JvmOverloads constructor(val address: Address? = null, val email: String? = null, val name: String? = null, val phone: String? = null) : StripeModel, StripeParamsModel

Billing information associated with the PaymentMethod that may be used or required by particular types of payment methods.

billing_details

Constructors

Link copied to clipboard
constructor(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)

Types

Link copied to clipboard
class Builder

Properties

Link copied to clipboard
val address: Address? = null

Billing address.

Link copied to clipboard
val email: String? = null

Email address.

Link copied to clipboard
val name: String? = null

Full name.

Link copied to clipboard
val phone: String? = null

Billing phone number (including extension).

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
Link copied to clipboard
open override fun toParamMap(): Map<String, Any>
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)