logs-analyzer/signoz/ee/query-service/integrations/signozio/response.go
2024-09-02 22:47:30 +03:00

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"`
}