update data types

This commit is contained in:
Alex Lushpai 2018-06-01 17:57:46 +03:00
parent a2437831bf
commit 7f40548607

View File

@ -938,3 +938,16 @@ type Element struct {
Code string `json:"code,omitempty"`
Ordering int `json:"ordering,omitempty"`
}
// ActivityCallback activation callback
type ActivityCallback struct {
ClientId string `json:"clientId"`
Activity Activity `json:"activity"`
SystemUrl string `json:"systemUrl,omitempty"`
}
// Activity struct
type Activity struct {
Active bool `json:"active"`
Freeze bool `json:"freeze"`
}