@@ -22206,10 +22206,6 @@ public static class UsBankAccount {
2220622206 @SerializedName("networks")
2220722207 Networks networks;
2220822208
22209- /** Preferred transaction settlement speed. */
22210- @SerializedName("preferred_settlement_speed")
22211- ApiRequestParams.EnumParam preferredSettlementSpeed;
22212-
2221322209 /**
2221422210 * Indicates that you intend to make future payments with this PaymentIntent's payment method.
2221522211 *
@@ -22257,7 +22253,6 @@ private UsBankAccount(
2225722253 FinancialConnections financialConnections,
2225822254 MandateOptions mandateOptions,
2225922255 Networks networks,
22260- ApiRequestParams.EnumParam preferredSettlementSpeed,
2226122256 ApiRequestParams.EnumParam setupFutureUsage,
2226222257 String targetDate,
2226322258 ApiRequestParams.EnumParam transactionPurpose,
@@ -22266,7 +22261,6 @@ private UsBankAccount(
2226622261 this.financialConnections = financialConnections;
2226722262 this.mandateOptions = mandateOptions;
2226822263 this.networks = networks;
22269- this.preferredSettlementSpeed = preferredSettlementSpeed;
2227022264 this.setupFutureUsage = setupFutureUsage;
2227122265 this.targetDate = targetDate;
2227222266 this.transactionPurpose = transactionPurpose;
@@ -22286,8 +22280,6 @@ public static class Builder {
2228622280
2228722281 private Networks networks;
2228822282
22289- private ApiRequestParams.EnumParam preferredSettlementSpeed;
22290-
2229122283 private ApiRequestParams.EnumParam setupFutureUsage;
2229222284
2229322285 private String targetDate;
@@ -22303,7 +22295,6 @@ public PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount build() {
2230322295 this.financialConnections,
2230422296 this.mandateOptions,
2230522297 this.networks,
22306- this.preferredSettlementSpeed,
2230722298 this.setupFutureUsage,
2230822299 this.targetDate,
2230922300 this.transactionPurpose,
@@ -22363,20 +22354,6 @@ public Builder setNetworks(
2236322354 return this;
2236422355 }
2236522356
22366- /** Preferred transaction settlement speed. */
22367- public Builder setPreferredSettlementSpeed(
22368- PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.PreferredSettlementSpeed
22369- preferredSettlementSpeed) {
22370- this.preferredSettlementSpeed = preferredSettlementSpeed;
22371- return this;
22372- }
22373-
22374- /** Preferred transaction settlement speed. */
22375- public Builder setPreferredSettlementSpeed(EmptyParam preferredSettlementSpeed) {
22376- this.preferredSettlementSpeed = preferredSettlementSpeed;
22377- return this;
22378- }
22379-
2238022357 /**
2238122358 * Indicates that you intend to make future payments with this PaymentIntent's payment
2238222359 * method.
@@ -23083,21 +23060,6 @@ public enum Requested implements ApiRequestParams.EnumParam {
2308323060 }
2308423061 }
2308523062
23086- public enum PreferredSettlementSpeed implements ApiRequestParams.EnumParam {
23087- @SerializedName("fastest")
23088- FASTEST("fastest"),
23089-
23090- @SerializedName("standard")
23091- STANDARD("standard");
23092-
23093- @Getter(onMethod_ = {@Override})
23094- private final String value;
23095-
23096- PreferredSettlementSpeed(String value) {
23097- this.value = value;
23098- }
23099- }
23100-
2310123063 public enum SetupFutureUsage implements ApiRequestParams.EnumParam {
2310223064 @SerializedName("none")
2310323065 NONE("none"),
0 commit comments