@@ -13521,11 +13521,18 @@ public Builder setTitle(String title) {
1352113521 @Getter
1352213522 @EqualsAndHashCode(callSuper = false)
1352313523 public static class SelfReportedIncome {
13524- /** <strong>Required.</strong> */
13524+ /**
13525+ * <strong>Required.</strong> The amount in the minor currency unit (for example, cents for
13526+ * USD).
13527+ */
1352513528 @SerializedName("amount")
1352613529 Long amount;
1352713530
13528- /** <strong>Required.</strong> */
13531+ /**
13532+ * <strong>Required.</strong> Three-letter <a
13533+ * href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in
13534+ * lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
13535+ */
1352913536 @SerializedName("currency")
1353013537 String currency;
1353113538
@@ -13561,13 +13568,20 @@ public AccountCreateParams.Individual.SelfReportedIncome build() {
1356113568 this.amount, this.currency, this.extraParams);
1356213569 }
1356313570
13564- /** <strong>Required.</strong> */
13571+ /**
13572+ * <strong>Required.</strong> The amount in the minor currency unit (for example, cents for
13573+ * USD).
13574+ */
1356513575 public Builder setAmount(Long amount) {
1356613576 this.amount = amount;
1356713577 return this;
1356813578 }
1356913579
13570- /** <strong>Required.</strong> */
13580+ /**
13581+ * <strong>Required.</strong> Three-letter <a
13582+ * href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in
13583+ * lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
13584+ */
1357113585 public Builder setCurrency(String currency) {
1357213586 this.currency = currency;
1357313587 return this;
@@ -13606,11 +13620,18 @@ public Builder putAllExtraParam(Map<String, Object> map) {
1360613620 @Getter
1360713621 @EqualsAndHashCode(callSuper = false)
1360813622 public static class SelfReportedMonthlyHousingPayment {
13609- /** <strong>Required.</strong> */
13623+ /**
13624+ * <strong>Required.</strong> The amount in the minor currency unit (for example, cents for
13625+ * USD).
13626+ */
1361013627 @SerializedName("amount")
1361113628 Long amount;
1361213629
13613- /** <strong>Required.</strong> */
13630+ /**
13631+ * <strong>Required.</strong> Three-letter <a
13632+ * href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in
13633+ * lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
13634+ */
1361413635 @SerializedName("currency")
1361513636 String currency;
1361613637
@@ -13647,13 +13668,20 @@ public AccountCreateParams.Individual.SelfReportedMonthlyHousingPayment build()
1364713668 this.amount, this.currency, this.extraParams);
1364813669 }
1364913670
13650- /** <strong>Required.</strong> */
13671+ /**
13672+ * <strong>Required.</strong> The amount in the minor currency unit (for example, cents for
13673+ * USD).
13674+ */
1365113675 public Builder setAmount(Long amount) {
1365213676 this.amount = amount;
1365313677 return this;
1365413678 }
1365513679
13656- /** <strong>Required.</strong> */
13680+ /**
13681+ * <strong>Required.</strong> Three-letter <a
13682+ * href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in
13683+ * lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
13684+ */
1365713685 public Builder setCurrency(String currency) {
1365813686 this.currency = currency;
1365913687 return this;
0 commit comments