1
0
Fork 0
mirror of https://github.com/Luzifer/sii.git synced 2024-10-18 05:14:19 +00:00
sii/block_delivery_log.go

37 lines
760 B
Go
Raw Permalink Normal View History

package sii
func init() {
RegisterBlock(&DeliveryLog{})
RegisterBlock(&DeliveryLogEntry{})
}
type DeliveryLog struct {
Version int `sii:"version"`
Entries []Ptr `sii:"entries"`
CachedJobCount int64 `sii:"cached_jobs_count"`
blockName string
}
func (DeliveryLog) Class() string { return "delivery_log" }
func (d *DeliveryLog) Init(class, name string) {
d.blockName = name
}
func (d DeliveryLog) Name() string { return d.blockName }
type DeliveryLogEntry struct {
Params []RawValue `sii:"params"`
blockName string
}
func (DeliveryLogEntry) Class() string { return "delivery_log_entry" }
func (d *DeliveryLogEntry) Init(class, name string) {
d.blockName = name
}
func (d DeliveryLogEntry) Name() string { return d.blockName }