Skip to content

Commit

Permalink
Update generated code for v582
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Oct 5, 2023
1 parent 2c61650 commit 22cb462
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v581
v582
13 changes: 13 additions & 0 deletions src/main/java/com/stripe/param/issuing/CardListParams.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ public class CardListParams extends ApiRequestParams {
@SerializedName("limit")
Long limit;

@SerializedName("personalization_design")
String personalizationDesign;

/**
* A cursor for use in pagination. {@code starting_after} is an object ID that defines your place
* in the list. For instance, if you make a list request and receive 100 objects, ending with
Expand Down Expand Up @@ -90,6 +93,7 @@ private CardListParams(
Map<String, Object> extraParams,
String last4,
Long limit,
String personalizationDesign,
String startingAfter,
Status status,
Type type) {
Expand All @@ -102,6 +106,7 @@ private CardListParams(
this.extraParams = extraParams;
this.last4 = last4;
this.limit = limit;
this.personalizationDesign = personalizationDesign;
this.startingAfter = startingAfter;
this.status = status;
this.type = type;
Expand Down Expand Up @@ -130,6 +135,8 @@ public static class Builder {

private Long limit;

private String personalizationDesign;

private String startingAfter;

private Status status;
Expand All @@ -148,6 +155,7 @@ public CardListParams build() {
this.extraParams,
this.last4,
this.limit,
this.personalizationDesign,
this.startingAfter,
this.status,
this.type);
Expand Down Expand Up @@ -261,6 +269,11 @@ public Builder setLimit(Long limit) {
return this;
}

public Builder setPersonalizationDesign(String personalizationDesign) {
this.personalizationDesign = personalizationDesign;
return this;
}

/**
* A cursor for use in pagination. {@code starting_after} is an object ID that defines your
* place in the list. For instance, if you make a list request and receive 100 objects, ending
Expand Down

0 comments on commit 22cb462

Please sign in to comment.