AddBalanceRequest

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

Request to increase a user's available balance via a payment method.

Parameters

customerId

Unique identifier for the customer.

amount

How much to add to a customer's balance. 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, ansaPaymentMethodId: String, label: String? = null, metadata: Map<String, String>? = null)

Properties

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