UseBalanceRequest

data class UseBalanceRequest(val customerId: String, val amount: Int, val label: String? = null, val metadata: Map<String, String>? = null)

Request to decrease a user's available balance (by spending).

Parameters

customerId

Unique identifier for the customer.

amount

How much to decrease a customer's balance by. Amount is in the smallest currency denomination (e.g. cents for USD).

label

A string identifier that can be attached to this transaction ID for future search and observability purposes.

metadata

Set of string key-value pairs that you can attach to a transaction. This can be useful for storing additional information about the transaction in a structured format.

Constructors

Link copied to clipboard
constructor(customerId: String, amount: Int, label: String? = null, metadata: Map<String, String>? = null)

Properties

Link copied to clipboard
val amount: Int
Link copied to clipboard
Link copied to clipboard
val label: String? = null
Link copied to clipboard
val metadata: Map<String, String>? = null