| 129 | } |
| 130 | |
| 131 | type Client struct { |
| 132 | OID string `json:"oid"` |
| 133 | Version int `json:"version"` |
| 134 | WindowIds []string `json:"windowids"` |
| 135 | Meta MetaMapType `json:"meta"` |
| 136 | TosAgreed int64 `json:"tosagreed,omitempty"` // unix milli |
| 137 | HasOldHistory bool `json:"hasoldhistory,omitempty"` |
| 138 | TempOID string `json:"tempoid,omitempty"` |
| 139 | InstallId string `json:"installid,omitempty"` |
| 140 | } |
| 141 | |
| 142 | func (*Client) GetOType() string { |
| 143 | return OType_Client |
nothing calls this directly
no outgoing calls
no test coverage detected