AccountHolder
data class AccountHolder( val type: AccountHolder.Type = Type.UNKNOWN, val account: String? = null, val customer: String? = null) : StripeModel, Parcelable
Content copied to clipboard
Parameters
type
account
customer
ID of the Customer this LinkedAccount belongs to. Present if and only if type
is customer
.
Constructors
Link copied to clipboard
fun AccountHolder( type: AccountHolder.Type = Type.UNKNOWN, account: String? = null, customer: String? = null)
Content copied to clipboard