emailtemplate

package
v1.9.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 11, 2026 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the emailtemplate type in the database.
	Label = "email_template"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldUpdatedBy holds the string denoting the updated_by field in the database.
	FieldUpdatedBy = "updated_by"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldDeletedBy holds the string denoting the deleted_by field in the database.
	FieldDeletedBy = "deleted_by"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldSystemOwned holds the string denoting the system_owned field in the database.
	FieldSystemOwned = "system_owned"
	// FieldInternalNotes holds the string denoting the internal_notes field in the database.
	FieldInternalNotes = "internal_notes"
	// FieldSystemInternalID holds the string denoting the system_internal_id field in the database.
	FieldSystemInternalID = "system_internal_id"
	// FieldKey holds the string denoting the key field in the database.
	FieldKey = "key"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldFormat holds the string denoting the format field in the database.
	FieldFormat = "format"
	// FieldLocale holds the string denoting the locale field in the database.
	FieldLocale = "locale"
	// FieldSubjectTemplate holds the string denoting the subject_template field in the database.
	FieldSubjectTemplate = "subject_template"
	// FieldPreheaderTemplate holds the string denoting the preheader_template field in the database.
	FieldPreheaderTemplate = "preheader_template"
	// FieldBodyTemplate holds the string denoting the body_template field in the database.
	FieldBodyTemplate = "body_template"
	// FieldTextTemplate holds the string denoting the text_template field in the database.
	FieldTextTemplate = "text_template"
	// FieldJsonconfig holds the string denoting the jsonconfig field in the database.
	FieldJsonconfig = "jsonconfig"
	// FieldUischema holds the string denoting the uischema field in the database.
	FieldUischema = "uischema"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// FieldActive holds the string denoting the active field in the database.
	FieldActive = "active"
	// FieldVersion holds the string denoting the version field in the database.
	FieldVersion = "version"
	// FieldEmailBrandingID holds the string denoting the email_branding_id field in the database.
	FieldEmailBrandingID = "email_branding_id"
	// FieldIntegrationID holds the string denoting the integration_id field in the database.
	FieldIntegrationID = "integration_id"
	// FieldWorkflowDefinitionID holds the string denoting the workflow_definition_id field in the database.
	FieldWorkflowDefinitionID = "workflow_definition_id"
	// FieldWorkflowInstanceID holds the string denoting the workflow_instance_id field in the database.
	FieldWorkflowInstanceID = "workflow_instance_id"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeEmailBranding holds the string denoting the email_branding edge name in mutations.
	EdgeEmailBranding = "email_branding"
	// EdgeIntegration holds the string denoting the integration edge name in mutations.
	EdgeIntegration = "integration"
	// EdgeWorkflowDefinition holds the string denoting the workflow_definition edge name in mutations.
	EdgeWorkflowDefinition = "workflow_definition"
	// EdgeWorkflowInstance holds the string denoting the workflow_instance edge name in mutations.
	EdgeWorkflowInstance = "workflow_instance"
	// EdgeCampaigns holds the string denoting the campaigns edge name in mutations.
	EdgeCampaigns = "campaigns"
	// EdgeNotificationTemplates holds the string denoting the notification_templates edge name in mutations.
	EdgeNotificationTemplates = "notification_templates"
	// Table holds the table name of the emailtemplate in the database.
	Table = "email_templates"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "email_templates"
	// OwnerInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OwnerInverseTable = "organizations"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "owner_id"
	// EmailBrandingTable is the table that holds the email_branding relation/edge.
	EmailBrandingTable = "email_templates"
	// EmailBrandingInverseTable is the table name for the EmailBranding entity.
	// It exists in this package in order to avoid circular dependency with the "emailbranding" package.
	EmailBrandingInverseTable = "email_brandings"
	// EmailBrandingColumn is the table column denoting the email_branding relation/edge.
	EmailBrandingColumn = "email_branding_id"
	// IntegrationTable is the table that holds the integration relation/edge.
	IntegrationTable = "email_templates"
	// IntegrationInverseTable is the table name for the Integration entity.
	// It exists in this package in order to avoid circular dependency with the "integration" package.
	IntegrationInverseTable = "integrations"
	// IntegrationColumn is the table column denoting the integration relation/edge.
	IntegrationColumn = "integration_id"
	// WorkflowDefinitionTable is the table that holds the workflow_definition relation/edge.
	WorkflowDefinitionTable = "email_templates"
	// WorkflowDefinitionInverseTable is the table name for the WorkflowDefinition entity.
	// It exists in this package in order to avoid circular dependency with the "workflowdefinition" package.
	WorkflowDefinitionInverseTable = "workflow_definitions"
	// WorkflowDefinitionColumn is the table column denoting the workflow_definition relation/edge.
	WorkflowDefinitionColumn = "workflow_definition_id"
	// WorkflowInstanceTable is the table that holds the workflow_instance relation/edge.
	WorkflowInstanceTable = "email_templates"
	// WorkflowInstanceInverseTable is the table name for the WorkflowInstance entity.
	// It exists in this package in order to avoid circular dependency with the "workflowinstance" package.
	WorkflowInstanceInverseTable = "workflow_instances"
	// WorkflowInstanceColumn is the table column denoting the workflow_instance relation/edge.
	WorkflowInstanceColumn = "workflow_instance_id"
	// CampaignsTable is the table that holds the campaigns relation/edge.
	CampaignsTable = "campaigns"
	// CampaignsInverseTable is the table name for the Campaign entity.
	// It exists in this package in order to avoid circular dependency with the "campaign" package.
	CampaignsInverseTable = "campaigns"
	// CampaignsColumn is the table column denoting the campaigns relation/edge.
	CampaignsColumn = "email_template_id"
	// NotificationTemplatesTable is the table that holds the notification_templates relation/edge.
	NotificationTemplatesTable = "notification_templates"
	// NotificationTemplatesInverseTable is the table name for the NotificationTemplate entity.
	// It exists in this package in order to avoid circular dependency with the "notificationtemplate" package.
	NotificationTemplatesInverseTable = "notification_templates"
	// NotificationTemplatesColumn is the table column denoting the notification_templates relation/edge.
	NotificationTemplatesColumn = "email_template_id"
)
View Source
const DefaultFormat enums.NotificationTemplateFormat = "HTML"

Variables

View Source
var (
	Hooks        [7]ent.Hook
	Interceptors [3]ent.Interceptor
	Policy       ent.Policy
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
	// OwnerIDValidator is a validator for the "owner_id" field. It is called by the builders before save.
	OwnerIDValidator func(string) error
	// DefaultSystemOwned holds the default value on creation for the "system_owned" field.
	DefaultSystemOwned bool
	// KeyValidator is a validator for the "key" field. It is called by the builders before save.
	KeyValidator func(string) error
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultLocale holds the default value on creation for the "locale" field.
	DefaultLocale string
	// DefaultActive holds the default value on creation for the "active" field.
	DefaultActive bool
	// DefaultVersion holds the default value on creation for the "version" field.
	DefaultVersion int
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/theopenlane/core/internal/ent/generated/runtime"

Columns holds all SQL columns for emailtemplate fields.

Functions

func Active

func Active(v bool) predicate.EmailTemplate

Active applies equality check predicate on the "active" field. It's identical to ActiveEQ.

func ActiveEQ

func ActiveEQ(v bool) predicate.EmailTemplate

ActiveEQ applies the EQ predicate on the "active" field.

func ActiveNEQ

func ActiveNEQ(v bool) predicate.EmailTemplate

ActiveNEQ applies the NEQ predicate on the "active" field.

func And

And groups predicates with the AND operator between them.

func BodyTemplate

func BodyTemplate(v string) predicate.EmailTemplate

BodyTemplate applies equality check predicate on the "body_template" field. It's identical to BodyTemplateEQ.

func BodyTemplateContains

func BodyTemplateContains(v string) predicate.EmailTemplate

BodyTemplateContains applies the Contains predicate on the "body_template" field.

func BodyTemplateContainsFold

func BodyTemplateContainsFold(v string) predicate.EmailTemplate

BodyTemplateContainsFold applies the ContainsFold predicate on the "body_template" field.

func BodyTemplateEQ

func BodyTemplateEQ(v string) predicate.EmailTemplate

BodyTemplateEQ applies the EQ predicate on the "body_template" field.

func BodyTemplateEqualFold

func BodyTemplateEqualFold(v string) predicate.EmailTemplate

BodyTemplateEqualFold applies the EqualFold predicate on the "body_template" field.

func BodyTemplateGT

func BodyTemplateGT(v string) predicate.EmailTemplate

BodyTemplateGT applies the GT predicate on the "body_template" field.

func BodyTemplateGTE

func BodyTemplateGTE(v string) predicate.EmailTemplate

BodyTemplateGTE applies the GTE predicate on the "body_template" field.

func BodyTemplateHasPrefix

func BodyTemplateHasPrefix(v string) predicate.EmailTemplate

BodyTemplateHasPrefix applies the HasPrefix predicate on the "body_template" field.

func BodyTemplateHasSuffix

func BodyTemplateHasSuffix(v string) predicate.EmailTemplate

BodyTemplateHasSuffix applies the HasSuffix predicate on the "body_template" field.

func BodyTemplateIn

func BodyTemplateIn(vs ...string) predicate.EmailTemplate

BodyTemplateIn applies the In predicate on the "body_template" field.

func BodyTemplateIsNil

func BodyTemplateIsNil() predicate.EmailTemplate

BodyTemplateIsNil applies the IsNil predicate on the "body_template" field.

func BodyTemplateLT

func BodyTemplateLT(v string) predicate.EmailTemplate

BodyTemplateLT applies the LT predicate on the "body_template" field.

func BodyTemplateLTE

func BodyTemplateLTE(v string) predicate.EmailTemplate

BodyTemplateLTE applies the LTE predicate on the "body_template" field.

func BodyTemplateNEQ

func BodyTemplateNEQ(v string) predicate.EmailTemplate

BodyTemplateNEQ applies the NEQ predicate on the "body_template" field.

func BodyTemplateNotIn

func BodyTemplateNotIn(vs ...string) predicate.EmailTemplate

BodyTemplateNotIn applies the NotIn predicate on the "body_template" field.

func BodyTemplateNotNil

func BodyTemplateNotNil() predicate.EmailTemplate

BodyTemplateNotNil applies the NotNil predicate on the "body_template" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.EmailTemplate

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.EmailTemplate

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.EmailTemplate

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.EmailTemplate

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.EmailTemplate

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtIsNil

func CreatedAtIsNil() predicate.EmailTemplate

CreatedAtIsNil applies the IsNil predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.EmailTemplate

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.EmailTemplate

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.EmailTemplate

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.EmailTemplate

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func CreatedAtNotNil

func CreatedAtNotNil() predicate.EmailTemplate

CreatedAtNotNil applies the NotNil predicate on the "created_at" field.

func CreatedBy

func CreatedBy(v string) predicate.EmailTemplate

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains

func CreatedByContains(v string) predicate.EmailTemplate

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.EmailTemplate

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ

func CreatedByEQ(v string) predicate.EmailTemplate

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.EmailTemplate

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT

func CreatedByGT(v string) predicate.EmailTemplate

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE

func CreatedByGTE(v string) predicate.EmailTemplate

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.EmailTemplate

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.EmailTemplate

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn

func CreatedByIn(vs ...string) predicate.EmailTemplate

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByIsNil

func CreatedByIsNil() predicate.EmailTemplate

CreatedByIsNil applies the IsNil predicate on the "created_by" field.

func CreatedByLT

func CreatedByLT(v string) predicate.EmailTemplate

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE

func CreatedByLTE(v string) predicate.EmailTemplate

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.EmailTemplate

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn

func CreatedByNotIn(vs ...string) predicate.EmailTemplate

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func CreatedByNotNil

func CreatedByNotNil() predicate.EmailTemplate

CreatedByNotNil applies the NotNil predicate on the "created_by" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.EmailTemplate

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.EmailTemplate

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.EmailTemplate

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.EmailTemplate

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.EmailTemplate

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.EmailTemplate

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.EmailTemplate

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.EmailTemplate

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.EmailTemplate

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.EmailTemplate

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.EmailTemplate

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func DeletedBy

func DeletedBy(v string) predicate.EmailTemplate

DeletedBy applies equality check predicate on the "deleted_by" field. It's identical to DeletedByEQ.

func DeletedByContains

func DeletedByContains(v string) predicate.EmailTemplate

DeletedByContains applies the Contains predicate on the "deleted_by" field.

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.EmailTemplate

DeletedByContainsFold applies the ContainsFold predicate on the "deleted_by" field.

func DeletedByEQ

func DeletedByEQ(v string) predicate.EmailTemplate

DeletedByEQ applies the EQ predicate on the "deleted_by" field.

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.EmailTemplate

DeletedByEqualFold applies the EqualFold predicate on the "deleted_by" field.

func DeletedByGT

func DeletedByGT(v string) predicate.EmailTemplate

DeletedByGT applies the GT predicate on the "deleted_by" field.

func DeletedByGTE

func DeletedByGTE(v string) predicate.EmailTemplate

DeletedByGTE applies the GTE predicate on the "deleted_by" field.

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.EmailTemplate

DeletedByHasPrefix applies the HasPrefix predicate on the "deleted_by" field.

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.EmailTemplate

DeletedByHasSuffix applies the HasSuffix predicate on the "deleted_by" field.

func DeletedByIn

func DeletedByIn(vs ...string) predicate.EmailTemplate

DeletedByIn applies the In predicate on the "deleted_by" field.

func DeletedByIsNil

func DeletedByIsNil() predicate.EmailTemplate

DeletedByIsNil applies the IsNil predicate on the "deleted_by" field.

func DeletedByLT

func DeletedByLT(v string) predicate.EmailTemplate

DeletedByLT applies the LT predicate on the "deleted_by" field.

func DeletedByLTE

func DeletedByLTE(v string) predicate.EmailTemplate

DeletedByLTE applies the LTE predicate on the "deleted_by" field.

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.EmailTemplate

DeletedByNEQ applies the NEQ predicate on the "deleted_by" field.

func DeletedByNotIn

func DeletedByNotIn(vs ...string) predicate.EmailTemplate

DeletedByNotIn applies the NotIn predicate on the "deleted_by" field.

func DeletedByNotNil

func DeletedByNotNil() predicate.EmailTemplate

DeletedByNotNil applies the NotNil predicate on the "deleted_by" field.

func Description

func Description(v string) predicate.EmailTemplate

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.EmailTemplate

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.EmailTemplate

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.EmailTemplate

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.EmailTemplate

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.EmailTemplate

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.EmailTemplate

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.EmailTemplate

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.EmailTemplate

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.EmailTemplate

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.EmailTemplate

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.EmailTemplate

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.EmailTemplate

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.EmailTemplate

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.EmailTemplate

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.EmailTemplate

DescriptionNotNil applies the NotNil predicate on the "description" field.

func EmailBrandingID

func EmailBrandingID(v string) predicate.EmailTemplate

EmailBrandingID applies equality check predicate on the "email_branding_id" field. It's identical to EmailBrandingIDEQ.

func EmailBrandingIDContains

func EmailBrandingIDContains(v string) predicate.EmailTemplate

EmailBrandingIDContains applies the Contains predicate on the "email_branding_id" field.

func EmailBrandingIDContainsFold

func EmailBrandingIDContainsFold(v string) predicate.EmailTemplate

EmailBrandingIDContainsFold applies the ContainsFold predicate on the "email_branding_id" field.

func EmailBrandingIDEQ

func EmailBrandingIDEQ(v string) predicate.EmailTemplate

EmailBrandingIDEQ applies the EQ predicate on the "email_branding_id" field.

func EmailBrandingIDEqualFold

func EmailBrandingIDEqualFold(v string) predicate.EmailTemplate

EmailBrandingIDEqualFold applies the EqualFold predicate on the "email_branding_id" field.

func EmailBrandingIDGT

func EmailBrandingIDGT(v string) predicate.EmailTemplate

EmailBrandingIDGT applies the GT predicate on the "email_branding_id" field.

func EmailBrandingIDGTE

func EmailBrandingIDGTE(v string) predicate.EmailTemplate

EmailBrandingIDGTE applies the GTE predicate on the "email_branding_id" field.

func EmailBrandingIDHasPrefix

func EmailBrandingIDHasPrefix(v string) predicate.EmailTemplate

EmailBrandingIDHasPrefix applies the HasPrefix predicate on the "email_branding_id" field.

func EmailBrandingIDHasSuffix

func EmailBrandingIDHasSuffix(v string) predicate.EmailTemplate

EmailBrandingIDHasSuffix applies the HasSuffix predicate on the "email_branding_id" field.

func EmailBrandingIDIn

func EmailBrandingIDIn(vs ...string) predicate.EmailTemplate

EmailBrandingIDIn applies the In predicate on the "email_branding_id" field.

func EmailBrandingIDIsNil

func EmailBrandingIDIsNil() predicate.EmailTemplate

EmailBrandingIDIsNil applies the IsNil predicate on the "email_branding_id" field.

func EmailBrandingIDLT

func EmailBrandingIDLT(v string) predicate.EmailTemplate

EmailBrandingIDLT applies the LT predicate on the "email_branding_id" field.

func EmailBrandingIDLTE

func EmailBrandingIDLTE(v string) predicate.EmailTemplate

EmailBrandingIDLTE applies the LTE predicate on the "email_branding_id" field.

func EmailBrandingIDNEQ

func EmailBrandingIDNEQ(v string) predicate.EmailTemplate

EmailBrandingIDNEQ applies the NEQ predicate on the "email_branding_id" field.

func EmailBrandingIDNotIn

func EmailBrandingIDNotIn(vs ...string) predicate.EmailTemplate

EmailBrandingIDNotIn applies the NotIn predicate on the "email_branding_id" field.

func EmailBrandingIDNotNil

func EmailBrandingIDNotNil() predicate.EmailTemplate

EmailBrandingIDNotNil applies the NotNil predicate on the "email_branding_id" field.

func FormatEQ

FormatEQ applies the EQ predicate on the "format" field.

func FormatIn

FormatIn applies the In predicate on the "format" field.

func FormatNEQ

FormatNEQ applies the NEQ predicate on the "format" field.

func FormatNotIn

FormatNotIn applies the NotIn predicate on the "format" field.

func FormatValidator

func FormatValidator(f enums.NotificationTemplateFormat) error

FormatValidator is a validator for the "format" field enum values. It is called by the builders before save.

func HasCampaigns

func HasCampaigns() predicate.EmailTemplate

HasCampaigns applies the HasEdge predicate on the "campaigns" edge.

func HasCampaignsWith

func HasCampaignsWith(preds ...predicate.Campaign) predicate.EmailTemplate

HasCampaignsWith applies the HasEdge predicate on the "campaigns" edge with a given conditions (other predicates).

func HasEmailBranding

func HasEmailBranding() predicate.EmailTemplate

HasEmailBranding applies the HasEdge predicate on the "email_branding" edge.

func HasEmailBrandingWith

func HasEmailBrandingWith(preds ...predicate.EmailBranding) predicate.EmailTemplate

HasEmailBrandingWith applies the HasEdge predicate on the "email_branding" edge with a given conditions (other predicates).

func HasIntegration

func HasIntegration() predicate.EmailTemplate

HasIntegration applies the HasEdge predicate on the "integration" edge.

func HasIntegrationWith

func HasIntegrationWith(preds ...predicate.Integration) predicate.EmailTemplate

HasIntegrationWith applies the HasEdge predicate on the "integration" edge with a given conditions (other predicates).

func HasNotificationTemplates

func HasNotificationTemplates() predicate.EmailTemplate

HasNotificationTemplates applies the HasEdge predicate on the "notification_templates" edge.

func HasNotificationTemplatesWith

func HasNotificationTemplatesWith(preds ...predicate.NotificationTemplate) predicate.EmailTemplate

HasNotificationTemplatesWith applies the HasEdge predicate on the "notification_templates" edge with a given conditions (other predicates).

func HasOwner

func HasOwner() predicate.EmailTemplate

HasOwner applies the HasEdge predicate on the "owner" edge.

func HasOwnerWith

func HasOwnerWith(preds ...predicate.Organization) predicate.EmailTemplate

HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).

func HasWorkflowDefinition

func HasWorkflowDefinition() predicate.EmailTemplate

HasWorkflowDefinition applies the HasEdge predicate on the "workflow_definition" edge.

func HasWorkflowDefinitionWith

func HasWorkflowDefinitionWith(preds ...predicate.WorkflowDefinition) predicate.EmailTemplate

HasWorkflowDefinitionWith applies the HasEdge predicate on the "workflow_definition" edge with a given conditions (other predicates).

func HasWorkflowInstance

func HasWorkflowInstance() predicate.EmailTemplate

HasWorkflowInstance applies the HasEdge predicate on the "workflow_instance" edge.

func HasWorkflowInstanceWith

func HasWorkflowInstanceWith(preds ...predicate.WorkflowInstance) predicate.EmailTemplate

HasWorkflowInstanceWith applies the HasEdge predicate on the "workflow_instance" edge with a given conditions (other predicates).

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.EmailTemplate

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.EmailTemplate

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.EmailTemplate

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.EmailTemplate

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.EmailTemplate

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.EmailTemplate

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.EmailTemplate

IDNotIn applies the NotIn predicate on the ID field.

func IntegrationID

func IntegrationID(v string) predicate.EmailTemplate

IntegrationID applies equality check predicate on the "integration_id" field. It's identical to IntegrationIDEQ.

func IntegrationIDContains

func IntegrationIDContains(v string) predicate.EmailTemplate

IntegrationIDContains applies the Contains predicate on the "integration_id" field.

func IntegrationIDContainsFold

func IntegrationIDContainsFold(v string) predicate.EmailTemplate

IntegrationIDContainsFold applies the ContainsFold predicate on the "integration_id" field.

func IntegrationIDEQ

func IntegrationIDEQ(v string) predicate.EmailTemplate

IntegrationIDEQ applies the EQ predicate on the "integration_id" field.

func IntegrationIDEqualFold

func IntegrationIDEqualFold(v string) predicate.EmailTemplate

IntegrationIDEqualFold applies the EqualFold predicate on the "integration_id" field.

func IntegrationIDGT

func IntegrationIDGT(v string) predicate.EmailTemplate

IntegrationIDGT applies the GT predicate on the "integration_id" field.

func IntegrationIDGTE

func IntegrationIDGTE(v string) predicate.EmailTemplate

IntegrationIDGTE applies the GTE predicate on the "integration_id" field.

func IntegrationIDHasPrefix

func IntegrationIDHasPrefix(v string) predicate.EmailTemplate

IntegrationIDHasPrefix applies the HasPrefix predicate on the "integration_id" field.

func IntegrationIDHasSuffix

func IntegrationIDHasSuffix(v string) predicate.EmailTemplate

IntegrationIDHasSuffix applies the HasSuffix predicate on the "integration_id" field.

func IntegrationIDIn

func IntegrationIDIn(vs ...string) predicate.EmailTemplate

IntegrationIDIn applies the In predicate on the "integration_id" field.

func IntegrationIDIsNil

func IntegrationIDIsNil() predicate.EmailTemplate

IntegrationIDIsNil applies the IsNil predicate on the "integration_id" field.

func IntegrationIDLT

func IntegrationIDLT(v string) predicate.EmailTemplate

IntegrationIDLT applies the LT predicate on the "integration_id" field.

func IntegrationIDLTE

func IntegrationIDLTE(v string) predicate.EmailTemplate

IntegrationIDLTE applies the LTE predicate on the "integration_id" field.

func IntegrationIDNEQ

func IntegrationIDNEQ(v string) predicate.EmailTemplate

IntegrationIDNEQ applies the NEQ predicate on the "integration_id" field.

func IntegrationIDNotIn

func IntegrationIDNotIn(vs ...string) predicate.EmailTemplate

IntegrationIDNotIn applies the NotIn predicate on the "integration_id" field.

func IntegrationIDNotNil

func IntegrationIDNotNil() predicate.EmailTemplate

IntegrationIDNotNil applies the NotNil predicate on the "integration_id" field.

func InternalNotes

func InternalNotes(v string) predicate.EmailTemplate

InternalNotes applies equality check predicate on the "internal_notes" field. It's identical to InternalNotesEQ.

func InternalNotesContains

func InternalNotesContains(v string) predicate.EmailTemplate

InternalNotesContains applies the Contains predicate on the "internal_notes" field.

func InternalNotesContainsFold

func InternalNotesContainsFold(v string) predicate.EmailTemplate

InternalNotesContainsFold applies the ContainsFold predicate on the "internal_notes" field.

func InternalNotesEQ

func InternalNotesEQ(v string) predicate.EmailTemplate

InternalNotesEQ applies the EQ predicate on the "internal_notes" field.

func InternalNotesEqualFold

func InternalNotesEqualFold(v string) predicate.EmailTemplate

InternalNotesEqualFold applies the EqualFold predicate on the "internal_notes" field.

func InternalNotesGT

func InternalNotesGT(v string) predicate.EmailTemplate

InternalNotesGT applies the GT predicate on the "internal_notes" field.

func InternalNotesGTE

func InternalNotesGTE(v string) predicate.EmailTemplate

InternalNotesGTE applies the GTE predicate on the "internal_notes" field.

func InternalNotesHasPrefix

func InternalNotesHasPrefix(v string) predicate.EmailTemplate

InternalNotesHasPrefix applies the HasPrefix predicate on the "internal_notes" field.

func InternalNotesHasSuffix

func InternalNotesHasSuffix(v string) predicate.EmailTemplate

InternalNotesHasSuffix applies the HasSuffix predicate on the "internal_notes" field.

func InternalNotesIn

func InternalNotesIn(vs ...string) predicate.EmailTemplate

InternalNotesIn applies the In predicate on the "internal_notes" field.

func InternalNotesIsNil

func InternalNotesIsNil() predicate.EmailTemplate

InternalNotesIsNil applies the IsNil predicate on the "internal_notes" field.

func InternalNotesLT

func InternalNotesLT(v string) predicate.EmailTemplate

InternalNotesLT applies the LT predicate on the "internal_notes" field.

func InternalNotesLTE

func InternalNotesLTE(v string) predicate.EmailTemplate

InternalNotesLTE applies the LTE predicate on the "internal_notes" field.

func InternalNotesNEQ

func InternalNotesNEQ(v string) predicate.EmailTemplate

InternalNotesNEQ applies the NEQ predicate on the "internal_notes" field.

func InternalNotesNotIn

func InternalNotesNotIn(vs ...string) predicate.EmailTemplate

InternalNotesNotIn applies the NotIn predicate on the "internal_notes" field.

func InternalNotesNotNil

func InternalNotesNotNil() predicate.EmailTemplate

InternalNotesNotNil applies the NotNil predicate on the "internal_notes" field.

func JsonconfigIsNil

func JsonconfigIsNil() predicate.EmailTemplate

JsonconfigIsNil applies the IsNil predicate on the "jsonconfig" field.

func JsonconfigNotNil

func JsonconfigNotNil() predicate.EmailTemplate

JsonconfigNotNil applies the NotNil predicate on the "jsonconfig" field.

func Key

Key applies equality check predicate on the "key" field. It's identical to KeyEQ.

func KeyContains

func KeyContains(v string) predicate.EmailTemplate

KeyContains applies the Contains predicate on the "key" field.

func KeyContainsFold

func KeyContainsFold(v string) predicate.EmailTemplate

KeyContainsFold applies the ContainsFold predicate on the "key" field.

func KeyEQ

KeyEQ applies the EQ predicate on the "key" field.

func KeyEqualFold

func KeyEqualFold(v string) predicate.EmailTemplate

KeyEqualFold applies the EqualFold predicate on the "key" field.

func KeyGT

KeyGT applies the GT predicate on the "key" field.

func KeyGTE

func KeyGTE(v string) predicate.EmailTemplate

KeyGTE applies the GTE predicate on the "key" field.

func KeyHasPrefix

func KeyHasPrefix(v string) predicate.EmailTemplate

KeyHasPrefix applies the HasPrefix predicate on the "key" field.

func KeyHasSuffix

func KeyHasSuffix(v string) predicate.EmailTemplate

KeyHasSuffix applies the HasSuffix predicate on the "key" field.

func KeyIn

func KeyIn(vs ...string) predicate.EmailTemplate

KeyIn applies the In predicate on the "key" field.

func KeyLT

KeyLT applies the LT predicate on the "key" field.

func KeyLTE

func KeyLTE(v string) predicate.EmailTemplate

KeyLTE applies the LTE predicate on the "key" field.

func KeyNEQ

func KeyNEQ(v string) predicate.EmailTemplate

KeyNEQ applies the NEQ predicate on the "key" field.

func KeyNotIn

func KeyNotIn(vs ...string) predicate.EmailTemplate

KeyNotIn applies the NotIn predicate on the "key" field.

func Locale

func Locale(v string) predicate.EmailTemplate

Locale applies equality check predicate on the "locale" field. It's identical to LocaleEQ.

func LocaleContains

func LocaleContains(v string) predicate.EmailTemplate

LocaleContains applies the Contains predicate on the "locale" field.

func LocaleContainsFold

func LocaleContainsFold(v string) predicate.EmailTemplate

LocaleContainsFold applies the ContainsFold predicate on the "locale" field.

func LocaleEQ

func LocaleEQ(v string) predicate.EmailTemplate

LocaleEQ applies the EQ predicate on the "locale" field.

func LocaleEqualFold

func LocaleEqualFold(v string) predicate.EmailTemplate

LocaleEqualFold applies the EqualFold predicate on the "locale" field.

func LocaleGT

func LocaleGT(v string) predicate.EmailTemplate

LocaleGT applies the GT predicate on the "locale" field.

func LocaleGTE

func LocaleGTE(v string) predicate.EmailTemplate

LocaleGTE applies the GTE predicate on the "locale" field.

func LocaleHasPrefix

func LocaleHasPrefix(v string) predicate.EmailTemplate

LocaleHasPrefix applies the HasPrefix predicate on the "locale" field.

func LocaleHasSuffix

func LocaleHasSuffix(v string) predicate.EmailTemplate

LocaleHasSuffix applies the HasSuffix predicate on the "locale" field.

func LocaleIn

func LocaleIn(vs ...string) predicate.EmailTemplate

LocaleIn applies the In predicate on the "locale" field.

func LocaleLT

func LocaleLT(v string) predicate.EmailTemplate

LocaleLT applies the LT predicate on the "locale" field.

func LocaleLTE

func LocaleLTE(v string) predicate.EmailTemplate

LocaleLTE applies the LTE predicate on the "locale" field.

func LocaleNEQ

func LocaleNEQ(v string) predicate.EmailTemplate

LocaleNEQ applies the NEQ predicate on the "locale" field.

func LocaleNotIn

func LocaleNotIn(vs ...string) predicate.EmailTemplate

LocaleNotIn applies the NotIn predicate on the "locale" field.

func MetadataIsNil

func MetadataIsNil() predicate.EmailTemplate

MetadataIsNil applies the IsNil predicate on the "metadata" field.

func MetadataNotNil

func MetadataNotNil() predicate.EmailTemplate

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Name

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.EmailTemplate

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.EmailTemplate

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.EmailTemplate

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.EmailTemplate

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.EmailTemplate

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.EmailTemplate

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.EmailTemplate

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.EmailTemplate

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.EmailTemplate

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.EmailTemplate

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.EmailTemplate

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.EmailTemplate

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.EmailTemplate

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v string) predicate.EmailTemplate

OwnerID applies equality check predicate on the "owner_id" field. It's identical to OwnerIDEQ.

func OwnerIDContains

func OwnerIDContains(v string) predicate.EmailTemplate

OwnerIDContains applies the Contains predicate on the "owner_id" field.

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.EmailTemplate

OwnerIDContainsFold applies the ContainsFold predicate on the "owner_id" field.

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.EmailTemplate

OwnerIDEQ applies the EQ predicate on the "owner_id" field.

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.EmailTemplate

OwnerIDEqualFold applies the EqualFold predicate on the "owner_id" field.

func OwnerIDGT

func OwnerIDGT(v string) predicate.EmailTemplate

OwnerIDGT applies the GT predicate on the "owner_id" field.

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.EmailTemplate

OwnerIDGTE applies the GTE predicate on the "owner_id" field.

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.EmailTemplate

OwnerIDHasPrefix applies the HasPrefix predicate on the "owner_id" field.

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.EmailTemplate

OwnerIDHasSuffix applies the HasSuffix predicate on the "owner_id" field.

func OwnerIDIn

func OwnerIDIn(vs ...string) predicate.EmailTemplate

OwnerIDIn applies the In predicate on the "owner_id" field.

func OwnerIDIsNil

func OwnerIDIsNil() predicate.EmailTemplate

OwnerIDIsNil applies the IsNil predicate on the "owner_id" field.

func OwnerIDLT

func OwnerIDLT(v string) predicate.EmailTemplate

OwnerIDLT applies the LT predicate on the "owner_id" field.

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.EmailTemplate

OwnerIDLTE applies the LTE predicate on the "owner_id" field.

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.EmailTemplate

OwnerIDNEQ applies the NEQ predicate on the "owner_id" field.

func OwnerIDNotIn

func OwnerIDNotIn(vs ...string) predicate.EmailTemplate

OwnerIDNotIn applies the NotIn predicate on the "owner_id" field.

func OwnerIDNotNil

func OwnerIDNotNil() predicate.EmailTemplate

OwnerIDNotNil applies the NotNil predicate on the "owner_id" field.

func PreheaderTemplate

func PreheaderTemplate(v string) predicate.EmailTemplate

PreheaderTemplate applies equality check predicate on the "preheader_template" field. It's identical to PreheaderTemplateEQ.

func PreheaderTemplateContains

func PreheaderTemplateContains(v string) predicate.EmailTemplate

PreheaderTemplateContains applies the Contains predicate on the "preheader_template" field.

func PreheaderTemplateContainsFold

func PreheaderTemplateContainsFold(v string) predicate.EmailTemplate

PreheaderTemplateContainsFold applies the ContainsFold predicate on the "preheader_template" field.

func PreheaderTemplateEQ

func PreheaderTemplateEQ(v string) predicate.EmailTemplate

PreheaderTemplateEQ applies the EQ predicate on the "preheader_template" field.

func PreheaderTemplateEqualFold

func PreheaderTemplateEqualFold(v string) predicate.EmailTemplate

PreheaderTemplateEqualFold applies the EqualFold predicate on the "preheader_template" field.

func PreheaderTemplateGT

func PreheaderTemplateGT(v string) predicate.EmailTemplate

PreheaderTemplateGT applies the GT predicate on the "preheader_template" field.

func PreheaderTemplateGTE

func PreheaderTemplateGTE(v string) predicate.EmailTemplate

PreheaderTemplateGTE applies the GTE predicate on the "preheader_template" field.

func PreheaderTemplateHasPrefix

func PreheaderTemplateHasPrefix(v string) predicate.EmailTemplate

PreheaderTemplateHasPrefix applies the HasPrefix predicate on the "preheader_template" field.

func PreheaderTemplateHasSuffix

func PreheaderTemplateHasSuffix(v string) predicate.EmailTemplate

PreheaderTemplateHasSuffix applies the HasSuffix predicate on the "preheader_template" field.

func PreheaderTemplateIn

func PreheaderTemplateIn(vs ...string) predicate.EmailTemplate

PreheaderTemplateIn applies the In predicate on the "preheader_template" field.

func PreheaderTemplateIsNil

func PreheaderTemplateIsNil() predicate.EmailTemplate

PreheaderTemplateIsNil applies the IsNil predicate on the "preheader_template" field.

func PreheaderTemplateLT

func PreheaderTemplateLT(v string) predicate.EmailTemplate

PreheaderTemplateLT applies the LT predicate on the "preheader_template" field.

func PreheaderTemplateLTE

func PreheaderTemplateLTE(v string) predicate.EmailTemplate

PreheaderTemplateLTE applies the LTE predicate on the "preheader_template" field.

func PreheaderTemplateNEQ

func PreheaderTemplateNEQ(v string) predicate.EmailTemplate

PreheaderTemplateNEQ applies the NEQ predicate on the "preheader_template" field.

func PreheaderTemplateNotIn

func PreheaderTemplateNotIn(vs ...string) predicate.EmailTemplate

PreheaderTemplateNotIn applies the NotIn predicate on the "preheader_template" field.

func PreheaderTemplateNotNil

func PreheaderTemplateNotNil() predicate.EmailTemplate

PreheaderTemplateNotNil applies the NotNil predicate on the "preheader_template" field.

func SubjectTemplate

func SubjectTemplate(v string) predicate.EmailTemplate

SubjectTemplate applies equality check predicate on the "subject_template" field. It's identical to SubjectTemplateEQ.

func SubjectTemplateContains

func SubjectTemplateContains(v string) predicate.EmailTemplate

SubjectTemplateContains applies the Contains predicate on the "subject_template" field.

func SubjectTemplateContainsFold

func SubjectTemplateContainsFold(v string) predicate.EmailTemplate

SubjectTemplateContainsFold applies the ContainsFold predicate on the "subject_template" field.

func SubjectTemplateEQ

func SubjectTemplateEQ(v string) predicate.EmailTemplate

SubjectTemplateEQ applies the EQ predicate on the "subject_template" field.

func SubjectTemplateEqualFold

func SubjectTemplateEqualFold(v string) predicate.EmailTemplate

SubjectTemplateEqualFold applies the EqualFold predicate on the "subject_template" field.

func SubjectTemplateGT

func SubjectTemplateGT(v string) predicate.EmailTemplate

SubjectTemplateGT applies the GT predicate on the "subject_template" field.

func SubjectTemplateGTE

func SubjectTemplateGTE(v string) predicate.EmailTemplate

SubjectTemplateGTE applies the GTE predicate on the "subject_template" field.

func SubjectTemplateHasPrefix

func SubjectTemplateHasPrefix(v string) predicate.EmailTemplate

SubjectTemplateHasPrefix applies the HasPrefix predicate on the "subject_template" field.

func SubjectTemplateHasSuffix

func SubjectTemplateHasSuffix(v string) predicate.EmailTemplate

SubjectTemplateHasSuffix applies the HasSuffix predicate on the "subject_template" field.

func SubjectTemplateIn

func SubjectTemplateIn(vs ...string) predicate.EmailTemplate

SubjectTemplateIn applies the In predicate on the "subject_template" field.

func SubjectTemplateIsNil

func SubjectTemplateIsNil() predicate.EmailTemplate

SubjectTemplateIsNil applies the IsNil predicate on the "subject_template" field.

func SubjectTemplateLT

func SubjectTemplateLT(v string) predicate.EmailTemplate

SubjectTemplateLT applies the LT predicate on the "subject_template" field.

func SubjectTemplateLTE

func SubjectTemplateLTE(v string) predicate.EmailTemplate

SubjectTemplateLTE applies the LTE predicate on the "subject_template" field.

func SubjectTemplateNEQ

func SubjectTemplateNEQ(v string) predicate.EmailTemplate

SubjectTemplateNEQ applies the NEQ predicate on the "subject_template" field.

func SubjectTemplateNotIn

func SubjectTemplateNotIn(vs ...string) predicate.EmailTemplate

SubjectTemplateNotIn applies the NotIn predicate on the "subject_template" field.

func SubjectTemplateNotNil

func SubjectTemplateNotNil() predicate.EmailTemplate

SubjectTemplateNotNil applies the NotNil predicate on the "subject_template" field.

func SystemInternalID

func SystemInternalID(v string) predicate.EmailTemplate

SystemInternalID applies equality check predicate on the "system_internal_id" field. It's identical to SystemInternalIDEQ.

func SystemInternalIDContains

func SystemInternalIDContains(v string) predicate.EmailTemplate

SystemInternalIDContains applies the Contains predicate on the "system_internal_id" field.

func SystemInternalIDContainsFold

func SystemInternalIDContainsFold(v string) predicate.EmailTemplate

SystemInternalIDContainsFold applies the ContainsFold predicate on the "system_internal_id" field.

func SystemInternalIDEQ

func SystemInternalIDEQ(v string) predicate.EmailTemplate

SystemInternalIDEQ applies the EQ predicate on the "system_internal_id" field.

func SystemInternalIDEqualFold

func SystemInternalIDEqualFold(v string) predicate.EmailTemplate

SystemInternalIDEqualFold applies the EqualFold predicate on the "system_internal_id" field.

func SystemInternalIDGT

func SystemInternalIDGT(v string) predicate.EmailTemplate

SystemInternalIDGT applies the GT predicate on the "system_internal_id" field.

func SystemInternalIDGTE

func SystemInternalIDGTE(v string) predicate.EmailTemplate

SystemInternalIDGTE applies the GTE predicate on the "system_internal_id" field.

func SystemInternalIDHasPrefix

func SystemInternalIDHasPrefix(v string) predicate.EmailTemplate

SystemInternalIDHasPrefix applies the HasPrefix predicate on the "system_internal_id" field.

func SystemInternalIDHasSuffix

func SystemInternalIDHasSuffix(v string) predicate.EmailTemplate

SystemInternalIDHasSuffix applies the HasSuffix predicate on the "system_internal_id" field.

func SystemInternalIDIn

func SystemInternalIDIn(vs ...string) predicate.EmailTemplate

SystemInternalIDIn applies the In predicate on the "system_internal_id" field.

func SystemInternalIDIsNil

func SystemInternalIDIsNil() predicate.EmailTemplate

SystemInternalIDIsNil applies the IsNil predicate on the "system_internal_id" field.

func SystemInternalIDLT

func SystemInternalIDLT(v string) predicate.EmailTemplate

SystemInternalIDLT applies the LT predicate on the "system_internal_id" field.

func SystemInternalIDLTE

func SystemInternalIDLTE(v string) predicate.EmailTemplate

SystemInternalIDLTE applies the LTE predicate on the "system_internal_id" field.

func SystemInternalIDNEQ

func SystemInternalIDNEQ(v string) predicate.EmailTemplate

SystemInternalIDNEQ applies the NEQ predicate on the "system_internal_id" field.

func SystemInternalIDNotIn

func SystemInternalIDNotIn(vs ...string) predicate.EmailTemplate

SystemInternalIDNotIn applies the NotIn predicate on the "system_internal_id" field.

func SystemInternalIDNotNil

func SystemInternalIDNotNil() predicate.EmailTemplate

SystemInternalIDNotNil applies the NotNil predicate on the "system_internal_id" field.

func SystemOwned

func SystemOwned(v bool) predicate.EmailTemplate

SystemOwned applies equality check predicate on the "system_owned" field. It's identical to SystemOwnedEQ.

func SystemOwnedEQ

func SystemOwnedEQ(v bool) predicate.EmailTemplate

SystemOwnedEQ applies the EQ predicate on the "system_owned" field.

func SystemOwnedIsNil

func SystemOwnedIsNil() predicate.EmailTemplate

SystemOwnedIsNil applies the IsNil predicate on the "system_owned" field.

func SystemOwnedNEQ

func SystemOwnedNEQ(v bool) predicate.EmailTemplate

SystemOwnedNEQ applies the NEQ predicate on the "system_owned" field.

func SystemOwnedNotNil

func SystemOwnedNotNil() predicate.EmailTemplate

SystemOwnedNotNil applies the NotNil predicate on the "system_owned" field.

func TextTemplate

func TextTemplate(v string) predicate.EmailTemplate

TextTemplate applies equality check predicate on the "text_template" field. It's identical to TextTemplateEQ.

func TextTemplateContains

func TextTemplateContains(v string) predicate.EmailTemplate

TextTemplateContains applies the Contains predicate on the "text_template" field.

func TextTemplateContainsFold

func TextTemplateContainsFold(v string) predicate.EmailTemplate

TextTemplateContainsFold applies the ContainsFold predicate on the "text_template" field.

func TextTemplateEQ

func TextTemplateEQ(v string) predicate.EmailTemplate

TextTemplateEQ applies the EQ predicate on the "text_template" field.

func TextTemplateEqualFold

func TextTemplateEqualFold(v string) predicate.EmailTemplate

TextTemplateEqualFold applies the EqualFold predicate on the "text_template" field.

func TextTemplateGT

func TextTemplateGT(v string) predicate.EmailTemplate

TextTemplateGT applies the GT predicate on the "text_template" field.

func TextTemplateGTE

func TextTemplateGTE(v string) predicate.EmailTemplate

TextTemplateGTE applies the GTE predicate on the "text_template" field.

func TextTemplateHasPrefix

func TextTemplateHasPrefix(v string) predicate.EmailTemplate

TextTemplateHasPrefix applies the HasPrefix predicate on the "text_template" field.

func TextTemplateHasSuffix

func TextTemplateHasSuffix(v string) predicate.EmailTemplate

TextTemplateHasSuffix applies the HasSuffix predicate on the "text_template" field.

func TextTemplateIn

func TextTemplateIn(vs ...string) predicate.EmailTemplate

TextTemplateIn applies the In predicate on the "text_template" field.

func TextTemplateIsNil

func TextTemplateIsNil() predicate.EmailTemplate

TextTemplateIsNil applies the IsNil predicate on the "text_template" field.

func TextTemplateLT

func TextTemplateLT(v string) predicate.EmailTemplate

TextTemplateLT applies the LT predicate on the "text_template" field.

func TextTemplateLTE

func TextTemplateLTE(v string) predicate.EmailTemplate

TextTemplateLTE applies the LTE predicate on the "text_template" field.

func TextTemplateNEQ

func TextTemplateNEQ(v string) predicate.EmailTemplate

TextTemplateNEQ applies the NEQ predicate on the "text_template" field.

func TextTemplateNotIn

func TextTemplateNotIn(vs ...string) predicate.EmailTemplate

TextTemplateNotIn applies the NotIn predicate on the "text_template" field.

func TextTemplateNotNil

func TextTemplateNotNil() predicate.EmailTemplate

TextTemplateNotNil applies the NotNil predicate on the "text_template" field.

func UischemaIsNil

func UischemaIsNil() predicate.EmailTemplate

UischemaIsNil applies the IsNil predicate on the "uischema" field.

func UischemaNotNil

func UischemaNotNil() predicate.EmailTemplate

UischemaNotNil applies the NotNil predicate on the "uischema" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.EmailTemplate

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.EmailTemplate

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.EmailTemplate

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.EmailTemplate

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.EmailTemplate

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.EmailTemplate

UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.EmailTemplate

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.EmailTemplate

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.EmailTemplate

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.EmailTemplate

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.EmailTemplate

UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.

func UpdatedBy

func UpdatedBy(v string) predicate.EmailTemplate

UpdatedBy applies equality check predicate on the "updated_by" field. It's identical to UpdatedByEQ.

func UpdatedByContains

func UpdatedByContains(v string) predicate.EmailTemplate

UpdatedByContains applies the Contains predicate on the "updated_by" field.

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.EmailTemplate

UpdatedByContainsFold applies the ContainsFold predicate on the "updated_by" field.

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.EmailTemplate

UpdatedByEQ applies the EQ predicate on the "updated_by" field.

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.EmailTemplate

UpdatedByEqualFold applies the EqualFold predicate on the "updated_by" field.

func UpdatedByGT

func UpdatedByGT(v string) predicate.EmailTemplate

UpdatedByGT applies the GT predicate on the "updated_by" field.

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.EmailTemplate

UpdatedByGTE applies the GTE predicate on the "updated_by" field.

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.EmailTemplate

UpdatedByHasPrefix applies the HasPrefix predicate on the "updated_by" field.

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.EmailTemplate

UpdatedByHasSuffix applies the HasSuffix predicate on the "updated_by" field.

func UpdatedByIn

func UpdatedByIn(vs ...string) predicate.EmailTemplate

UpdatedByIn applies the In predicate on the "updated_by" field.

func UpdatedByIsNil

func UpdatedByIsNil() predicate.EmailTemplate

UpdatedByIsNil applies the IsNil predicate on the "updated_by" field.

func UpdatedByLT

func UpdatedByLT(v string) predicate.EmailTemplate

UpdatedByLT applies the LT predicate on the "updated_by" field.

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.EmailTemplate

UpdatedByLTE applies the LTE predicate on the "updated_by" field.

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.EmailTemplate

UpdatedByNEQ applies the NEQ predicate on the "updated_by" field.

func UpdatedByNotIn

func UpdatedByNotIn(vs ...string) predicate.EmailTemplate

UpdatedByNotIn applies the NotIn predicate on the "updated_by" field.

func UpdatedByNotNil

func UpdatedByNotNil() predicate.EmailTemplate

UpdatedByNotNil applies the NotNil predicate on the "updated_by" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

func Version

func Version(v int) predicate.EmailTemplate

Version applies equality check predicate on the "version" field. It's identical to VersionEQ.

func VersionEQ

func VersionEQ(v int) predicate.EmailTemplate

VersionEQ applies the EQ predicate on the "version" field.

func VersionGT

func VersionGT(v int) predicate.EmailTemplate

VersionGT applies the GT predicate on the "version" field.

func VersionGTE

func VersionGTE(v int) predicate.EmailTemplate

VersionGTE applies the GTE predicate on the "version" field.

func VersionIn

func VersionIn(vs ...int) predicate.EmailTemplate

VersionIn applies the In predicate on the "version" field.

func VersionLT

func VersionLT(v int) predicate.EmailTemplate

VersionLT applies the LT predicate on the "version" field.

func VersionLTE

func VersionLTE(v int) predicate.EmailTemplate

VersionLTE applies the LTE predicate on the "version" field.

func VersionNEQ

func VersionNEQ(v int) predicate.EmailTemplate

VersionNEQ applies the NEQ predicate on the "version" field.

func VersionNotIn

func VersionNotIn(vs ...int) predicate.EmailTemplate

VersionNotIn applies the NotIn predicate on the "version" field.

func WorkflowDefinitionID

func WorkflowDefinitionID(v string) predicate.EmailTemplate

WorkflowDefinitionID applies equality check predicate on the "workflow_definition_id" field. It's identical to WorkflowDefinitionIDEQ.

func WorkflowDefinitionIDContains

func WorkflowDefinitionIDContains(v string) predicate.EmailTemplate

WorkflowDefinitionIDContains applies the Contains predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDContainsFold

func WorkflowDefinitionIDContainsFold(v string) predicate.EmailTemplate

WorkflowDefinitionIDContainsFold applies the ContainsFold predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDEQ

func WorkflowDefinitionIDEQ(v string) predicate.EmailTemplate

WorkflowDefinitionIDEQ applies the EQ predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDEqualFold

func WorkflowDefinitionIDEqualFold(v string) predicate.EmailTemplate

WorkflowDefinitionIDEqualFold applies the EqualFold predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDGT

func WorkflowDefinitionIDGT(v string) predicate.EmailTemplate

WorkflowDefinitionIDGT applies the GT predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDGTE

func WorkflowDefinitionIDGTE(v string) predicate.EmailTemplate

WorkflowDefinitionIDGTE applies the GTE predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDHasPrefix

func WorkflowDefinitionIDHasPrefix(v string) predicate.EmailTemplate

WorkflowDefinitionIDHasPrefix applies the HasPrefix predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDHasSuffix

func WorkflowDefinitionIDHasSuffix(v string) predicate.EmailTemplate

WorkflowDefinitionIDHasSuffix applies the HasSuffix predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDIn

func WorkflowDefinitionIDIn(vs ...string) predicate.EmailTemplate

WorkflowDefinitionIDIn applies the In predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDIsNil

func WorkflowDefinitionIDIsNil() predicate.EmailTemplate

WorkflowDefinitionIDIsNil applies the IsNil predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDLT

func WorkflowDefinitionIDLT(v string) predicate.EmailTemplate

WorkflowDefinitionIDLT applies the LT predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDLTE

func WorkflowDefinitionIDLTE(v string) predicate.EmailTemplate

WorkflowDefinitionIDLTE applies the LTE predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDNEQ

func WorkflowDefinitionIDNEQ(v string) predicate.EmailTemplate

WorkflowDefinitionIDNEQ applies the NEQ predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDNotIn

func WorkflowDefinitionIDNotIn(vs ...string) predicate.EmailTemplate

WorkflowDefinitionIDNotIn applies the NotIn predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDNotNil

func WorkflowDefinitionIDNotNil() predicate.EmailTemplate

WorkflowDefinitionIDNotNil applies the NotNil predicate on the "workflow_definition_id" field.

func WorkflowInstanceID

func WorkflowInstanceID(v string) predicate.EmailTemplate

WorkflowInstanceID applies equality check predicate on the "workflow_instance_id" field. It's identical to WorkflowInstanceIDEQ.

func WorkflowInstanceIDContains

func WorkflowInstanceIDContains(v string) predicate.EmailTemplate

WorkflowInstanceIDContains applies the Contains predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDContainsFold

func WorkflowInstanceIDContainsFold(v string) predicate.EmailTemplate

WorkflowInstanceIDContainsFold applies the ContainsFold predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDEQ

func WorkflowInstanceIDEQ(v string) predicate.EmailTemplate

WorkflowInstanceIDEQ applies the EQ predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDEqualFold

func WorkflowInstanceIDEqualFold(v string) predicate.EmailTemplate

WorkflowInstanceIDEqualFold applies the EqualFold predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDGT

func WorkflowInstanceIDGT(v string) predicate.EmailTemplate

WorkflowInstanceIDGT applies the GT predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDGTE

func WorkflowInstanceIDGTE(v string) predicate.EmailTemplate

WorkflowInstanceIDGTE applies the GTE predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDHasPrefix

func WorkflowInstanceIDHasPrefix(v string) predicate.EmailTemplate

WorkflowInstanceIDHasPrefix applies the HasPrefix predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDHasSuffix

func WorkflowInstanceIDHasSuffix(v string) predicate.EmailTemplate

WorkflowInstanceIDHasSuffix applies the HasSuffix predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDIn

func WorkflowInstanceIDIn(vs ...string) predicate.EmailTemplate

WorkflowInstanceIDIn applies the In predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDIsNil

func WorkflowInstanceIDIsNil() predicate.EmailTemplate

WorkflowInstanceIDIsNil applies the IsNil predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDLT

func WorkflowInstanceIDLT(v string) predicate.EmailTemplate

WorkflowInstanceIDLT applies the LT predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDLTE

func WorkflowInstanceIDLTE(v string) predicate.EmailTemplate

WorkflowInstanceIDLTE applies the LTE predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDNEQ

func WorkflowInstanceIDNEQ(v string) predicate.EmailTemplate

WorkflowInstanceIDNEQ applies the NEQ predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDNotIn

func WorkflowInstanceIDNotIn(vs ...string) predicate.EmailTemplate

WorkflowInstanceIDNotIn applies the NotIn predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDNotNil

func WorkflowInstanceIDNotNil() predicate.EmailTemplate

WorkflowInstanceIDNotNil applies the NotNil predicate on the "workflow_instance_id" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the EmailTemplate queries.

func ByActive

func ByActive(opts ...sql.OrderTermOption) OrderOption

ByActive orders the results by the active field.

func ByBodyTemplate

func ByBodyTemplate(opts ...sql.OrderTermOption) OrderOption

ByBodyTemplate orders the results by the body_template field.

func ByCampaigns

func ByCampaigns(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByCampaigns orders the results by campaigns terms.

func ByCampaignsCount

func ByCampaignsCount(opts ...sql.OrderTermOption) OrderOption

ByCampaignsCount orders the results by campaigns count.

func ByCreatedAt

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy

func ByCreatedBy(opts ...sql.OrderTermOption) OrderOption

ByCreatedBy orders the results by the created_by field.

func ByDeletedAt

func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption

ByDeletedAt orders the results by the deleted_at field.

func ByDeletedBy

func ByDeletedBy(opts ...sql.OrderTermOption) OrderOption

ByDeletedBy orders the results by the deleted_by field.

func ByDescription

func ByDescription(opts ...sql.OrderTermOption) OrderOption

ByDescription orders the results by the description field.

func ByEmailBrandingField

func ByEmailBrandingField(field string, opts ...sql.OrderTermOption) OrderOption

ByEmailBrandingField orders the results by email_branding field.

func ByEmailBrandingID

func ByEmailBrandingID(opts ...sql.OrderTermOption) OrderOption

ByEmailBrandingID orders the results by the email_branding_id field.

func ByFormat

func ByFormat(opts ...sql.OrderTermOption) OrderOption

ByFormat orders the results by the format field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByIntegrationField

func ByIntegrationField(field string, opts ...sql.OrderTermOption) OrderOption

ByIntegrationField orders the results by integration field.

func ByIntegrationID

func ByIntegrationID(opts ...sql.OrderTermOption) OrderOption

ByIntegrationID orders the results by the integration_id field.

func ByInternalNotes

func ByInternalNotes(opts ...sql.OrderTermOption) OrderOption

ByInternalNotes orders the results by the internal_notes field.

func ByKey

func ByKey(opts ...sql.OrderTermOption) OrderOption

ByKey orders the results by the key field.

func ByLocale

func ByLocale(opts ...sql.OrderTermOption) OrderOption

ByLocale orders the results by the locale field.

func ByName

func ByName(opts ...sql.OrderTermOption) OrderOption

ByName orders the results by the name field.

func ByNotificationTemplates

func ByNotificationTemplates(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByNotificationTemplates orders the results by notification_templates terms.

func ByNotificationTemplatesCount

func ByNotificationTemplatesCount(opts ...sql.OrderTermOption) OrderOption

ByNotificationTemplatesCount orders the results by notification_templates count.

func ByOwnerField

func ByOwnerField(field string, opts ...sql.OrderTermOption) OrderOption

ByOwnerField orders the results by owner field.

func ByOwnerID

func ByOwnerID(opts ...sql.OrderTermOption) OrderOption

ByOwnerID orders the results by the owner_id field.

func ByPreheaderTemplate

func ByPreheaderTemplate(opts ...sql.OrderTermOption) OrderOption

ByPreheaderTemplate orders the results by the preheader_template field.

func BySubjectTemplate

func BySubjectTemplate(opts ...sql.OrderTermOption) OrderOption

BySubjectTemplate orders the results by the subject_template field.

func BySystemInternalID

func BySystemInternalID(opts ...sql.OrderTermOption) OrderOption

BySystemInternalID orders the results by the system_internal_id field.

func BySystemOwned

func BySystemOwned(opts ...sql.OrderTermOption) OrderOption

BySystemOwned orders the results by the system_owned field.

func ByTextTemplate

func ByTextTemplate(opts ...sql.OrderTermOption) OrderOption

ByTextTemplate orders the results by the text_template field.

func ByUpdatedAt

func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption

ByUpdatedAt orders the results by the updated_at field.

func ByUpdatedBy

func ByUpdatedBy(opts ...sql.OrderTermOption) OrderOption

ByUpdatedBy orders the results by the updated_by field.

func ByVersion

func ByVersion(opts ...sql.OrderTermOption) OrderOption

ByVersion orders the results by the version field.

func ByWorkflowDefinitionField

func ByWorkflowDefinitionField(field string, opts ...sql.OrderTermOption) OrderOption

ByWorkflowDefinitionField orders the results by workflow_definition field.

func ByWorkflowDefinitionID

func ByWorkflowDefinitionID(opts ...sql.OrderTermOption) OrderOption

ByWorkflowDefinitionID orders the results by the workflow_definition_id field.

func ByWorkflowInstanceField

func ByWorkflowInstanceField(field string, opts ...sql.OrderTermOption) OrderOption

ByWorkflowInstanceField orders the results by workflow_instance field.

func ByWorkflowInstanceID

func ByWorkflowInstanceID(opts ...sql.OrderTermOption) OrderOption

ByWorkflowInstanceID orders the results by the workflow_instance_id field.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL