Skip to content

Commit

Permalink
Merge pull request #4 from hexdigest/fix_bin_number_type
Browse files Browse the repository at this point in the history
Changed BinNumber type from string to int
  • Loading branch information
vpbarb authored Jul 25, 2017
2 parents ec0e8ef + f00754a commit 8115feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion payment_method.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type PaymentMethod struct {
Created json.Number `json:"created"`
Customer string `json:"customer"`
AdditionalDetails AdditionalDetails `json:"additional_details"`
BinNumber string `json:"bin_number"`
BinNumber int `json:"bin_number"`
Vendor string `json:"vendor"`
Issuer string `json:"issuer"`
CardType string `json:"card_type"`
Expand Down

0 comments on commit 8115feb

Please sign in to comment.