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

Add IssuingCard param value to ephemeral_key.go #728

Merged
merged 2 commits into from
Nov 26, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
go fmt
jack-stripe committed Nov 26, 2018

Unverified

This user has not yet uploaded their public signing key.
commit 107d07dc9a0dc3e475916112f232c905fd4eab4c
4 changes: 2 additions & 2 deletions ephemeralkey.go
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ import "encoding/json"
// For more details see https://stripe.com/docs/api#ephemeral_keys.
type EphemeralKeyParams struct {
Params `form:"*"`
Customer *string `form:"customer"`
IssuingCard *string `form:"issuing_card"`
Customer *string `form:"customer"`
IssuingCard *string `form:"issuing_card"`
StripeVersion *string `form:"-"` // This goes in the `Stripe-Version` header
}