20 lines
368 B
Go
20 lines
368 B
Go
package model
|
|
|
|
const (
|
|
InvitationStatusPending = "pending"
|
|
InvitationStatusAccepted = "accepted"
|
|
InvitationStatusDeclined = "declined"
|
|
)
|
|
|
|
type Invitation interface {
|
|
GetID() string
|
|
GetOrganizationID() string
|
|
GetOwnerID() string
|
|
GetEmail() string
|
|
GetStatus() string
|
|
GetCreateTime() string
|
|
GetUpdateTime() *string
|
|
SetStatus(string)
|
|
SetUpdateTime(*string)
|
|
}
|