Package com.stripe.android.connections.model

Types

Link copied to clipboard
data class AccountHolder(type: AccountHolder.Type, account: String?, customer: String?) : StripeModel, Parcelable
Link copied to clipboard
data class Balance(asOf: Int, current: Map<String, Int>, type: Balance.Type, cash: CashBalance?, credit: CreditBalance?) : StripeModel, Parcelable
Link copied to clipboard
data class BalanceRefresh(status: BalanceRefresh.BalanceRefreshStatus?, lastAttemptedAt: Int) : StripeModel, Parcelable
Link copied to clipboard
data class BankAccount(id: String, last4: String, bankName: String?, routingNumber: String?) : PaymentAccount
Link copied to clipboard
data class CashBalance(available: Map<String, Int>?) : StripeModel, Parcelable
Link copied to clipboard
data class CreditBalance(used: Map<String, Int>?) : StripeModel, Parcelable
Link copied to clipboard
data class LinkAccountSession : StripeModel, Parcelable
Link copied to clipboard
data class LinkAccountSessionManifest(hostedAuthUrl: String, successUrl: String, cancelUrl: String)
Link copied to clipboard
data class LinkedAccount(category: LinkedAccount.Category, created: Int, id: String, institutionName: String, livemode: Boolean, status: LinkedAccount.Status, subcategory: LinkedAccount.Subcategory, supportedPaymentMethodTypes: List<LinkedAccount.SupportedPaymentMethodTypes>, accountholder: AccountHolder?, balance: Balance?, balanceRefresh: BalanceRefresh?, displayName: String?, last4: String?, ownership: String?, ownershipRefresh: OwnershipRefresh?, permissions: List<LinkedAccount.Permissions>?) : PaymentAccount, StripeModel, Parcelable

A Linked Account represents an account that exists outside of Stripe, to which you have been granted some degree of access.

Link copied to clipboard
data class LinkedAccountList(linkedAccounts: List<LinkedAccount>, hasMore: Boolean, url: String, count: Int?, totalCount: Int?) : StripeModel, Parcelable
Link copied to clipboard
data class ListLinkedAccountParams(clientSecret: String, startingAfterAccountId: String?) : Parcelable
Link copied to clipboard
data class OwnershipRefresh(lastAttemptedAt: Int, status: OwnershipRefresh.Status) : Parcelable, StripeModel
Link copied to clipboard
sealed class PaymentAccount : Parcelable