dnscontrol/vendor/github.com/prasmussen/gandi-api/operation/structs.go
2016-08-22 18:31:50 -06:00

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
}