13 lines
291 B
Go
13 lines
291 B
Go
package model
|
|
|
|
import (
|
|
basemodel "go.signoz.io/signoz/pkg/query-service/model"
|
|
)
|
|
|
|
// GettableInvitation overrides base object and adds precheck into
|
|
// response
|
|
type GettableInvitation struct {
|
|
*basemodel.InvitationResponseObject
|
|
Precheck *basemodel.PrecheckResponse `json:"precheck"`
|
|
}
|