mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-13 10:58:17 +08:00
29 lines
495 B
Go
29 lines
495 B
Go
package operation
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type OperationInfo struct {
|
|
DateCreated time.Time
|
|
DateStart time.Time
|
|
DateUpdated time.Time
|
|
Eta string
|
|
Id int64
|
|
LastError string
|
|
SessionId int64
|
|
Source string
|
|
Step string
|
|
Type string
|
|
Params map[string]interface{}
|
|
OperationDetails *OperationDetails
|
|
}
|
|
|
|
type OperationDetails struct {
|
|
Id string
|
|
Label string
|
|
ProductAction string
|
|
ProductName string
|
|
ProductType string
|
|
Quantity int64
|
|
}
|