diff --git a/v5/types.go b/v5/types.go index 02b0cb7..75437aa 100644 --- a/v5/types.go +++ b/v5/types.go @@ -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"` +}