organizationsettings

package
v0.1.1 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the organizationsettings type in the database.
	Label = "organization_settings"
	// 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"
	// EdgeOrgnaization holds the string denoting the orgnaization edge name in mutations.
	EdgeOrgnaization = "orgnaization"
	// Table holds the table name of the organizationsettings in the database.
	Table = "organization_settings"
	// OrgnaizationTable is the table that holds the orgnaization relation/edge.
	OrgnaizationTable = "organization_settings"
	// OrgnaizationInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OrgnaizationInverseTable = "organizations"
	// OrgnaizationColumn is the table column denoting the orgnaization relation/edge.
	OrgnaizationColumn = "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 organizationsettings 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.OrganizationSettings

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

func BillingAddressContains

func BillingAddressContains(v string) predicate.OrganizationSettings

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

func BillingAddressContainsFold

func BillingAddressContainsFold(v string) predicate.OrganizationSettings

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

func BillingAddressEQ

func BillingAddressEQ(v string) predicate.OrganizationSettings

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

func BillingAddressEqualFold

func BillingAddressEqualFold(v string) predicate.OrganizationSettings

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

func BillingAddressGT

func BillingAddressGT(v string) predicate.OrganizationSettings

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

func BillingAddressGTE

func BillingAddressGTE(v string) predicate.OrganizationSettings

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

func BillingAddressHasPrefix

func BillingAddressHasPrefix(v string) predicate.OrganizationSettings

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

func BillingAddressHasSuffix

func BillingAddressHasSuffix(v string) predicate.OrganizationSettings

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

func BillingAddressIn

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

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

func BillingAddressLT

func BillingAddressLT(v string) predicate.OrganizationSettings

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

func BillingAddressLTE

func BillingAddressLTE(v string) predicate.OrganizationSettings

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

func BillingAddressNEQ

func BillingAddressNEQ(v string) predicate.OrganizationSettings

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

func BillingAddressNotIn

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

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

func BillingContact

func BillingContact(v string) predicate.OrganizationSettings

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

func BillingContactContains

func BillingContactContains(v string) predicate.OrganizationSettings

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

func BillingContactContainsFold

func BillingContactContainsFold(v string) predicate.OrganizationSettings

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

func BillingContactEQ

func BillingContactEQ(v string) predicate.OrganizationSettings

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

func BillingContactEqualFold

func BillingContactEqualFold(v string) predicate.OrganizationSettings

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

func BillingContactGT

func BillingContactGT(v string) predicate.OrganizationSettings

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

func BillingContactGTE

func BillingContactGTE(v string) predicate.OrganizationSettings

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

func BillingContactHasPrefix

func BillingContactHasPrefix(v string) predicate.OrganizationSettings

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

func BillingContactHasSuffix

func BillingContactHasSuffix(v string) predicate.OrganizationSettings

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

func BillingContactIn

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

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

func BillingContactLT

func BillingContactLT(v string) predicate.OrganizationSettings

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

func BillingContactLTE

func BillingContactLTE(v string) predicate.OrganizationSettings

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

func BillingContactNEQ

func BillingContactNEQ(v string) predicate.OrganizationSettings

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

func BillingContactNotIn

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

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

func BillingEmail

func BillingEmail(v string) predicate.OrganizationSettings

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

func BillingEmailContains

func BillingEmailContains(v string) predicate.OrganizationSettings

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

func BillingEmailContainsFold

func BillingEmailContainsFold(v string) predicate.OrganizationSettings

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

func BillingEmailEQ

func BillingEmailEQ(v string) predicate.OrganizationSettings

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

func BillingEmailEqualFold

func BillingEmailEqualFold(v string) predicate.OrganizationSettings

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

func BillingEmailGT

func BillingEmailGT(v string) predicate.OrganizationSettings

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

func BillingEmailGTE

func BillingEmailGTE(v string) predicate.OrganizationSettings

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

func BillingEmailHasPrefix

func BillingEmailHasPrefix(v string) predicate.OrganizationSettings

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

func BillingEmailHasSuffix

func BillingEmailHasSuffix(v string) predicate.OrganizationSettings

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

func BillingEmailIn

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

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

func BillingEmailLT

func BillingEmailLT(v string) predicate.OrganizationSettings

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

func BillingEmailLTE

func BillingEmailLTE(v string) predicate.OrganizationSettings

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

func BillingEmailNEQ

func BillingEmailNEQ(v string) predicate.OrganizationSettings

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

func BillingEmailNotIn

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

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

func BillingPhone

func BillingPhone(v string) predicate.OrganizationSettings

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

func BillingPhoneContains

func BillingPhoneContains(v string) predicate.OrganizationSettings

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

func BillingPhoneContainsFold

func BillingPhoneContainsFold(v string) predicate.OrganizationSettings

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

func BillingPhoneEQ

func BillingPhoneEQ(v string) predicate.OrganizationSettings

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

func BillingPhoneEqualFold

func BillingPhoneEqualFold(v string) predicate.OrganizationSettings

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

func BillingPhoneGT

func BillingPhoneGT(v string) predicate.OrganizationSettings

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

func BillingPhoneGTE

func BillingPhoneGTE(v string) predicate.OrganizationSettings

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

func BillingPhoneHasPrefix

func BillingPhoneHasPrefix(v string) predicate.OrganizationSettings

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

func BillingPhoneHasSuffix

func BillingPhoneHasSuffix(v string) predicate.OrganizationSettings

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

func BillingPhoneIn

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

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

func BillingPhoneLT

func BillingPhoneLT(v string) predicate.OrganizationSettings

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

func BillingPhoneLTE

func BillingPhoneLTE(v string) predicate.OrganizationSettings

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

func BillingPhoneNEQ

func BillingPhoneNEQ(v string) predicate.OrganizationSettings

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

func BillingPhoneNotIn

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

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

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.OrganizationSettings

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.OrganizationSettings

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.OrganizationSettings

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.OrganizationSettings

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.OrganizationSettings

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

func CreatedAtNotIn

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

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

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.OrganizationSettings

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.OrganizationSettings

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.OrganizationSettings

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

func CreatedByGT

func CreatedByGT(v string) predicate.OrganizationSettings

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.OrganizationSettings

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.OrganizationSettings

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.OrganizationSettings

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.OrganizationSettings

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

func CreatedByLT

func CreatedByLT(v string) predicate.OrganizationSettings

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.OrganizationSettings

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.OrganizationSettings

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.OrganizationSettings

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

func HasOrgnaization

func HasOrgnaization() predicate.OrganizationSettings

HasOrgnaization applies the HasEdge predicate on the "orgnaization" edge.

func HasOrgnaizationWith

func HasOrgnaizationWith(preds ...predicate.Organization) predicate.OrganizationSettings

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.OrganizationSettings

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

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

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

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

func SSOCertContainsFold

func SSOCertContainsFold(v string) predicate.OrganizationSettings

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

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

func SSOCertGT

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

func SSOCertGTE

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

func SSOCertHasPrefix

func SSOCertHasPrefix(v string) predicate.OrganizationSettings

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

func SSOCertHasSuffix

func SSOCertHasSuffix(v string) predicate.OrganizationSettings

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

func SSOCertIn

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

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

func SSOCertLT

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

func SSOCertLTE

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

func SSOCertNEQ

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

func SSOCertNotIn

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

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

func SSOEntrypoint

func SSOEntrypoint(v string) predicate.OrganizationSettings

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

func SSOEntrypointContains

func SSOEntrypointContains(v string) predicate.OrganizationSettings

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

func SSOEntrypointContainsFold

func SSOEntrypointContainsFold(v string) predicate.OrganizationSettings

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

func SSOEntrypointEQ

func SSOEntrypointEQ(v string) predicate.OrganizationSettings

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

func SSOEntrypointEqualFold

func SSOEntrypointEqualFold(v string) predicate.OrganizationSettings

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

func SSOEntrypointGT

func SSOEntrypointGT(v string) predicate.OrganizationSettings

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

func SSOEntrypointGTE

func SSOEntrypointGTE(v string) predicate.OrganizationSettings

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

func SSOEntrypointHasPrefix

func SSOEntrypointHasPrefix(v string) predicate.OrganizationSettings

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

func SSOEntrypointHasSuffix

func SSOEntrypointHasSuffix(v string) predicate.OrganizationSettings

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

func SSOEntrypointIn

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

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

func SSOEntrypointLT

func SSOEntrypointLT(v string) predicate.OrganizationSettings

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

func SSOEntrypointLTE

func SSOEntrypointLTE(v string) predicate.OrganizationSettings

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

func SSOEntrypointNEQ

func SSOEntrypointNEQ(v string) predicate.OrganizationSettings

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

func SSOEntrypointNotIn

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

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

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

func SSOIssuerContainsFold

func SSOIssuerContainsFold(v string) predicate.OrganizationSettings

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

func SSOIssuerEQ

func SSOIssuerEQ(v string) predicate.OrganizationSettings

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

func SSOIssuerEqualFold

func SSOIssuerEqualFold(v string) predicate.OrganizationSettings

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

func SSOIssuerGT

func SSOIssuerGT(v string) predicate.OrganizationSettings

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

func SSOIssuerGTE

func SSOIssuerGTE(v string) predicate.OrganizationSettings

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

func SSOIssuerHasPrefix

func SSOIssuerHasPrefix(v string) predicate.OrganizationSettings

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

func SSOIssuerHasSuffix

func SSOIssuerHasSuffix(v string) predicate.OrganizationSettings

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

func SSOIssuerIn

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

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

func SSOIssuerLT

func SSOIssuerLT(v string) predicate.OrganizationSettings

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

func SSOIssuerLTE

func SSOIssuerLTE(v string) predicate.OrganizationSettings

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

func SSOIssuerNEQ

func SSOIssuerNEQ(v string) predicate.OrganizationSettings

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

func SSOIssuerNotIn

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

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

func TagsIsNil

func TagsIsNil() predicate.OrganizationSettings

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

func TagsNotNil

func TagsNotNil() predicate.OrganizationSettings

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

func TaxIdentifier

func TaxIdentifier(v string) predicate.OrganizationSettings

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

func TaxIdentifierContains

func TaxIdentifierContains(v string) predicate.OrganizationSettings

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

func TaxIdentifierContainsFold

func TaxIdentifierContainsFold(v string) predicate.OrganizationSettings

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

func TaxIdentifierEQ

func TaxIdentifierEQ(v string) predicate.OrganizationSettings

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

func TaxIdentifierEqualFold

func TaxIdentifierEqualFold(v string) predicate.OrganizationSettings

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

func TaxIdentifierGT

func TaxIdentifierGT(v string) predicate.OrganizationSettings

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

func TaxIdentifierGTE

func TaxIdentifierGTE(v string) predicate.OrganizationSettings

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

func TaxIdentifierHasPrefix

func TaxIdentifierHasPrefix(v string) predicate.OrganizationSettings

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

func TaxIdentifierHasSuffix

func TaxIdentifierHasSuffix(v string) predicate.OrganizationSettings

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

func TaxIdentifierIn

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

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

func TaxIdentifierLT

func TaxIdentifierLT(v string) predicate.OrganizationSettings

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

func TaxIdentifierLTE

func TaxIdentifierLTE(v string) predicate.OrganizationSettings

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

func TaxIdentifierNEQ

func TaxIdentifierNEQ(v string) predicate.OrganizationSettings

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

func TaxIdentifierNotIn

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

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

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.OrganizationSettings

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.OrganizationSettings

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.OrganizationSettings

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.OrganizationSettings

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.OrganizationSettings

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

func UpdatedAtNotIn

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

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

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.OrganizationSettings

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.OrganizationSettings

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.OrganizationSettings

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.OrganizationSettings

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.OrganizationSettings

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.OrganizationSettings

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.OrganizationSettings

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.OrganizationSettings

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.OrganizationSettings

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.OrganizationSettings

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.OrganizationSettings

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.OrganizationSettings

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 OrganizationSettings 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 ByOrgnaizationField

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

ByOrgnaizationField orders the results by orgnaization 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