44import com.google.gson.annotations.SerializedName;
55import com.stripe.net.ApiRequestParams;
66import com.stripe.v2.Amount;
7+ import java.math.BigDecimal;
78import java.time.Instant;
89import java.util.ArrayList;
910import java.util.HashMap;
@@ -15655,7 +15656,7 @@ public static class Relationship {
1565515656
1565615657 /** The percent owned by the person of the account's legal entity. */
1565715658 @SerializedName("percent_ownership")
15658- String percentOwnership;
15659+ BigDecimal percentOwnership;
1565915660
1566015661 /** The person's title (e.g., CEO, Support Engineer). */
1566115662 @SerializedName("title")
@@ -15666,7 +15667,7 @@ private Relationship(
1566615667 Boolean executive,
1566715668 Map<String, Object> extraParams,
1566815669 Boolean owner,
15669- String percentOwnership,
15670+ BigDecimal percentOwnership,
1567015671 String title) {
1567115672 this.director = director;
1567215673 this.executive = executive;
@@ -15689,7 +15690,7 @@ public static class Builder {
1568915690
1569015691 private Boolean owner;
1569115692
15692- private String percentOwnership;
15693+ private BigDecimal percentOwnership;
1569315694
1569415695 private String title;
1569515696
@@ -15758,7 +15759,7 @@ public Builder setOwner(Boolean owner) {
1575815759 }
1575915760
1576015761 /** The percent owned by the person of the account's legal entity. */
15761- public Builder setPercentOwnership(String percentOwnership) {
15762+ public Builder setPercentOwnership(BigDecimal percentOwnership) {
1576215763 this.percentOwnership = percentOwnership;
1576315764 return this;
1576415765 }
0 commit comments