FinancialConnectionsAccountList

@Serializable
data class FinancialConnectionsAccountList(val data: List<FinancialConnectionsAccount>, val hasMore: Boolean, val url: String, val count: Int? = null, val totalCount: Int? = null) : StripeModel, Parcelable

Parameters

data

hasMore

True if this list has another page of items after this one that can be fetched.

url

The URL where this list can be accessed.

count
totalCount

Constructors

Link copied to clipboard
constructor(data: List<FinancialConnectionsAccount>, hasMore: Boolean, url: String, count: Int? = null, totalCount: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "count")
val count: Int? = null
Link copied to clipboard
@SerialName(value = "data")
val data: List<FinancialConnectionsAccount>
Link copied to clipboard
@SerialName(value = "has_more")
val hasMore: Boolean
Link copied to clipboard
@SerialName(value = "total_count")
val totalCount: Int? = null
Link copied to clipboard
@SerialName(value = "url")
val url: String

Functions

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