encode<V> static method

V encode<V>(
  1. PaymentIntentApplyCustomerBalanceOptions instance,
  2. Encoder<V> encoder
)

Implementation

static V encode<V>(
  PaymentIntentApplyCustomerBalanceOptions instance,
  Encoder<V> encoder,
) {
  final container = encoder.container<String>();
  if (instance.amount != null) {
    container.encodeInt(
      'amount',
      instance.amount!,
    );
  }
  if (instance.currency != null) {
    container.encodeString(
      'currency',
      instance.currency!,
    );
  }
  if (instance.expand != null) {
    container.encodeList(
      'expand',
      (container) =>
          instance.expand!.forEach((el) => container.encodeString(el)),
    );
  }
  return container.value;
}