mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-06 19:18:22 +01:00
22 lines
587 B
Go
22 lines
587 B
Go
|
// Copyright 2023, Command Line Inc.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package wcloud
|
||
|
|
||
|
import (
|
||
|
"github.com/wavetermdev/thenextwave/pkg/telemetry"
|
||
|
)
|
||
|
|
||
|
type NoTelemetryInputType struct {
|
||
|
ClientId string `json:"clientid"`
|
||
|
Value bool `json:"value"`
|
||
|
}
|
||
|
|
||
|
type TelemetryInputType struct {
|
||
|
UserId string `json:"userid"`
|
||
|
ClientId string `json:"clientid"`
|
||
|
CurDay string `json:"curday"`
|
||
|
DefaultShell string `json:"defaultshell"`
|
||
|
Activity []*telemetry.ActivityType `json:"activity"`
|
||
|
}
|