fixed fee direction
This commit is contained in:
13
api/gateway/aurora/storage/model/status.go
Normal file
13
api/gateway/aurora/storage/model/status.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package model
|
||||
|
||||
type PayoutStatus string
|
||||
|
||||
const (
|
||||
PayoutStatusCreated PayoutStatus = "created" // record exists, not started
|
||||
PayoutStatusProcessing PayoutStatus = "processing" // we are working on it
|
||||
PayoutStatusWaiting PayoutStatus = "waiting" // waiting external world
|
||||
|
||||
PayoutStatusSuccess PayoutStatus = "success" // final success
|
||||
PayoutStatusFailed PayoutStatus = "failed" // final failure
|
||||
PayoutStatusCancelled PayoutStatus = "cancelled" // final cancelled
|
||||
)
|
||||
Reference in New Issue
Block a user