Skip to content

Commit

Permalink
Update generated code for v1302
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Oct 16, 2024
1 parent 1ff5f66 commit 592d60c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1301
v1302
12 changes: 6 additions & 6 deletions src/main/java/com/stripe/model/issuing/Card.java
Original file line number Diff line number Diff line change
Expand Up @@ -933,31 +933,31 @@ public Card shipCard(CardShipCardParams params, RequestOptions options) throws S

/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code
* submitted}. This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* submitted}. This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard() throws StripeException {
return submitCard((Map<String, Object>) null, (RequestOptions) null);
}

/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code
* submitted}. This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* submitted}. This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(RequestOptions options) throws StripeException {
return submitCard((Map<String, Object>) null, options);
}

/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code
* submitted}. This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* submitted}. This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(Map<String, Object> params) throws StripeException {
return submitCard(params, (RequestOptions) null);
}

/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code
* submitted}. This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* submitted}. This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(Map<String, Object> params, RequestOptions options)
throws StripeException {
Expand All @@ -972,15 +972,15 @@ public Card submitCard(Map<String, Object> params, RequestOptions options)

/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code
* submitted}. This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* submitted}. This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(CardSubmitCardParams params) throws StripeException {
return submitCard(params, (RequestOptions) null);
}

/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code
* submitted}. This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* submitted}. This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(CardSubmitCardParams params, RequestOptions options)
throws StripeException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,28 +163,28 @@ public Card shipCard(String card, CardShipCardParams params, RequestOptions opti
}
/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code submitted}.
* This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(String card, CardSubmitCardParams params) throws StripeException {
return submitCard(card, params, (RequestOptions) null);
}
/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code submitted}.
* This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(String card, RequestOptions options) throws StripeException {
return submitCard(card, (CardSubmitCardParams) null, options);
}
/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code submitted}.
* This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(String card) throws StripeException {
return submitCard(card, (CardSubmitCardParams) null, (RequestOptions) null);
}
/**
* Updates the shipping status of the specified Issuing {@code Card} object to {@code submitted}.
* This method is only available with Stripe Version ‘2024-09-30.acacia’ or above.
* This method requires Stripe Version ‘2024-09-30.acacia’ or later.
*/
public Card submitCard(String card, CardSubmitCardParams params, RequestOptions options)
throws StripeException {
Expand Down

0 comments on commit 592d60c

Please sign in to comment.