CashBalance

data class CashBalance(val available: Map<String, Int>? = null) : StripeModel, Parcelable

Parameters

available

The funds available to the account holder. Typically this is the current balance less any holds. Each key is a three-letter ISO currency code, in lowercase. Each value is a integer amount. A positive amount indicates money owed to the account holder. A negative amount indicates money owed by the account holder.

Constructors

Link copied to clipboard
fun CashBalance(available: Map<String, Int>? = null)

Functions

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

Properties

Link copied to clipboard
val available: Map<String, Int>? = null