organizationsetting

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Dec 7, 2023 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the organizationsetting type in the database.
	Label = "organization_setting"
	// 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"
	// FieldDomains holds the string denoting the domains field in the database.
	FieldDomains = "domains"
	// FieldSSOCert holds the string denoting the sso_cert field in the database.
	FieldSSOCert = "sso_cert"
	// FieldSSOEntrypoint holds the string denoting the sso_entrypoint field in the database.
	FieldSSOEntrypoint = "sso_entrypoint"
	// FieldSSOIssuer holds the string denoting the sso_issuer field in the database.
	FieldSSOIssuer = "sso_issuer"
	// FieldBillingContact holds the string denoting the billing_contact field in the database.
	FieldBillingContact = "billing_contact"
	// FieldBillingEmail holds the string denoting the billing_email field in the database.
	FieldBillingEmail = "billing_email"
	// FieldBillingPhone holds the string denoting the billing_phone field in the database.
	FieldBillingPhone = "billing_phone"
	// FieldBillingAddress holds the string denoting the billing_address field in the database.
	FieldBillingAddress = "billing_address"
	// FieldTaxIdentifier holds the string denoting the tax_identifier field in the database.
	FieldTaxIdentifier = "tax_identifier"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// EdgeOrganization holds the string denoting the organization edge name in mutations.
	EdgeOrganization = "organization"
	// Table holds the table name of the organizationsetting in the database.
	Table = "organization_settings"
	// OrganizationTable is the table that holds the organization relation/edge.
	OrganizationTable = "organization_settings"
	// OrganizationInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OrganizationInverseTable = "organizations"
	// OrganizationColumn is the table column denoting the organization relation/edge.
	OrganizationColumn = "organization_setting"
)

Variables

View Source
var (
	Hooks [1]ent.Hook
	// 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
	// DefaultSSOCert holds the default value on creation for the "sso_cert" field.
	DefaultSSOCert string
	// DefaultSSOEntrypoint holds the default value on creation for the "sso_entrypoint" field.
	DefaultSSOEntrypoint string
	// DefaultSSOIssuer holds the default value on creation for the "sso_issuer" field.
	DefaultSSOIssuer string
	// BillingContactValidator is a validator for the "billing_contact" field. It is called by the builders before save.
	BillingContactValidator func(string) error
	// BillingEmailValidator is a validator for the "billing_email" field. It is called by the builders before save.
	BillingEmailValidator func(string) error
	// BillingPhoneValidator is a validator for the "billing_phone" field. It is called by the builders before save.
	BillingPhoneValidator func(string) error
	// BillingAddressValidator is a validator for the "billing_address" field. It is called by the builders before save.
	BillingAddressValidator func(string) error
	// DefaultTags holds the default value on creation for the "tags" field.
	DefaultTags []string
	// 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/datumforge/datum/internal/ent/generated/runtime"

Columns holds all SQL columns for organizationsetting fields.

View Source
var ForeignKeys = []string{
	"organization_setting",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "organization_settings" table and are not defined as standalone fields in the schema.

Functions

func And

And groups predicates with the AND operator between them.

func BillingAddress

func BillingAddress(v string) predicate.OrganizationSetting

BillingAddress applies equality check predicate on the "billing_address" field. It's identical to BillingAddressEQ.

func BillingAddressContains

func BillingAddressContains(v string) predicate.OrganizationSetting

BillingAddressContains applies the Contains predicate on the "billing_address" field.

func BillingAddressContainsFold

func BillingAddressContainsFold(v string) predicate.OrganizationSetting

BillingAddressContainsFold applies the ContainsFold predicate on the "billing_address" field.

func BillingAddressEQ

func BillingAddressEQ(v string) predicate.OrganizationSetting

BillingAddressEQ applies the EQ predicate on the "billing_address" field.

func BillingAddressEqualFold

func BillingAddressEqualFold(v string) predicate.OrganizationSetting

BillingAddressEqualFold applies the EqualFold predicate on the "billing_address" field.

func BillingAddressGT

func BillingAddressGT(v string) predicate.OrganizationSetting

BillingAddressGT applies the GT predicate on the "billing_address" field.

func BillingAddressGTE

func BillingAddressGTE(v string) predicate.OrganizationSetting

BillingAddressGTE applies the GTE predicate on the "billing_address" field.

func BillingAddressHasPrefix

func BillingAddressHasPrefix(v string) predicate.OrganizationSetting

BillingAddressHasPrefix applies the HasPrefix predicate on the "billing_address" field.

func BillingAddressHasSuffix

func BillingAddressHasSuffix(v string) predicate.OrganizationSetting

BillingAddressHasSuffix applies the HasSuffix predicate on the "billing_address" field.

func BillingAddressIn

func BillingAddressIn(vs ...string) predicate.OrganizationSetting

BillingAddressIn applies the In predicate on the "billing_address" field.

func BillingAddressLT

func BillingAddressLT(v string) predicate.OrganizationSetting

BillingAddressLT applies the LT predicate on the "billing_address" field.

func BillingAddressLTE

func BillingAddressLTE(v string) predicate.OrganizationSetting

BillingAddressLTE applies the LTE predicate on the "billing_address" field.

func BillingAddressNEQ

func BillingAddressNEQ(v string) predicate.OrganizationSetting

BillingAddressNEQ applies the NEQ predicate on the "billing_address" field.

func BillingAddressNotIn

func BillingAddressNotIn(vs ...string) predicate.OrganizationSetting

BillingAddressNotIn applies the NotIn predicate on the "billing_address" field.

func BillingContact

func BillingContact(v string) predicate.OrganizationSetting

BillingContact applies equality check predicate on the "billing_contact" field. It's identical to BillingContactEQ.

func BillingContactContains

func BillingContactContains(v string) predicate.OrganizationSetting

BillingContactContains applies the Contains predicate on the "billing_contact" field.

func BillingContactContainsFold

func BillingContactContainsFold(v string) predicate.OrganizationSetting

BillingContactContainsFold applies the ContainsFold predicate on the "billing_contact" field.

func BillingContactEQ

func BillingContactEQ(v string) predicate.OrganizationSetting

BillingContactEQ applies the EQ predicate on the "billing_contact" field.

func BillingContactEqualFold

func BillingContactEqualFold(v string) predicate.OrganizationSetting

BillingContactEqualFold applies the EqualFold predicate on the "billing_contact" field.

func BillingContactGT

func BillingContactGT(v string) predicate.OrganizationSetting

BillingContactGT applies the GT predicate on the "billing_contact" field.

func BillingContactGTE

func BillingContactGTE(v string) predicate.OrganizationSetting

BillingContactGTE applies the GTE predicate on the "billing_contact" field.

func BillingContactHasPrefix

func BillingContactHasPrefix(v string) predicate.OrganizationSetting

BillingContactHasPrefix applies the HasPrefix predicate on the "billing_contact" field.

func BillingContactHasSuffix

func BillingContactHasSuffix(v string) predicate.OrganizationSetting

BillingContactHasSuffix applies the HasSuffix predicate on the "billing_contact" field.

func BillingContactIn

func BillingContactIn(vs ...string) predicate.OrganizationSetting

BillingContactIn applies the In predicate on the "billing_contact" field.

func BillingContactLT

func BillingContactLT(v string) predicate.OrganizationSetting

BillingContactLT applies the LT predicate on the "billing_contact" field.

func BillingContactLTE

func BillingContactLTE(v string) predicate.OrganizationSetting

BillingContactLTE applies the LTE predicate on the "billing_contact" field.

func BillingContactNEQ

func BillingContactNEQ(v string) predicate.OrganizationSetting

BillingContactNEQ applies the NEQ predicate on the "billing_contact" field.

func BillingContactNotIn

func BillingContactNotIn(vs ...string) predicate.OrganizationSetting

BillingContactNotIn applies the NotIn predicate on the "billing_contact" field.

func BillingEmail

func BillingEmail(v string) predicate.OrganizationSetting

BillingEmail applies equality check predicate on the "billing_email" field. It's identical to BillingEmailEQ.

func BillingEmailContains

func BillingEmailContains(v string) predicate.OrganizationSetting

BillingEmailContains applies the Contains predicate on the "billing_email" field.

func BillingEmailContainsFold

func BillingEmailContainsFold(v string) predicate.OrganizationSetting

BillingEmailContainsFold applies the ContainsFold predicate on the "billing_email" field.

func BillingEmailEQ

func BillingEmailEQ(v string) predicate.OrganizationSetting

BillingEmailEQ applies the EQ predicate on the "billing_email" field.

func BillingEmailEqualFold

func BillingEmailEqualFold(v string) predicate.OrganizationSetting

BillingEmailEqualFold applies the EqualFold predicate on the "billing_email" field.

func BillingEmailGT

func BillingEmailGT(v string) predicate.OrganizationSetting

BillingEmailGT applies the GT predicate on the "billing_email" field.

func BillingEmailGTE

func BillingEmailGTE(v string) predicate.OrganizationSetting

BillingEmailGTE applies the GTE predicate on the "billing_email" field.

func BillingEmailHasPrefix

func BillingEmailHasPrefix(v string) predicate.OrganizationSetting

BillingEmailHasPrefix applies the HasPrefix predicate on the "billing_email" field.

func BillingEmailHasSuffix

func BillingEmailHasSuffix(v string) predicate.OrganizationSetting

BillingEmailHasSuffix applies the HasSuffix predicate on the "billing_email" field.

func BillingEmailIn

func BillingEmailIn(vs ...string) predicate.OrganizationSetting

BillingEmailIn applies the In predicate on the "billing_email" field.

func BillingEmailLT

func BillingEmailLT(v string) predicate.OrganizationSetting

BillingEmailLT applies the LT predicate on the "billing_email" field.

func BillingEmailLTE

func BillingEmailLTE(v string) predicate.OrganizationSetting

BillingEmailLTE applies the LTE predicate on the "billing_email" field.

func BillingEmailNEQ

func BillingEmailNEQ(v string) predicate.OrganizationSetting

BillingEmailNEQ applies the NEQ predicate on the "billing_email" field.

func BillingEmailNotIn

func BillingEmailNotIn(vs ...string) predicate.OrganizationSetting

BillingEmailNotIn applies the NotIn predicate on the "billing_email" field.

func BillingPhone

func BillingPhone(v string) predicate.OrganizationSetting

BillingPhone applies equality check predicate on the "billing_phone" field. It's identical to BillingPhoneEQ.

func BillingPhoneContains

func BillingPhoneContains(v string) predicate.OrganizationSetting

BillingPhoneContains applies the Contains predicate on the "billing_phone" field.

func BillingPhoneContainsFold

func BillingPhoneContainsFold(v string) predicate.OrganizationSetting

BillingPhoneContainsFold applies the ContainsFold predicate on the "billing_phone" field.

func BillingPhoneEQ

func BillingPhoneEQ(v string) predicate.OrganizationSetting

BillingPhoneEQ applies the EQ predicate on the "billing_phone" field.

func BillingPhoneEqualFold

func BillingPhoneEqualFold(v string) predicate.OrganizationSetting

BillingPhoneEqualFold applies the EqualFold predicate on the "billing_phone" field.

func BillingPhoneGT

func BillingPhoneGT(v string) predicate.OrganizationSetting

BillingPhoneGT applies the GT predicate on the "billing_phone" field.

func BillingPhoneGTE

func BillingPhoneGTE(v string) predicate.OrganizationSetting

BillingPhoneGTE applies the GTE predicate on the "billing_phone" field.

func BillingPhoneHasPrefix

func BillingPhoneHasPrefix(v string) predicate.OrganizationSetting

BillingPhoneHasPrefix applies the HasPrefix predicate on the "billing_phone" field.

func BillingPhoneHasSuffix

func BillingPhoneHasSuffix(v string) predicate.OrganizationSetting

BillingPhoneHasSuffix applies the HasSuffix predicate on the "billing_phone" field.

func BillingPhoneIn

func BillingPhoneIn(vs ...string) predicate.OrganizationSetting

BillingPhoneIn applies the In predicate on the "billing_phone" field.

func BillingPhoneLT

func BillingPhoneLT(v string) predicate.OrganizationSetting

BillingPhoneLT applies the LT predicate on the "billing_phone" field.

func BillingPhoneLTE

func BillingPhoneLTE(v string) predicate.OrganizationSetting

BillingPhoneLTE applies the LTE predicate on the "billing_phone" field.

func BillingPhoneNEQ

func BillingPhoneNEQ(v string) predicate.OrganizationSetting

BillingPhoneNEQ applies the NEQ predicate on the "billing_phone" field.

func BillingPhoneNotIn

func BillingPhoneNotIn(vs ...string) predicate.OrganizationSetting

BillingPhoneNotIn applies the NotIn predicate on the "billing_phone" field.

func CreatedAt

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.OrganizationSetting

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.OrganizationSetting

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.OrganizationSetting

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.OrganizationSetting

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.OrganizationSetting

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.OrganizationSetting

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

func CreatedAtNotIn

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

CreatedAtNotIn applies the NotIn 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.OrganizationSetting

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.OrganizationSetting

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.OrganizationSetting

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.OrganizationSetting

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

func CreatedByGT

func CreatedByGT(v string) predicate.OrganizationSetting

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.OrganizationSetting

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.OrganizationSetting

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.OrganizationSetting

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.OrganizationSetting

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

func CreatedByLT

func CreatedByLT(v string) predicate.OrganizationSetting

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.OrganizationSetting

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.OrganizationSetting

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.OrganizationSetting

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

func HasOrganization

func HasOrganization() predicate.OrganizationSetting

HasOrganization applies the HasEdge predicate on the "organization" edge.

func HasOrganizationWith

func HasOrganizationWith(preds ...predicate.Organization) predicate.OrganizationSetting

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.OrganizationSetting

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

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

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

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 SSOCert

SSOCert applies equality check predicate on the "sso_cert" field. It's identical to SSOCertEQ.

func SSOCertContains

func SSOCertContains(v string) predicate.OrganizationSetting

SSOCertContains applies the Contains predicate on the "sso_cert" field.

func SSOCertContainsFold

func SSOCertContainsFold(v string) predicate.OrganizationSetting

SSOCertContainsFold applies the ContainsFold predicate on the "sso_cert" field.

func SSOCertEQ

SSOCertEQ applies the EQ predicate on the "sso_cert" field.

func SSOCertEqualFold

func SSOCertEqualFold(v string) predicate.OrganizationSetting

SSOCertEqualFold applies the EqualFold predicate on the "sso_cert" field.

func SSOCertGT

SSOCertGT applies the GT predicate on the "sso_cert" field.

func SSOCertGTE

func SSOCertGTE(v string) predicate.OrganizationSetting

SSOCertGTE applies the GTE predicate on the "sso_cert" field.

func SSOCertHasPrefix

func SSOCertHasPrefix(v string) predicate.OrganizationSetting

SSOCertHasPrefix applies the HasPrefix predicate on the "sso_cert" field.

func SSOCertHasSuffix

func SSOCertHasSuffix(v string) predicate.OrganizationSetting

SSOCertHasSuffix applies the HasSuffix predicate on the "sso_cert" field.

func SSOCertIn

func SSOCertIn(vs ...string) predicate.OrganizationSetting

SSOCertIn applies the In predicate on the "sso_cert" field.

func SSOCertLT

SSOCertLT applies the LT predicate on the "sso_cert" field.

func SSOCertLTE

func SSOCertLTE(v string) predicate.OrganizationSetting

SSOCertLTE applies the LTE predicate on the "sso_cert" field.

func SSOCertNEQ

func SSOCertNEQ(v string) predicate.OrganizationSetting

SSOCertNEQ applies the NEQ predicate on the "sso_cert" field.

func SSOCertNotIn

func SSOCertNotIn(vs ...string) predicate.OrganizationSetting

SSOCertNotIn applies the NotIn predicate on the "sso_cert" field.

func SSOEntrypoint

func SSOEntrypoint(v string) predicate.OrganizationSetting

SSOEntrypoint applies equality check predicate on the "sso_entrypoint" field. It's identical to SSOEntrypointEQ.

func SSOEntrypointContains

func SSOEntrypointContains(v string) predicate.OrganizationSetting

SSOEntrypointContains applies the Contains predicate on the "sso_entrypoint" field.

func SSOEntrypointContainsFold

func SSOEntrypointContainsFold(v string) predicate.OrganizationSetting

SSOEntrypointContainsFold applies the ContainsFold predicate on the "sso_entrypoint" field.

func SSOEntrypointEQ

func SSOEntrypointEQ(v string) predicate.OrganizationSetting

SSOEntrypointEQ applies the EQ predicate on the "sso_entrypoint" field.

func SSOEntrypointEqualFold

func SSOEntrypointEqualFold(v string) predicate.OrganizationSetting

SSOEntrypointEqualFold applies the EqualFold predicate on the "sso_entrypoint" field.

func SSOEntrypointGT

func SSOEntrypointGT(v string) predicate.OrganizationSetting

SSOEntrypointGT applies the GT predicate on the "sso_entrypoint" field.

func SSOEntrypointGTE

func SSOEntrypointGTE(v string) predicate.OrganizationSetting

SSOEntrypointGTE applies the GTE predicate on the "sso_entrypoint" field.

func SSOEntrypointHasPrefix

func SSOEntrypointHasPrefix(v string) predicate.OrganizationSetting

SSOEntrypointHasPrefix applies the HasPrefix predicate on the "sso_entrypoint" field.

func SSOEntrypointHasSuffix

func SSOEntrypointHasSuffix(v string) predicate.OrganizationSetting

SSOEntrypointHasSuffix applies the HasSuffix predicate on the "sso_entrypoint" field.

func SSOEntrypointIn

func SSOEntrypointIn(vs ...string) predicate.OrganizationSetting

SSOEntrypointIn applies the In predicate on the "sso_entrypoint" field.

func SSOEntrypointLT

func SSOEntrypointLT(v string) predicate.OrganizationSetting

SSOEntrypointLT applies the LT predicate on the "sso_entrypoint" field.

func SSOEntrypointLTE

func SSOEntrypointLTE(v string) predicate.OrganizationSetting

SSOEntrypointLTE applies the LTE predicate on the "sso_entrypoint" field.

func SSOEntrypointNEQ

func SSOEntrypointNEQ(v string) predicate.OrganizationSetting

SSOEntrypointNEQ applies the NEQ predicate on the "sso_entrypoint" field.

func SSOEntrypointNotIn

func SSOEntrypointNotIn(vs ...string) predicate.OrganizationSetting

SSOEntrypointNotIn applies the NotIn predicate on the "sso_entrypoint" field.

func SSOIssuer

SSOIssuer applies equality check predicate on the "sso_issuer" field. It's identical to SSOIssuerEQ.

func SSOIssuerContains

func SSOIssuerContains(v string) predicate.OrganizationSetting

SSOIssuerContains applies the Contains predicate on the "sso_issuer" field.

func SSOIssuerContainsFold

func SSOIssuerContainsFold(v string) predicate.OrganizationSetting

SSOIssuerContainsFold applies the ContainsFold predicate on the "sso_issuer" field.

func SSOIssuerEQ

func SSOIssuerEQ(v string) predicate.OrganizationSetting

SSOIssuerEQ applies the EQ predicate on the "sso_issuer" field.

func SSOIssuerEqualFold

func SSOIssuerEqualFold(v string) predicate.OrganizationSetting

SSOIssuerEqualFold applies the EqualFold predicate on the "sso_issuer" field.

func SSOIssuerGT

func SSOIssuerGT(v string) predicate.OrganizationSetting

SSOIssuerGT applies the GT predicate on the "sso_issuer" field.

func SSOIssuerGTE

func SSOIssuerGTE(v string) predicate.OrganizationSetting

SSOIssuerGTE applies the GTE predicate on the "sso_issuer" field.

func SSOIssuerHasPrefix

func SSOIssuerHasPrefix(v string) predicate.OrganizationSetting

SSOIssuerHasPrefix applies the HasPrefix predicate on the "sso_issuer" field.

func SSOIssuerHasSuffix

func SSOIssuerHasSuffix(v string) predicate.OrganizationSetting

SSOIssuerHasSuffix applies the HasSuffix predicate on the "sso_issuer" field.

func SSOIssuerIn

func SSOIssuerIn(vs ...string) predicate.OrganizationSetting

SSOIssuerIn applies the In predicate on the "sso_issuer" field.

func SSOIssuerLT

func SSOIssuerLT(v string) predicate.OrganizationSetting

SSOIssuerLT applies the LT predicate on the "sso_issuer" field.

func SSOIssuerLTE

func SSOIssuerLTE(v string) predicate.OrganizationSetting

SSOIssuerLTE applies the LTE predicate on the "sso_issuer" field.

func SSOIssuerNEQ

func SSOIssuerNEQ(v string) predicate.OrganizationSetting

SSOIssuerNEQ applies the NEQ predicate on the "sso_issuer" field.

func SSOIssuerNotIn

func SSOIssuerNotIn(vs ...string) predicate.OrganizationSetting

SSOIssuerNotIn applies the NotIn predicate on the "sso_issuer" field.

func TagsIsNil

func TagsIsNil() predicate.OrganizationSetting

TagsIsNil applies the IsNil predicate on the "tags" field.

func TagsNotNil

func TagsNotNil() predicate.OrganizationSetting

TagsNotNil applies the NotNil predicate on the "tags" field.

func TaxIdentifier

func TaxIdentifier(v string) predicate.OrganizationSetting

TaxIdentifier applies equality check predicate on the "tax_identifier" field. It's identical to TaxIdentifierEQ.

func TaxIdentifierContains

func TaxIdentifierContains(v string) predicate.OrganizationSetting

TaxIdentifierContains applies the Contains predicate on the "tax_identifier" field.

func TaxIdentifierContainsFold

func TaxIdentifierContainsFold(v string) predicate.OrganizationSetting

TaxIdentifierContainsFold applies the ContainsFold predicate on the "tax_identifier" field.

func TaxIdentifierEQ

func TaxIdentifierEQ(v string) predicate.OrganizationSetting

TaxIdentifierEQ applies the EQ predicate on the "tax_identifier" field.

func TaxIdentifierEqualFold

func TaxIdentifierEqualFold(v string) predicate.OrganizationSetting

TaxIdentifierEqualFold applies the EqualFold predicate on the "tax_identifier" field.

func TaxIdentifierGT

func TaxIdentifierGT(v string) predicate.OrganizationSetting

TaxIdentifierGT applies the GT predicate on the "tax_identifier" field.

func TaxIdentifierGTE

func TaxIdentifierGTE(v string) predicate.OrganizationSetting

TaxIdentifierGTE applies the GTE predicate on the "tax_identifier" field.

func TaxIdentifierHasPrefix

func TaxIdentifierHasPrefix(v string) predicate.OrganizationSetting

TaxIdentifierHasPrefix applies the HasPrefix predicate on the "tax_identifier" field.

func TaxIdentifierHasSuffix

func TaxIdentifierHasSuffix(v string) predicate.OrganizationSetting

TaxIdentifierHasSuffix applies the HasSuffix predicate on the "tax_identifier" field.

func TaxIdentifierIn

func TaxIdentifierIn(vs ...string) predicate.OrganizationSetting

TaxIdentifierIn applies the In predicate on the "tax_identifier" field.

func TaxIdentifierLT

func TaxIdentifierLT(v string) predicate.OrganizationSetting

TaxIdentifierLT applies the LT predicate on the "tax_identifier" field.

func TaxIdentifierLTE

func TaxIdentifierLTE(v string) predicate.OrganizationSetting

TaxIdentifierLTE applies the LTE predicate on the "tax_identifier" field.

func TaxIdentifierNEQ

func TaxIdentifierNEQ(v string) predicate.OrganizationSetting

TaxIdentifierNEQ applies the NEQ predicate on the "tax_identifier" field.

func TaxIdentifierNotIn

func TaxIdentifierNotIn(vs ...string) predicate.OrganizationSetting

TaxIdentifierNotIn applies the NotIn predicate on the "tax_identifier" field.

func UpdatedAt

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn 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.OrganizationSetting

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.OrganizationSetting

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.OrganizationSetting

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.OrganizationSetting

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.OrganizationSetting

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.OrganizationSetting

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.OrganizationSetting

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.OrganizationSetting

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.OrganizationSetting

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.OrganizationSetting

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.OrganizationSetting

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.OrganizationSetting

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.OrganizationSetting

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 OrganizationSetting queries.

func ByBillingAddress

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

ByBillingAddress orders the results by the billing_address field.

func ByBillingContact

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

ByBillingContact orders the results by the billing_contact field.

func ByBillingEmail

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

ByBillingEmail orders the results by the billing_email field.

func ByBillingPhone

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

ByBillingPhone orders the results by the billing_phone 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 ByID

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

ByID orders the results by the id field.

func ByOrganizationField

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

ByOrganizationField orders the results by organization field.

func BySSOCert

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

BySSOCert orders the results by the sso_cert field.

func BySSOEntrypoint

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

BySSOEntrypoint orders the results by the sso_entrypoint field.

func BySSOIssuer

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

BySSOIssuer orders the results by the sso_issuer field.

func ByTaxIdentifier

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

ByTaxIdentifier orders the results by the tax_identifier 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