19 lines
471 B
Go
19 lines
471 B
Go
|
package state
|
||
|
|
||
|
type PaymentState string
|
||
|
|
||
|
const (
|
||
|
// initial state
|
||
|
StateInitialized PaymentState = "initialized"
|
||
|
|
||
|
// state on response
|
||
|
StateAccepted PaymentState = "accepted"
|
||
|
StateError PaymentState = "error"
|
||
|
StateCanceledInitialization PaymentState = "canceled_initialization"
|
||
|
|
||
|
// state after confirmation
|
||
|
StateCompleted PaymentState = "completed"
|
||
|
StateVoided PaymentState = "voided"
|
||
|
StateCanceled PaymentState = "canceled"
|
||
|
)
|