encode<V> static method
Implementation
static V encode<V>(
SetupIntentUsBankAccount instance,
Encoder<V> encoder,
) {
final container = encoder.container<String>();
if (instance.financialConnections != null) {
PaymentIntentFinancialConnections.encode(
instance.financialConnections!,
container.nestedSingleValueContainer('financial_connections').encoder,
);
}
if (instance.mandateOptions != null) {
PaymentIntentCreateOptionsPaymentMethodOptionsUsBankAccountMandateOptions
.encode(
instance.mandateOptions!,
container.nestedSingleValueContainer('mandate_options').encoder,
);
}
if (instance.networks != null) {
PaymentIntentNetworks.encode(
instance.networks!,
container.nestedSingleValueContainer('networks').encoder,
);
}
if (instance.verificationMethod != null) {
CheckoutAcssDebitPaymentMethodOptionsVerificationMethod.encode(
instance.verificationMethod!,
container.nestedSingleValueContainer('verification_method').encoder,
);
}
return container.value;
}