Skip to content

Commit cf6d05e

Browse files
Update generated code for v2154 and
1 parent 1afcc9c commit cf6d05e

55 files changed

Lines changed: 3050 additions & 830 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CODEGEN_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c250368ba89214c80bc8de3e4fc5d2094c5502cc
1+
8989becedb2153519066ec2233cbf5880b938188

OPENAPI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2152
1+
v2154

src/main/java/com/stripe/ApiVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
package com.stripe;
33

44
final class ApiVersion {
5-
public static final String CURRENT = "2025-12-15.clover";
5+
public static final String CURRENT = "2026-01-28.clover";
66
public static final String CURRENT_MAJOR = "clover";
77
}

src/main/java/com/stripe/model/AccountSession.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,9 @@ public static class Features extends StripeObject {
322322
Boolean externalAccountCollection;
323323

324324
/**
325-
* Whether to allow creation of instant payouts. Defaults to {@code true} when {@code
326-
* controller.losses.payments} is set to {@code stripe} for the account, otherwise {@code
327-
* false}.
325+
* Whether to allow creation of instant payouts. The default value is {@code enabled} when
326+
* Stripe is responsible for negative account balances, and {@code use_dashboard_rules}
327+
* otherwise.
328328
*/
329329
@SerializedName("instant_payouts")
330330
Boolean instantPayouts;
@@ -538,9 +538,9 @@ public static class Features extends StripeObject {
538538
Boolean externalAccountCollection;
539539

540540
/**
541-
* Whether to allow creation of instant payouts. Defaults to {@code true} when {@code
542-
* controller.losses.payments} is set to {@code stripe} for the account, otherwise {@code
543-
* false}.
541+
* Whether to allow creation of instant payouts. The default value is {@code enabled} when
542+
* Stripe is responsible for negative account balances, and {@code use_dashboard_rules}
543+
* otherwise.
544544
*/
545545
@SerializedName("instant_payouts")
546546
Boolean instantPayouts;
@@ -902,9 +902,9 @@ public static class Features extends StripeObject {
902902
Boolean externalAccountCollection;
903903

904904
/**
905-
* Whether to allow creation of instant payouts. Defaults to {@code true} when {@code
906-
* controller.losses.payments} is set to {@code stripe} for the account, otherwise {@code
907-
* false}.
905+
* Whether to allow creation of instant payouts. The default value is {@code enabled} when
906+
* Stripe is responsible for negative account balances, and {@code use_dashboard_rules}
907+
* otherwise.
908908
*/
909909
@SerializedName("instant_payouts")
910910
Boolean instantPayouts;

src/main/java/com/stripe/model/BalanceTransaction.java

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ public class BalanceTransaction extends ApiResource implements HasId {
4343
/**
4444
* The balance that this transaction impacts.
4545
*
46-
* <p>One of {@code issuing}, {@code payments}, or {@code refund_and_dispute_prefunding}.
46+
* <p>One of {@code issuing}, {@code payments}, {@code refund_and_dispute_prefunding}, or {@code
47+
* risk_reserved}.
4748
*/
4849
@SerializedName("balance_type")
4950
String balanceType;
@@ -137,11 +138,11 @@ public class BalanceTransaction extends ApiResource implements HasId {
137138
* payment_network_reserve_release}, {@code payment_refund}, {@code payment_reversal}, {@code
138139
* payment_unreconciled}, {@code payout}, {@code payout_cancel}, {@code payout_failure}, {@code
139140
* payout_minimum_balance_hold}, {@code payout_minimum_balance_release}, {@code refund}, {@code
140-
* refund_failure}, {@code reserve_transaction}, {@code reserved_funds}, {@code stripe_fee},
141-
* {@code stripe_fx_fee}, {@code stripe_balance_payment_debit}, {@code
142-
* stripe_balance_payment_debit_reversal}, {@code tax_fee}, {@code topup}, {@code topup_reversal},
143-
* {@code transfer}, {@code transfer_cancel}, {@code transfer_failure}, or {@code
144-
* transfer_refund}. Learn more about <a
141+
* refund_failure}, {@code reserve_transaction}, {@code reserved_funds}, {@code reserve_hold},
142+
* {@code reserve_release}, {@code stripe_fee}, {@code stripe_fx_fee}, {@code
143+
* stripe_balance_payment_debit}, {@code stripe_balance_payment_debit_reversal}, {@code tax_fee},
144+
* {@code topup}, {@code topup_reversal}, {@code transfer}, {@code transfer_cancel}, {@code
145+
* transfer_failure}, or {@code transfer_refund}. Learn more about <a
145146
* href="https://stripe.com/docs/reports/balance-transaction-types">balance transaction types and
146147
* what they represent</a>. To classify transactions for accounting purposes, consider {@code
147148
* reporting_category} instead.
@@ -156,11 +157,11 @@ public class BalanceTransaction extends ApiResource implements HasId {
156157
* payment_network_reserve_release}, {@code payment_refund}, {@code payment_reversal}, {@code
157158
* payment_unreconciled}, {@code payout}, {@code payout_cancel}, {@code payout_failure}, {@code
158159
* payout_minimum_balance_hold}, {@code payout_minimum_balance_release}, {@code refund}, {@code
159-
* refund_failure}, {@code reserve_transaction}, {@code reserved_funds}, {@code
160-
* stripe_balance_payment_debit}, {@code stripe_balance_payment_debit_reversal}, {@code
161-
* stripe_fee}, {@code stripe_fx_fee}, {@code tax_fee}, {@code topup}, {@code topup_reversal},
162-
* {@code transfer}, {@code transfer_cancel}, {@code transfer_failure}, or {@code
163-
* transfer_refund}.
160+
* refund_failure}, {@code reserve_hold}, {@code reserve_release}, {@code reserve_transaction},
161+
* {@code reserved_funds}, {@code stripe_balance_payment_debit}, {@code
162+
* stripe_balance_payment_debit_reversal}, {@code stripe_fee}, {@code stripe_fx_fee}, {@code
163+
* tax_fee}, {@code topup}, {@code topup_reversal}, {@code transfer}, {@code transfer_cancel},
164+
* {@code transfer_failure}, or {@code transfer_refund}.
164165
*/
165166
@SerializedName("type")
166167
String type;

src/main/java/com/stripe/model/Charge.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2218,7 +2218,7 @@ public static class ThreeDSecure extends StripeObject {
22182218
/**
22192219
* The version of 3D Secure that was used.
22202220
*
2221-
* <p>One of {@code 1.0.2}, {@code 2.1.0}, or {@code 2.2.0}.
2221+
* <p>One of {@code 1.0.2}, {@code 2.1.0}, {@code 2.2.0}, {@code 2.3.0}, or {@code 2.3.1}.
22222222
*/
22232223
@SerializedName("version")
22242224
String version;
@@ -2851,23 +2851,23 @@ public static class Grabpay extends StripeObject {
28512851
@EqualsAndHashCode(callSuper = false)
28522852
public static class Ideal extends StripeObject {
28532853
/**
2854-
* The customer's bank. Can be one of {@code abn_amro}, {@code asn_bank}, {@code bunq}, {@code
2855-
* buut}, {@code finom}, {@code handelsbanken}, {@code ing}, {@code knab}, {@code mollie},
2856-
* {@code moneyou}, {@code n26}, {@code nn}, {@code rabobank}, {@code regiobank}, {@code
2857-
* revolut}, {@code sns_bank}, {@code triodos_bank}, {@code van_lanschot}, or {@code
2858-
* yoursafe}.
2854+
* The customer's bank. Can be one of {@code abn_amro}, {@code adyen}, {@code asn_bank},
2855+
* {@code bunq}, {@code buut}, {@code finom}, {@code handelsbanken}, {@code ing}, {@code
2856+
* knab}, {@code mollie}, {@code moneyou}, {@code n26}, {@code nn}, {@code rabobank}, {@code
2857+
* regiobank}, {@code revolut}, {@code sns_bank}, {@code triodos_bank}, {@code van_lanschot},
2858+
* or {@code yoursafe}.
28592859
*/
28602860
@SerializedName("bank")
28612861
String bank;
28622862

28632863
/**
28642864
* The Bank Identifier Code of the customer's bank.
28652865
*
2866-
* <p>One of {@code ABNANL2A}, {@code ASNBNL21}, {@code BITSNL2A}, {@code BUNQNL2A}, {@code
2867-
* BUUTNL2A}, {@code FNOMNL22}, {@code FVLBNL22}, {@code HANDNL2A}, {@code INGBNL2A}, {@code
2868-
* KNABNL2H}, {@code MLLENL2A}, {@code MOYONL21}, {@code NNBANL2G}, {@code NTSBDEB1}, {@code
2869-
* RABONL2U}, {@code RBRBNL21}, {@code REVOIE23}, {@code REVOLT21}, {@code SNSBNL2A}, or
2870-
* {@code TRIONL2U}.
2866+
* <p>One of {@code ABNANL2A}, {@code ADYBNL2A}, {@code ASNBNL21}, {@code BITSNL2A}, {@code
2867+
* BUNQNL2A}, {@code BUUTNL2A}, {@code FNOMNL22}, {@code FVLBNL22}, {@code HANDNL2A}, {@code
2868+
* INGBNL2A}, {@code KNABNL2H}, {@code MLLENL2A}, {@code MOYONL21}, {@code NNBANL2G}, {@code
2869+
* NTSBDEB1}, {@code RABONL2U}, {@code RBRBNL21}, {@code REVOIE23}, {@code REVOLT21}, {@code
2870+
* SNSBNL2A}, or {@code TRIONL2U}.
28712871
*/
28722872
@SerializedName("bic")
28732873
String bic;

src/main/java/com/stripe/model/ConfirmationToken.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1670,23 +1670,23 @@ public static class Grabpay extends StripeObject {}
16701670
@EqualsAndHashCode(callSuper = false)
16711671
public static class Ideal extends StripeObject {
16721672
/**
1673-
* The customer's bank, if provided. Can be one of {@code abn_amro}, {@code asn_bank}, {@code
1674-
* bunq}, {@code buut}, {@code finom}, {@code handelsbanken}, {@code ing}, {@code knab},
1675-
* {@code mollie}, {@code moneyou}, {@code n26}, {@code nn}, {@code rabobank}, {@code
1676-
* regiobank}, {@code revolut}, {@code sns_bank}, {@code triodos_bank}, {@code van_lanschot},
1677-
* or {@code yoursafe}.
1673+
* The customer's bank, if provided. Can be one of {@code abn_amro}, {@code adyen}, {@code
1674+
* asn_bank}, {@code bunq}, {@code buut}, {@code finom}, {@code handelsbanken}, {@code ing},
1675+
* {@code knab}, {@code mollie}, {@code moneyou}, {@code n26}, {@code nn}, {@code rabobank},
1676+
* {@code regiobank}, {@code revolut}, {@code sns_bank}, {@code triodos_bank}, {@code
1677+
* van_lanschot}, or {@code yoursafe}.
16781678
*/
16791679
@SerializedName("bank")
16801680
String bank;
16811681

16821682
/**
16831683
* The Bank Identifier Code of the customer's bank, if the bank was provided.
16841684
*
1685-
* <p>One of {@code ABNANL2A}, {@code ASNBNL21}, {@code BITSNL2A}, {@code BUNQNL2A}, {@code
1686-
* BUUTNL2A}, {@code FNOMNL22}, {@code FVLBNL22}, {@code HANDNL2A}, {@code INGBNL2A}, {@code
1687-
* KNABNL2H}, {@code MLLENL2A}, {@code MOYONL21}, {@code NNBANL2G}, {@code NTSBDEB1}, {@code
1688-
* RABONL2U}, {@code RBRBNL21}, {@code REVOIE23}, {@code REVOLT21}, {@code SNSBNL2A}, or
1689-
* {@code TRIONL2U}.
1685+
* <p>One of {@code ABNANL2A}, {@code ADYBNL2A}, {@code ASNBNL21}, {@code BITSNL2A}, {@code
1686+
* BUNQNL2A}, {@code BUUTNL2A}, {@code FNOMNL22}, {@code FVLBNL22}, {@code HANDNL2A}, {@code
1687+
* INGBNL2A}, {@code KNABNL2H}, {@code MLLENL2A}, {@code MOYONL21}, {@code NNBANL2G}, {@code
1688+
* NTSBDEB1}, {@code RABONL2U}, {@code RBRBNL21}, {@code REVOIE23}, {@code REVOLT21}, {@code
1689+
* SNSBNL2A}, or {@code TRIONL2U}.
16901690
*/
16911691
@SerializedName("bic")
16921692
String bic;

src/main/java/com/stripe/model/EventDataClassLookup.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ public final class EventDataClassLookup {
166166
classLookup.put("issuing.transaction", com.stripe.model.issuing.Transaction.class);
167167

168168
classLookup.put("radar.early_fraud_warning", com.stripe.model.radar.EarlyFraudWarning.class);
169+
classLookup.put("radar.payment_evaluation", com.stripe.model.radar.PaymentEvaluation.class);
169170
classLookup.put("radar.value_list", com.stripe.model.radar.ValueList.class);
170171
classLookup.put("radar.value_list_item", com.stripe.model.radar.ValueListItem.class);
171172

src/main/java/com/stripe/model/Invoice.java

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -975,8 +975,8 @@ public Invoice attachPayment(InvoiceAttachPaymentParams params, RequestOptions o
975975
/**
976976
* This endpoint creates a draft invoice for a given customer. The invoice remains a draft until
977977
* you <a href="https://stripe.com/docs/api#finalize_invoice">finalize</a> the invoice, which
978-
* allows you to <a href="https://stripe.com/docs/api#pay_invoice">pay</a> or <a
979-
* href="https://stripe.com/docs/api#send_invoice">send</a> the invoice to your customers.
978+
* allows you to <a href="https://stripe.com/api/invoices/pay">pay</a> or <a
979+
* href="https://stripe.com/api/invoices/send">send</a> the invoice to your customers.
980980
*/
981981
public static Invoice create(Map<String, Object> params) throws StripeException {
982982
return create(params, (RequestOptions) null);
@@ -985,8 +985,8 @@ public static Invoice create(Map<String, Object> params) throws StripeException
985985
/**
986986
* This endpoint creates a draft invoice for a given customer. The invoice remains a draft until
987987
* you <a href="https://stripe.com/docs/api#finalize_invoice">finalize</a> the invoice, which
988-
* allows you to <a href="https://stripe.com/docs/api#pay_invoice">pay</a> or <a
989-
* href="https://stripe.com/docs/api#send_invoice">send</a> the invoice to your customers.
988+
* allows you to <a href="https://stripe.com/api/invoices/pay">pay</a> or <a
989+
* href="https://stripe.com/api/invoices/send">send</a> the invoice to your customers.
990990
*/
991991
public static Invoice create(Map<String, Object> params, RequestOptions options)
992992
throws StripeException {
@@ -999,8 +999,8 @@ public static Invoice create(Map<String, Object> params, RequestOptions options)
999999
/**
10001000
* This endpoint creates a draft invoice for a given customer. The invoice remains a draft until
10011001
* you <a href="https://stripe.com/docs/api#finalize_invoice">finalize</a> the invoice, which
1002-
* allows you to <a href="https://stripe.com/docs/api#pay_invoice">pay</a> or <a
1003-
* href="https://stripe.com/docs/api#send_invoice">send</a> the invoice to your customers.
1002+
* allows you to <a href="https://stripe.com/api/invoices/pay">pay</a> or <a
1003+
* href="https://stripe.com/api/invoices/send">send</a> the invoice to your customers.
10041004
*/
10051005
public static Invoice create(InvoiceCreateParams params) throws StripeException {
10061006
return create(params, (RequestOptions) null);
@@ -1009,8 +1009,8 @@ public static Invoice create(InvoiceCreateParams params) throws StripeException
10091009
/**
10101010
* This endpoint creates a draft invoice for a given customer. The invoice remains a draft until
10111011
* you <a href="https://stripe.com/docs/api#finalize_invoice">finalize</a> the invoice, which
1012-
* allows you to <a href="https://stripe.com/docs/api#pay_invoice">pay</a> or <a
1013-
* href="https://stripe.com/docs/api#send_invoice">send</a> the invoice to your customers.
1012+
* allows you to <a href="https://stripe.com/api/invoices/pay">pay</a> or <a
1013+
* href="https://stripe.com/api/invoices/send">send</a> the invoice to your customers.
10141014
*/
10151015
public static Invoice create(InvoiceCreateParams params, RequestOptions options)
10161016
throws StripeException {
@@ -2105,21 +2105,21 @@ public static class CustomerTaxId extends StripeObject {
21052105
* ro_tin}, {@code rs_pib}, {@code sv_nit}, {@code uy_ruc}, {@code ve_rif}, {@code vn_tin},
21062106
* {@code gb_vat}, {@code nz_gst}, {@code au_abn}, {@code au_arn}, {@code in_gst}, {@code
21072107
* no_vat}, {@code no_voec}, {@code za_vat}, {@code ch_vat}, {@code mx_rfc}, {@code sg_uen},
2108-
* {@code ru_inn}, {@code ru_kpp}, {@code ca_bn}, {@code hk_br}, {@code es_cif}, {@code tw_vat},
2109-
* {@code th_vat}, {@code jp_cn}, {@code jp_rn}, {@code jp_trn}, {@code li_uid}, {@code li_vat},
2110-
* {@code my_itn}, {@code us_ein}, {@code kr_brn}, {@code ca_qst}, {@code ca_gst_hst}, {@code
2111-
* ca_pst_bc}, {@code ca_pst_mb}, {@code ca_pst_sk}, {@code my_sst}, {@code sg_gst}, {@code
2112-
* ae_trn}, {@code cl_tin}, {@code sa_vat}, {@code id_npwp}, {@code my_frp}, {@code il_vat},
2113-
* {@code ge_vat}, {@code ua_vat}, {@code is_vat}, {@code bg_uic}, {@code hu_tin}, {@code
2114-
* si_tin}, {@code ke_pin}, {@code tr_tin}, {@code eg_tin}, {@code ph_tin}, {@code al_tin},
2115-
* {@code bh_vat}, {@code kz_bin}, {@code ng_tin}, {@code om_vat}, {@code de_stn}, {@code
2116-
* ch_uid}, {@code tz_vat}, {@code uz_vat}, {@code uz_tin}, {@code md_vat}, {@code ma_vat},
2117-
* {@code by_tin}, {@code ao_tin}, {@code bs_tin}, {@code bb_tin}, {@code cd_nif}, {@code
2118-
* mr_nif}, {@code me_pib}, {@code zw_tin}, {@code ba_tin}, {@code gn_nif}, {@code mk_vat},
2119-
* {@code sr_fin}, {@code sn_ninea}, {@code am_tin}, {@code np_pan}, {@code tj_tin}, {@code
2120-
* ug_tin}, {@code zm_tin}, {@code kh_tin}, {@code aw_tin}, {@code az_tin}, {@code bd_bin},
2121-
* {@code bj_ifu}, {@code et_tin}, {@code kg_tin}, {@code la_tin}, {@code cm_niu}, {@code
2122-
* cv_nif}, {@code bf_ifu}, or {@code unknown}.
2108+
* {@code ru_inn}, {@code ru_kpp}, {@code ca_bn}, {@code hk_br}, {@code es_cif}, {@code pl_nip},
2109+
* {@code tw_vat}, {@code th_vat}, {@code jp_cn}, {@code jp_rn}, {@code jp_trn}, {@code li_uid},
2110+
* {@code li_vat}, {@code my_itn}, {@code us_ein}, {@code kr_brn}, {@code ca_qst}, {@code
2111+
* ca_gst_hst}, {@code ca_pst_bc}, {@code ca_pst_mb}, {@code ca_pst_sk}, {@code my_sst}, {@code
2112+
* sg_gst}, {@code ae_trn}, {@code cl_tin}, {@code sa_vat}, {@code id_npwp}, {@code my_frp},
2113+
* {@code il_vat}, {@code ge_vat}, {@code ua_vat}, {@code is_vat}, {@code bg_uic}, {@code
2114+
* hu_tin}, {@code si_tin}, {@code ke_pin}, {@code tr_tin}, {@code eg_tin}, {@code ph_tin},
2115+
* {@code al_tin}, {@code bh_vat}, {@code kz_bin}, {@code ng_tin}, {@code om_vat}, {@code
2116+
* de_stn}, {@code ch_uid}, {@code tz_vat}, {@code uz_vat}, {@code uz_tin}, {@code md_vat},
2117+
* {@code ma_vat}, {@code by_tin}, {@code ao_tin}, {@code bs_tin}, {@code bb_tin}, {@code
2118+
* cd_nif}, {@code mr_nif}, {@code me_pib}, {@code zw_tin}, {@code ba_tin}, {@code gn_nif},
2119+
* {@code mk_vat}, {@code sr_fin}, {@code sn_ninea}, {@code am_tin}, {@code np_pan}, {@code
2120+
* tj_tin}, {@code ug_tin}, {@code zm_tin}, {@code kh_tin}, {@code aw_tin}, {@code az_tin},
2121+
* {@code bd_bin}, {@code bj_ifu}, {@code et_tin}, {@code kg_tin}, {@code la_tin}, {@code
2122+
* cm_niu}, {@code cv_nif}, {@code bf_ifu}, or {@code unknown}.
21232123
*/
21242124
@SerializedName("type")
21252125
String type;

src/main/java/com/stripe/model/PaymentAttemptRecord.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,23 +1894,23 @@ public static class Grabpay extends StripeObject {
18941894
@EqualsAndHashCode(callSuper = false)
18951895
public static class Ideal extends StripeObject {
18961896
/**
1897-
* The customer's bank. Can be one of {@code abn_amro}, {@code asn_bank}, {@code bunq}, {@code
1898-
* buut}, {@code finom}, {@code handelsbanken}, {@code ing}, {@code knab}, {@code mollie},
1899-
* {@code moneyou}, {@code n26}, {@code nn}, {@code rabobank}, {@code regiobank}, {@code
1900-
* revolut}, {@code sns_bank}, {@code triodos_bank}, {@code van_lanschot}, or {@code
1901-
* yoursafe}.
1897+
* The customer's bank. Can be one of {@code abn_amro}, {@code adyen}, {@code asn_bank},
1898+
* {@code bunq}, {@code buut}, {@code finom}, {@code handelsbanken}, {@code ing}, {@code
1899+
* knab}, {@code mollie}, {@code moneyou}, {@code n26}, {@code nn}, {@code rabobank}, {@code
1900+
* regiobank}, {@code revolut}, {@code sns_bank}, {@code triodos_bank}, {@code van_lanschot},
1901+
* or {@code yoursafe}.
19021902
*/
19031903
@SerializedName("bank")
19041904
String bank;
19051905

19061906
/**
19071907
* The Bank Identifier Code of the customer's bank.
19081908
*
1909-
* <p>One of {@code ABNANL2A}, {@code ASNBNL21}, {@code BITSNL2A}, {@code BUNQNL2A}, {@code
1910-
* BUUTNL2A}, {@code FNOMNL22}, {@code FVLBNL22}, {@code HANDNL2A}, {@code INGBNL2A}, {@code
1911-
* KNABNL2H}, {@code MLLENL2A}, {@code MOYONL21}, {@code NNBANL2G}, {@code NTSBDEB1}, {@code
1912-
* RABONL2U}, {@code RBRBNL21}, {@code REVOIE23}, {@code REVOLT21}, {@code SNSBNL2A}, or
1913-
* {@code TRIONL2U}.
1909+
* <p>One of {@code ABNANL2A}, {@code ADYBNL2A}, {@code ASNBNL21}, {@code BITSNL2A}, {@code
1910+
* BUNQNL2A}, {@code BUUTNL2A}, {@code FNOMNL22}, {@code FVLBNL22}, {@code HANDNL2A}, {@code
1911+
* INGBNL2A}, {@code KNABNL2H}, {@code MLLENL2A}, {@code MOYONL21}, {@code NNBANL2G}, {@code
1912+
* NTSBDEB1}, {@code RABONL2U}, {@code RBRBNL21}, {@code REVOIE23}, {@code REVOLT21}, {@code
1913+
* SNSBNL2A}, or {@code TRIONL2U}.
19141914
*/
19151915
@SerializedName("bic")
19161916
String bic;

0 commit comments

Comments
 (0)