Skip to content

Commit

Permalink
Properly rename Fullfilled even though it does not match the API
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Apr 14, 2018
1 parent ec7a002 commit 4a5e87c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions order.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ type OrderListParams struct {
// StatusTransitions are the timestamps at which the order status was updated
// https://stripe.com/docs/api#order_object
type StatusTransitions struct {
Canceled int64 `json:"canceled"`
Fulfiled int64 `json:"fulfiled"`
Paid int64 `json:"paid"`
Returned int64 `json:"returned"`
Canceled int64 `json:"canceled"`
Fulfilled int64 `json:"fulfiled"`
Paid int64 `json:"paid"`
Returned int64 `json:"returned"`
}

// OrderPayParams is the set of parameters that can be used when
Expand Down

0 comments on commit 4a5e87c

Please sign in to comment.