Skip to content
Open
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
4 changes: 2 additions & 2 deletions charge.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ type ChargeService service

// Card represents a Card object
type Card struct {
Number string `json:"card_number,omitempty"`
CVV string `json:"card_cvc,omitempty"`
Number string `json:"number,omitempty"`
CVV string `json:"cvv,omitempty"`
ExpirtyMonth string `json:"expiry_month,omitempty"`
ExpiryYear string `json:"expiry_year,omitempty"`
AddressLine1 string `json:"address_line1,omitempty"`
Expand Down