Skip to content

Commit

Permalink
API Updates (#1543)
Browse files Browse the repository at this point in the history
Codegen for openapi v190
  • Loading branch information
yejia-stripe authored Sep 9, 2022
1 parent de825db commit 4b2307a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v189
v190
4 changes: 4 additions & 0 deletions issuing_card.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ type IssuingCardShippingParams struct {
Name *string `form:"name"`
// Phone number of the recipient of the shipment.
PhoneNumber *string `form:"phone_number"`
// Whether a signature is required for card delivery.
RequireSignature *bool `form:"require_signature"`
// Shipment service.
Service *string `form:"service"`
// Packaging options.
Expand Down Expand Up @@ -239,6 +241,8 @@ type IssuingCardShipping struct {
Name string `json:"name"`
// The phone number of the receiver of the bulk shipment. This phone number will be provided to the shipping company, who might use it to contact the receiver in case of delivery issues.
PhoneNumber string `json:"phone_number"`
// Whether a signature is required for card delivery. This feature is only supported for US users. Standard shipping service does not support signature on delivery. The default value for standard shipping service is false and for express and priority services is true.
RequireSignature bool `json:"require_signature"`
// Shipment service, such as `standard` or `express`.
Service IssuingCardShippingService `json:"service"`
// The delivery status of the card.
Expand Down

0 comments on commit 4b2307a

Please sign in to comment.