mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 09:26:52 +00:00
21 lines
487 B
Go
21 lines
487 B
Go
|
|
package signozio
|
||
|
|
|
||
|
|
type status string
|
||
|
|
|
||
|
|
const (
|
||
|
|
statusSuccess status = "success"
|
||
|
|
statusError status = "error"
|
||
|
|
)
|
||
|
|
|
||
|
|
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"`
|
||
|
|
}
|