AddBalanceRequest constructor

AddBalanceRequest({
  1. required String customerId,
  2. required String paymentMethodId,
  3. required int amount,
})

Creates an instance of AddBalanceRequest.

customerId is the customer ID to add balance for. paymentMethodId is the payment method ID to charge. amount is the amount to add to the balance.

Implementation

AddBalanceRequest({
  required this.customerId,
  required this.paymentMethodId,
  required this.amount,
});