encode<V> static method
Implementation
static V encode<V>(
PaymentIntentPaymentMethodOptionsUsBankAccount instance,
Encoder<V> encoder,
) {
final container = encoder.container<String>();
if (instance.financialConnections != null) {
LinkedAccountOptionsUsBankAccount.encode(
instance.financialConnections!,
container.nestedSingleValueContainer('financial_connections').encoder,
);
}
if (instance.mandateOptions != null) {
PaymentMethodOptionsUsBankAccountMandateOptions.encode(
instance.mandateOptions!,
container.nestedSingleValueContainer('mandate_options').encoder,
);
}
if (instance.preferredSettlementSpeed != null) {
container.encodeString(
'preferred_settlement_speed',
instance.preferredSettlementSpeed!,
);
}
if (instance.setupFutureUsage != null) {
CheckoutAcssDebitPaymentMethodOptionsSetupFutureUsage.encode(
instance.setupFutureUsage!,
container.nestedSingleValueContainer('setup_future_usage').encoder,
);
}
if (instance.verificationMethod != null) {
CheckoutAcssDebitPaymentMethodOptionsVerificationMethod.encode(
instance.verificationMethod!,
container.nestedSingleValueContainer('verification_method').encoder,
);
}
return container.value;
}