LinkedAccountList
data class LinkedAccountList( val linkedAccounts: List<LinkedAccount>, val hasMore: Boolean, val url: String, val count: Int? = null, val totalCount: Int? = null) : StripeModel, Parcelable
Content copied to clipboard
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
fun LinkedAccountList( linkedAccounts: List<LinkedAccount>, hasMore: Boolean, url: String, count: Int? = null, totalCount: Int? = null)
Content copied to clipboard