CreditBalance

@Serializable
data class CreditBalance(val used: Map<String, Int>? = null) : StripeModel, Parcelable

Parameters

used

The credit that has been used by the account holder. 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
constructor(used: Map<String, Int>? = null)

Properties

Link copied to clipboard
@SerialName(value = "used")
val used: Map<String, Int>? = null

Functions

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