trustcentersubprocessor

package
v1.2.2 Latest Latest
Warning

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

Go to latest
Published: Jan 8, 2026 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the trustcentersubprocessor type in the database.
	Label = "trust_center_subprocessor"
	// 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"
	// FieldSubprocessorID holds the string denoting the subprocessor_id field in the database.
	FieldSubprocessorID = "subprocessor_id"
	// FieldTrustCenterID holds the string denoting the trust_center_id field in the database.
	FieldTrustCenterID = "trust_center_id"
	// FieldCountries holds the string denoting the countries field in the database.
	FieldCountries = "countries"
	// FieldCategory holds the string denoting the category field in the database.
	FieldCategory = "category"
	// EdgeTrustCenter holds the string denoting the trust_center edge name in mutations.
	EdgeTrustCenter = "trust_center"
	// EdgeSubprocessor holds the string denoting the subprocessor edge name in mutations.
	EdgeSubprocessor = "subprocessor"
	// Table holds the table name of the trustcentersubprocessor in the database.
	Table = "trust_center_subprocessors"
	// TrustCenterTable is the table that holds the trust_center relation/edge.
	TrustCenterTable = "trust_center_subprocessors"
	// TrustCenterInverseTable is the table name for the TrustCenter entity.
	// It exists in this package in order to avoid circular dependency with the "trustcenter" package.
	TrustCenterInverseTable = "trust_centers"
	// TrustCenterColumn is the table column denoting the trust_center relation/edge.
	TrustCenterColumn = "trust_center_id"
	// SubprocessorTable is the table that holds the subprocessor relation/edge.
	SubprocessorTable = "trust_center_subprocessors"
	// SubprocessorInverseTable is the table name for the Subprocessor entity.
	// It exists in this package in order to avoid circular dependency with the "subprocessor" package.
	SubprocessorInverseTable = "subprocessors"
	// SubprocessorColumn is the table column denoting the subprocessor relation/edge.
	SubprocessorColumn = "subprocessor_id"
)

Variables

View Source
var (
	Hooks        [4]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
	// SubprocessorIDValidator is a validator for the "subprocessor_id" field. It is called by the builders before save.
	SubprocessorIDValidator func(string) error
	// TrustCenterIDValidator is a validator for the "trust_center_id" field. It is called by the builders before save.
	TrustCenterIDValidator func(string) error
	// CategoryValidator is a validator for the "category" field. It is called by the builders before save.
	CategoryValidator func(string) error
	// 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 trustcentersubprocessor fields.

Functions

func And

And groups predicates with the AND operator between them.

func Category added in v0.23.0

Category applies equality check predicate on the "category" field. It's identical to CategoryEQ.

func CategoryContains added in v0.23.0

func CategoryContains(v string) predicate.TrustCenterSubprocessor

CategoryContains applies the Contains predicate on the "category" field.

func CategoryContainsFold added in v0.23.0

func CategoryContainsFold(v string) predicate.TrustCenterSubprocessor

CategoryContainsFold applies the ContainsFold predicate on the "category" field.

func CategoryEQ added in v0.23.0

CategoryEQ applies the EQ predicate on the "category" field.

func CategoryEqualFold added in v0.23.0

func CategoryEqualFold(v string) predicate.TrustCenterSubprocessor

CategoryEqualFold applies the EqualFold predicate on the "category" field.

func CategoryGT added in v0.23.0

CategoryGT applies the GT predicate on the "category" field.

func CategoryGTE added in v0.23.0

CategoryGTE applies the GTE predicate on the "category" field.

func CategoryHasPrefix added in v0.23.0

func CategoryHasPrefix(v string) predicate.TrustCenterSubprocessor

CategoryHasPrefix applies the HasPrefix predicate on the "category" field.

func CategoryHasSuffix added in v0.23.0

func CategoryHasSuffix(v string) predicate.TrustCenterSubprocessor

CategoryHasSuffix applies the HasSuffix predicate on the "category" field.

func CategoryIn added in v0.23.0

func CategoryIn(vs ...string) predicate.TrustCenterSubprocessor

CategoryIn applies the In predicate on the "category" field.

func CategoryLT added in v0.23.0

CategoryLT applies the LT predicate on the "category" field.

func CategoryLTE added in v0.23.0

CategoryLTE applies the LTE predicate on the "category" field.

func CategoryNEQ added in v0.23.0

CategoryNEQ applies the NEQ predicate on the "category" field.

func CategoryNotIn added in v0.23.0

func CategoryNotIn(vs ...string) predicate.TrustCenterSubprocessor

CategoryNotIn applies the NotIn predicate on the "category" field.

func CountriesIsNil added in v0.23.0

func CountriesIsNil() predicate.TrustCenterSubprocessor

CountriesIsNil applies the IsNil predicate on the "countries" field.

func CountriesNotNil added in v0.23.0

func CountriesNotNil() predicate.TrustCenterSubprocessor

CountriesNotNil applies the NotNil predicate on the "countries" field.

func CreatedAt

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

func CreatedAtEQ

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

func CreatedAtGT

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

func CreatedAtGTE

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.TrustCenterSubprocessor

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

func CreatedAtLT

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

func CreatedAtLTE

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

func CreatedAtNEQ

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.TrustCenterSubprocessor

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

func CreatedBy

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

func CreatedByContains

func CreatedByContains(v string) predicate.TrustCenterSubprocessor

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.TrustCenterSubprocessor

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

func CreatedByEQ

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.TrustCenterSubprocessor

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

func CreatedByGT

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

func CreatedByGTE

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.TrustCenterSubprocessor

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.TrustCenterSubprocessor

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.TrustCenterSubprocessor

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

func CreatedByLT

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

func CreatedByLTE

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

func CreatedByNEQ

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.TrustCenterSubprocessor

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

func DeletedAt

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

func DeletedAtEQ

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

func DeletedAtGT

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

func DeletedAtGTE

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.TrustCenterSubprocessor

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

func DeletedAtLT

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

func DeletedAtLTE

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

func DeletedAtNEQ

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.TrustCenterSubprocessor

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

func DeletedBy

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

func DeletedByContains

func DeletedByContains(v string) predicate.TrustCenterSubprocessor

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.TrustCenterSubprocessor

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

func DeletedByEQ

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.TrustCenterSubprocessor

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

func DeletedByGT

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

func DeletedByGTE

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.TrustCenterSubprocessor

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.TrustCenterSubprocessor

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.TrustCenterSubprocessor

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

func DeletedByLT

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

func DeletedByLTE

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

func DeletedByNEQ

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.TrustCenterSubprocessor

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

func HasSubprocessor added in v0.23.0

func HasSubprocessor() predicate.TrustCenterSubprocessor

HasSubprocessor applies the HasEdge predicate on the "subprocessor" edge.

func HasSubprocessorWith added in v0.23.0

func HasSubprocessorWith(preds ...predicate.Subprocessor) predicate.TrustCenterSubprocessor

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

func HasTrustCenter added in v0.23.0

func HasTrustCenter() predicate.TrustCenterSubprocessor

HasTrustCenter applies the HasEdge predicate on the "trust_center" edge.

func HasTrustCenterWith added in v0.23.0

func HasTrustCenterWith(preds ...predicate.TrustCenter) predicate.TrustCenterSubprocessor

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.TrustCenterSubprocessor

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func SubprocessorID added in v0.23.0

func SubprocessorID(v string) predicate.TrustCenterSubprocessor

SubprocessorID applies equality check predicate on the "subprocessor_id" field. It's identical to SubprocessorIDEQ.

func SubprocessorIDContains added in v0.23.0

func SubprocessorIDContains(v string) predicate.TrustCenterSubprocessor

SubprocessorIDContains applies the Contains predicate on the "subprocessor_id" field.

func SubprocessorIDContainsFold added in v0.23.0

func SubprocessorIDContainsFold(v string) predicate.TrustCenterSubprocessor

SubprocessorIDContainsFold applies the ContainsFold predicate on the "subprocessor_id" field.

func SubprocessorIDEQ added in v0.23.0

func SubprocessorIDEQ(v string) predicate.TrustCenterSubprocessor

SubprocessorIDEQ applies the EQ predicate on the "subprocessor_id" field.

func SubprocessorIDEqualFold added in v0.23.0

func SubprocessorIDEqualFold(v string) predicate.TrustCenterSubprocessor

SubprocessorIDEqualFold applies the EqualFold predicate on the "subprocessor_id" field.

func SubprocessorIDGT added in v0.23.0

func SubprocessorIDGT(v string) predicate.TrustCenterSubprocessor

SubprocessorIDGT applies the GT predicate on the "subprocessor_id" field.

func SubprocessorIDGTE added in v0.23.0

func SubprocessorIDGTE(v string) predicate.TrustCenterSubprocessor

SubprocessorIDGTE applies the GTE predicate on the "subprocessor_id" field.

func SubprocessorIDHasPrefix added in v0.23.0

func SubprocessorIDHasPrefix(v string) predicate.TrustCenterSubprocessor

SubprocessorIDHasPrefix applies the HasPrefix predicate on the "subprocessor_id" field.

func SubprocessorIDHasSuffix added in v0.23.0

func SubprocessorIDHasSuffix(v string) predicate.TrustCenterSubprocessor

SubprocessorIDHasSuffix applies the HasSuffix predicate on the "subprocessor_id" field.

func SubprocessorIDIn added in v0.23.0

func SubprocessorIDIn(vs ...string) predicate.TrustCenterSubprocessor

SubprocessorIDIn applies the In predicate on the "subprocessor_id" field.

func SubprocessorIDLT added in v0.23.0

func SubprocessorIDLT(v string) predicate.TrustCenterSubprocessor

SubprocessorIDLT applies the LT predicate on the "subprocessor_id" field.

func SubprocessorIDLTE added in v0.23.0

func SubprocessorIDLTE(v string) predicate.TrustCenterSubprocessor

SubprocessorIDLTE applies the LTE predicate on the "subprocessor_id" field.

func SubprocessorIDNEQ added in v0.23.0

func SubprocessorIDNEQ(v string) predicate.TrustCenterSubprocessor

SubprocessorIDNEQ applies the NEQ predicate on the "subprocessor_id" field.

func SubprocessorIDNotIn added in v0.23.0

func SubprocessorIDNotIn(vs ...string) predicate.TrustCenterSubprocessor

SubprocessorIDNotIn applies the NotIn predicate on the "subprocessor_id" field.

func TrustCenterID added in v0.23.0

func TrustCenterID(v string) predicate.TrustCenterSubprocessor

TrustCenterID applies equality check predicate on the "trust_center_id" field. It's identical to TrustCenterIDEQ.

func TrustCenterIDContains added in v0.23.0

func TrustCenterIDContains(v string) predicate.TrustCenterSubprocessor

TrustCenterIDContains applies the Contains predicate on the "trust_center_id" field.

func TrustCenterIDContainsFold added in v0.23.0

func TrustCenterIDContainsFold(v string) predicate.TrustCenterSubprocessor

TrustCenterIDContainsFold applies the ContainsFold predicate on the "trust_center_id" field.

func TrustCenterIDEQ added in v0.23.0

func TrustCenterIDEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterIDEQ applies the EQ predicate on the "trust_center_id" field.

func TrustCenterIDEqualFold added in v0.23.0

func TrustCenterIDEqualFold(v string) predicate.TrustCenterSubprocessor

TrustCenterIDEqualFold applies the EqualFold predicate on the "trust_center_id" field.

func TrustCenterIDGT added in v0.23.0

func TrustCenterIDGT(v string) predicate.TrustCenterSubprocessor

TrustCenterIDGT applies the GT predicate on the "trust_center_id" field.

func TrustCenterIDGTE added in v0.23.0

func TrustCenterIDGTE(v string) predicate.TrustCenterSubprocessor

TrustCenterIDGTE applies the GTE predicate on the "trust_center_id" field.

func TrustCenterIDHasPrefix added in v0.23.0

func TrustCenterIDHasPrefix(v string) predicate.TrustCenterSubprocessor

TrustCenterIDHasPrefix applies the HasPrefix predicate on the "trust_center_id" field.

func TrustCenterIDHasSuffix added in v0.23.0

func TrustCenterIDHasSuffix(v string) predicate.TrustCenterSubprocessor

TrustCenterIDHasSuffix applies the HasSuffix predicate on the "trust_center_id" field.

func TrustCenterIDIn added in v0.23.0

func TrustCenterIDIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterIDIn applies the In predicate on the "trust_center_id" field.

func TrustCenterIDIsNil added in v0.23.0

func TrustCenterIDIsNil() predicate.TrustCenterSubprocessor

TrustCenterIDIsNil applies the IsNil predicate on the "trust_center_id" field.

func TrustCenterIDLT added in v0.23.0

func TrustCenterIDLT(v string) predicate.TrustCenterSubprocessor

TrustCenterIDLT applies the LT predicate on the "trust_center_id" field.

func TrustCenterIDLTE added in v0.23.0

func TrustCenterIDLTE(v string) predicate.TrustCenterSubprocessor

TrustCenterIDLTE applies the LTE predicate on the "trust_center_id" field.

func TrustCenterIDNEQ added in v0.23.0

func TrustCenterIDNEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterIDNEQ applies the NEQ predicate on the "trust_center_id" field.

func TrustCenterIDNotIn added in v0.23.0

func TrustCenterIDNotIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterIDNotIn applies the NotIn predicate on the "trust_center_id" field.

func TrustCenterIDNotNil added in v0.23.0

func TrustCenterIDNotNil() predicate.TrustCenterSubprocessor

TrustCenterIDNotNil applies the NotNil predicate on the "trust_center_id" field.

func UpdatedAt

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

func UpdatedAtEQ

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

func UpdatedAtGT

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

func UpdatedAtGTE

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.TrustCenterSubprocessor

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

func UpdatedAtLT

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

func UpdatedAtLTE

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

func UpdatedAtNEQ

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.TrustCenterSubprocessor

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

func UpdatedBy

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.TrustCenterSubprocessor

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.TrustCenterSubprocessor

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

func UpdatedByEQ

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.TrustCenterSubprocessor

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

func UpdatedByGT

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

func UpdatedByGTE

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.TrustCenterSubprocessor

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.TrustCenterSubprocessor

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.TrustCenterSubprocessor

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

func UpdatedByLT

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

func UpdatedByLTE

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

func UpdatedByNEQ

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.TrustCenterSubprocessor

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).

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the TrustCenterSubprocessor queries.

func ByCategory added in v0.23.0

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

ByCategory orders the results by the category field.

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 ByID

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

ByID orders the results by the id field.

func BySubprocessorField added in v0.23.0

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

BySubprocessorField orders the results by subprocessor field.

func BySubprocessorID added in v0.23.0

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

BySubprocessorID orders the results by the subprocessor_id field.

func ByTrustCenterField added in v0.23.0

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

ByTrustCenterField orders the results by trust_center field.

func ByTrustCenterID added in v0.23.0

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

ByTrustCenterID orders the results by the trust_center_id 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.

Jump to

Keyboard shortcuts

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