28 lines
1.1 KiB
Go
28 lines
1.1 KiB
Go
//
|
|
// Code generated by go-jet DO NOT EDIT.
|
|
//
|
|
// WARNING: Changes to this file may cause incorrect behavior
|
|
// and will be lost if the code is regenerated
|
|
//
|
|
|
|
package enum
|
|
|
|
import "github.com/Gleipnir-Technology/jet/postgres"
|
|
|
|
var Communicationlogentry = &struct {
|
|
Created postgres.StringExpression
|
|
StatusClosed postgres.StringExpression
|
|
StatusInvalidated postgres.StringExpression
|
|
StatusOpened postgres.StringExpression
|
|
StatusPending postgres.StringExpression
|
|
StatusPossibleIssue postgres.StringExpression
|
|
StatusPossibleResolved postgres.StringExpression
|
|
}{
|
|
Created: postgres.NewEnumValue("created"),
|
|
StatusClosed: postgres.NewEnumValue("status.closed"),
|
|
StatusInvalidated: postgres.NewEnumValue("status.invalidated"),
|
|
StatusOpened: postgres.NewEnumValue("status.opened"),
|
|
StatusPending: postgres.NewEnumValue("status.pending"),
|
|
StatusPossibleIssue: postgres.NewEnumValue("status.possible-issue"),
|
|
StatusPossibleResolved: postgres.NewEnumValue("status.possible-resolved"),
|
|
}
|