encode<V> static method

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

Implementation

static V encode<V>(
  SetupIntentAcssDebit instance,
  Encoder<V> encoder,
) {
  final container = encoder.container<String>();
  if (instance.currency != null) {
    CheckoutAcssDebitPaymentMethodOptionsCurrency.encode(
      instance.currency!,
      container.nestedSingleValueContainer('currency').encoder,
    );
  }
  if (instance.mandateOptions != null) {
    SessionMandateOptions.encode(
      instance.mandateOptions!,
      container.nestedSingleValueContainer('mandate_options').encoder,
    );
  }
  if (instance.verificationMethod != null) {
    CheckoutAcssDebitPaymentMethodOptionsVerificationMethod.encode(
      instance.verificationMethod!,
      container.nestedSingleValueContainer('verification_method').encoder,
    );
  }
  return container.value;
}