mirror of
https://github.com/plutov/paypal.git
synced 2025-01-23 10:21:03 +01:00
parent
2091d46d04
commit
1fb8e0b1fa
11
types.go
11
types.go
|
@ -62,6 +62,17 @@ const (
|
||||||
OrderIntentAuthorize string = "AUTHORIZE"
|
OrderIntentAuthorize string = "AUTHORIZE"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Possible value for `status` in GetOrder
|
||||||
|
//
|
||||||
|
// https://developer.paypal.com/docs/api/orders/v2/#orders-get-response
|
||||||
|
const (
|
||||||
|
OrderStatusCreated string = "CREATED"
|
||||||
|
OrderStatusSaved string = "SAVED"
|
||||||
|
OrderStatusApproved string = "APPROVED"
|
||||||
|
OrderStatusVoided string = "VOIDED"
|
||||||
|
OrderStatusCompleted string = "COMPLETED"
|
||||||
|
)
|
||||||
|
|
||||||
// Possible values for `category` in Item
|
// Possible values for `category` in Item
|
||||||
//
|
//
|
||||||
// https://developer.paypal.com/docs/api/orders/v2/#definition-item
|
// https://developer.paypal.com/docs/api/orders/v2/#definition-item
|
||||||
|
|
Loading…
Reference in New Issue
Block a user