14 lines
401 B
Go
14 lines
401 B
Go
package structs
|
|
|
|
// swagger:model ExistsUserWebSocketSessionIdResponse
|
|
type ExistsUserWebSocketSessionIdResponse struct {
|
|
// Returns whether the user websocket session already exists or not
|
|
E bool
|
|
}
|
|
|
|
// swagger:model GetUserWebSocketSessionIdsResponse
|
|
type GetUserWebSocketSessionIdsResponse struct {
|
|
// List of all websocket sessionIds of the user that are connected
|
|
WebSocketSessions []string
|
|
}
|