mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
13 lines
296 B
Go
13 lines
296 B
Go
package model
|
|
|
|
import (
|
|
basemodel "github.com/SigNoz/signoz/pkg/query-service/model"
|
|
)
|
|
|
|
// GettableInvitation overrides base object and adds precheck into
|
|
// response
|
|
type GettableInvitation struct {
|
|
*basemodel.InvitationResponseObject
|
|
Precheck *basemodel.PrecheckResponse `json:"precheck"`
|
|
}
|