Skip to content

Commit

Permalink
Doc updates for AccountPersonUpdateParams.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-stripe committed Apr 7, 2024
1 parent 9c896f4 commit 0525304
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/java/com/stripe/param/AccountPersonUpdateParams.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public class AccountPersonUpdateParams extends ApiRequestParams {
/**
* The person's ID number, as appropriate for their country. For example, a social security number
* in the U.S., social insurance number in Canada, etc. Instead of the number itself, you can also
* provide a <a href="https://stripe.com/docs/js/tokens/create_token?type=pii">PII token provided
* provide a <a href="https://docs.stripe.com/js/tokens/create_token?type=pii">PII token provided
* by Stripe.js</a>.
*/
@SerializedName("id_number")
Expand All @@ -90,7 +90,7 @@ public class AccountPersonUpdateParams extends ApiRequestParams {
* The person's secondary ID number, as appropriate for their country, will be used for enhanced
* verification checks. In Thailand, this would be the laser code found on the back of an ID card.
* Instead of the number itself, you can also provide a <a
* href="https://stripe.com/docs/js/tokens/create_token?type=pii">PII token provided by
* href="https://docs.stripe.com/js/tokens/create_token?type=pii">PII token provided by
* Stripe.js</a>.
*/
@SerializedName("id_number_secondary")
Expand Down Expand Up @@ -130,7 +130,7 @@ public class AccountPersonUpdateParams extends ApiRequestParams {
Object nationality;

/**
* A <a href="https://stripe.com/docs/connect/account-tokens">person token</a>, used to securely
* A <a href="https://docs.stripe.com/connect/account-tokens">person token</a>, used to securely
* provide details to the person.
*/
@SerializedName("person_token")
Expand Down Expand Up @@ -526,7 +526,7 @@ public Builder setGender(EmptyParam gender) {
/**
* The person's ID number, as appropriate for their country. For example, a social security
* number in the U.S., social insurance number in Canada, etc. Instead of the number itself, you
* can also provide a <a href="https://stripe.com/docs/js/tokens/create_token?type=pii">PII
* can also provide a <a href="https://docs.stripe.com/js/tokens/create_token?type=pii">PII
* token provided by Stripe.js</a>.
*/
public Builder setIdNumber(String idNumber) {
Expand All @@ -537,7 +537,7 @@ public Builder setIdNumber(String idNumber) {
/**
* The person's ID number, as appropriate for their country. For example, a social security
* number in the U.S., social insurance number in Canada, etc. Instead of the number itself, you
* can also provide a <a href="https://stripe.com/docs/js/tokens/create_token?type=pii">PII
* can also provide a <a href="https://docs.stripe.com/js/tokens/create_token?type=pii">PII
* token provided by Stripe.js</a>.
*/
public Builder setIdNumber(EmptyParam idNumber) {
Expand All @@ -549,7 +549,7 @@ public Builder setIdNumber(EmptyParam idNumber) {
* The person's secondary ID number, as appropriate for their country, will be used for enhanced
* verification checks. In Thailand, this would be the laser code found on the back of an ID
* card. Instead of the number itself, you can also provide a <a
* href="https://stripe.com/docs/js/tokens/create_token?type=pii">PII token provided by
* href="https://docs.stripe.com/js/tokens/create_token?type=pii">PII token provided by
* Stripe.js</a>.
*/
public Builder setIdNumberSecondary(String idNumberSecondary) {
Expand All @@ -561,7 +561,7 @@ public Builder setIdNumberSecondary(String idNumberSecondary) {
* The person's secondary ID number, as appropriate for their country, will be used for enhanced
* verification checks. In Thailand, this would be the laser code found on the back of an ID
* card. Instead of the number itself, you can also provide a <a
* href="https://stripe.com/docs/js/tokens/create_token?type=pii">PII token provided by
* href="https://docs.stripe.com/js/tokens/create_token?type=pii">PII token provided by
* Stripe.js</a>.
*/
public Builder setIdNumberSecondary(EmptyParam idNumberSecondary) {
Expand Down Expand Up @@ -688,7 +688,7 @@ public Builder setNationality(EmptyParam nationality) {
}

/**
* A <a href="https://stripe.com/docs/connect/account-tokens">person token</a>, used to securely
* A <a href="https://docs.stripe.com/connect/account-tokens">person token</a>, used to securely
* provide details to the person.
*/
public Builder setPersonToken(String personToken) {
Expand All @@ -697,7 +697,7 @@ public Builder setPersonToken(String personToken) {
}

/**
* A <a href="https://stripe.com/docs/connect/account-tokens">person token</a>, used to securely
* A <a href="https://docs.stripe.com/connect/account-tokens">person token</a>, used to securely
* provide details to the person.
*/
public Builder setPersonToken(EmptyParam personToken) {
Expand Down

0 comments on commit 0525304

Please sign in to comment.