Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API Updates #1543

Merged
merged 1 commit into from
Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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