mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-28 07:22:03 +08:00

* chore: address large number of staticcheck issues * chore: fix tests * chore: fix more issue * chore: fix options
16 lines
410 B
Go
16 lines
410 B
Go
package signozio
|
|
|
|
type status string
|
|
|
|
type ActivationResult struct {
|
|
Status status `json:"status"`
|
|
Data *ActivationResponse `json:"data,omitempty"`
|
|
ErrorType string `json:"errorType,omitempty"`
|
|
Error string `json:"error,omitempty"`
|
|
}
|
|
|
|
type ActivationResponse struct {
|
|
ActivationId string `json:"ActivationId"`
|
|
PlanDetails string `json:"PlanDetails"`
|
|
}
|