voiceoverspeaker

package
v0.0.0-...-bfbcaf2 Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2024 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the voiceoverspeaker type in the database.
	Label = "voiceover_speaker"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldNameInWorker holds the string denoting the name_in_worker field in the database.
	FieldNameInWorker = "name_in_worker"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldIsActive holds the string denoting the is_active field in the database.
	FieldIsActive = "is_active"
	// FieldIsDefault holds the string denoting the is_default field in the database.
	FieldIsDefault = "is_default"
	// FieldIsHidden holds the string denoting the is_hidden field in the database.
	FieldIsHidden = "is_hidden"
	// FieldLocale holds the string denoting the locale field in the database.
	FieldLocale = "locale"
	// FieldModelID holds the string denoting the model_id field in the database.
	FieldModelID = "model_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"
	// EdgeVoiceovers holds the string denoting the voiceovers edge name in mutations.
	EdgeVoiceovers = "voiceovers"
	// EdgeVoiceoverModels holds the string denoting the voiceover_models edge name in mutations.
	EdgeVoiceoverModels = "voiceover_models"
	// Table holds the table name of the voiceoverspeaker in the database.
	Table = "voiceover_speakers"
	// VoiceoversTable is the table that holds the voiceovers relation/edge.
	VoiceoversTable = "voiceovers"
	// VoiceoversInverseTable is the table name for the Voiceover entity.
	// It exists in this package in order to avoid circular dependency with the "voiceover" package.
	VoiceoversInverseTable = "voiceovers"
	// VoiceoversColumn is the table column denoting the voiceovers relation/edge.
	VoiceoversColumn = "speaker_id"
	// VoiceoverModelsTable is the table that holds the voiceover_models relation/edge.
	VoiceoverModelsTable = "voiceover_speakers"
	// VoiceoverModelsInverseTable is the table name for the VoiceoverModel entity.
	// It exists in this package in order to avoid circular dependency with the "voiceovermodel" package.
	VoiceoverModelsInverseTable = "voiceover_models"
	// VoiceoverModelsColumn is the table column denoting the voiceover_models relation/edge.
	VoiceoverModelsColumn = "model_id"
)

Variables

View Source
var (
	// DefaultIsActive holds the default value on creation for the "is_active" field.
	DefaultIsActive bool
	// DefaultIsDefault holds the default value on creation for the "is_default" field.
	DefaultIsDefault bool
	// DefaultIsHidden holds the default value on creation for the "is_hidden" field.
	DefaultIsHidden bool
	// DefaultLocale holds the default value on creation for the "locale" field.
	DefaultLocale string
	// 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
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for voiceoverspeaker fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.VoiceoverSpeaker

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.VoiceoverSpeaker

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.VoiceoverSpeaker

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.VoiceoverSpeaker

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.VoiceoverSpeaker

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.VoiceoverSpeaker

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.VoiceoverSpeaker

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

func CreatedAtNotIn

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

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

func HasVoiceoverModels

func HasVoiceoverModels() predicate.VoiceoverSpeaker

HasVoiceoverModels applies the HasEdge predicate on the "voiceover_models" edge.

func HasVoiceoverModelsWith

func HasVoiceoverModelsWith(preds ...predicate.VoiceoverModel) predicate.VoiceoverSpeaker

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

func HasVoiceovers

func HasVoiceovers() predicate.VoiceoverSpeaker

HasVoiceovers applies the HasEdge predicate on the "voiceovers" edge.

func HasVoiceoversWith

func HasVoiceoversWith(preds ...predicate.Voiceover) predicate.VoiceoverSpeaker

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

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ 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

func IDIn(ids ...uuid.UUID) predicate.VoiceoverSpeaker

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 ...uuid.UUID) predicate.VoiceoverSpeaker

IDNotIn applies the NotIn predicate on the ID field.

func IsActive

func IsActive(v bool) predicate.VoiceoverSpeaker

IsActive applies equality check predicate on the "is_active" field. It's identical to IsActiveEQ.

func IsActiveEQ

func IsActiveEQ(v bool) predicate.VoiceoverSpeaker

IsActiveEQ applies the EQ predicate on the "is_active" field.

func IsActiveNEQ

func IsActiveNEQ(v bool) predicate.VoiceoverSpeaker

IsActiveNEQ applies the NEQ predicate on the "is_active" field.

func IsDefault

func IsDefault(v bool) predicate.VoiceoverSpeaker

IsDefault applies equality check predicate on the "is_default" field. It's identical to IsDefaultEQ.

func IsDefaultEQ

func IsDefaultEQ(v bool) predicate.VoiceoverSpeaker

IsDefaultEQ applies the EQ predicate on the "is_default" field.

func IsDefaultNEQ

func IsDefaultNEQ(v bool) predicate.VoiceoverSpeaker

IsDefaultNEQ applies the NEQ predicate on the "is_default" field.

func IsHidden

func IsHidden(v bool) predicate.VoiceoverSpeaker

IsHidden applies equality check predicate on the "is_hidden" field. It's identical to IsHiddenEQ.

func IsHiddenEQ

func IsHiddenEQ(v bool) predicate.VoiceoverSpeaker

IsHiddenEQ applies the EQ predicate on the "is_hidden" field.

func IsHiddenNEQ

func IsHiddenNEQ(v bool) predicate.VoiceoverSpeaker

IsHiddenNEQ applies the NEQ predicate on the "is_hidden" field.

func Locale

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

func LocaleContains

func LocaleContains(v string) predicate.VoiceoverSpeaker

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

func LocaleContainsFold

func LocaleContainsFold(v string) predicate.VoiceoverSpeaker

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

func LocaleEQ

func LocaleEQ(v string) predicate.VoiceoverSpeaker

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

func LocaleEqualFold

func LocaleEqualFold(v string) predicate.VoiceoverSpeaker

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

func LocaleGT

func LocaleGT(v string) predicate.VoiceoverSpeaker

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

func LocaleGTE

func LocaleGTE(v string) predicate.VoiceoverSpeaker

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

func LocaleHasPrefix

func LocaleHasPrefix(v string) predicate.VoiceoverSpeaker

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

func LocaleHasSuffix

func LocaleHasSuffix(v string) predicate.VoiceoverSpeaker

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

func LocaleIn

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

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

func LocaleLT

func LocaleLT(v string) predicate.VoiceoverSpeaker

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

func LocaleLTE

func LocaleLTE(v string) predicate.VoiceoverSpeaker

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

func LocaleNEQ

func LocaleNEQ(v string) predicate.VoiceoverSpeaker

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

func LocaleNotIn

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

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

func ModelID

ModelID applies equality check predicate on the "model_id" field. It's identical to ModelIDEQ.

func ModelIDEQ

func ModelIDEQ(v uuid.UUID) predicate.VoiceoverSpeaker

ModelIDEQ applies the EQ predicate on the "model_id" field.

func ModelIDIn

func ModelIDIn(vs ...uuid.UUID) predicate.VoiceoverSpeaker

ModelIDIn applies the In predicate on the "model_id" field.

func ModelIDNEQ

func ModelIDNEQ(v uuid.UUID) predicate.VoiceoverSpeaker

ModelIDNEQ applies the NEQ predicate on the "model_id" field.

func ModelIDNotIn

func ModelIDNotIn(vs ...uuid.UUID) predicate.VoiceoverSpeaker

ModelIDNotIn applies the NotIn predicate on the "model_id" field.

func Name

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

func NameContains

func NameContains(v string) predicate.VoiceoverSpeaker

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

func NameContainsFold

func NameContainsFold(v string) predicate.VoiceoverSpeaker

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

func NameEQ

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

func NameEqualFold

func NameEqualFold(v string) predicate.VoiceoverSpeaker

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

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.VoiceoverSpeaker

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.VoiceoverSpeaker

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

func NameIn

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

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

func NameInWorker

func NameInWorker(v string) predicate.VoiceoverSpeaker

NameInWorker applies equality check predicate on the "name_in_worker" field. It's identical to NameInWorkerEQ.

func NameInWorkerContains

func NameInWorkerContains(v string) predicate.VoiceoverSpeaker

NameInWorkerContains applies the Contains predicate on the "name_in_worker" field.

func NameInWorkerContainsFold

func NameInWorkerContainsFold(v string) predicate.VoiceoverSpeaker

NameInWorkerContainsFold applies the ContainsFold predicate on the "name_in_worker" field.

func NameInWorkerEQ

func NameInWorkerEQ(v string) predicate.VoiceoverSpeaker

NameInWorkerEQ applies the EQ predicate on the "name_in_worker" field.

func NameInWorkerEqualFold

func NameInWorkerEqualFold(v string) predicate.VoiceoverSpeaker

NameInWorkerEqualFold applies the EqualFold predicate on the "name_in_worker" field.

func NameInWorkerGT

func NameInWorkerGT(v string) predicate.VoiceoverSpeaker

NameInWorkerGT applies the GT predicate on the "name_in_worker" field.

func NameInWorkerGTE

func NameInWorkerGTE(v string) predicate.VoiceoverSpeaker

NameInWorkerGTE applies the GTE predicate on the "name_in_worker" field.

func NameInWorkerHasPrefix

func NameInWorkerHasPrefix(v string) predicate.VoiceoverSpeaker

NameInWorkerHasPrefix applies the HasPrefix predicate on the "name_in_worker" field.

func NameInWorkerHasSuffix

func NameInWorkerHasSuffix(v string) predicate.VoiceoverSpeaker

NameInWorkerHasSuffix applies the HasSuffix predicate on the "name_in_worker" field.

func NameInWorkerIn

func NameInWorkerIn(vs ...string) predicate.VoiceoverSpeaker

NameInWorkerIn applies the In predicate on the "name_in_worker" field.

func NameInWorkerLT

func NameInWorkerLT(v string) predicate.VoiceoverSpeaker

NameInWorkerLT applies the LT predicate on the "name_in_worker" field.

func NameInWorkerLTE

func NameInWorkerLTE(v string) predicate.VoiceoverSpeaker

NameInWorkerLTE applies the LTE predicate on the "name_in_worker" field.

func NameInWorkerNEQ

func NameInWorkerNEQ(v string) predicate.VoiceoverSpeaker

NameInWorkerNEQ applies the NEQ predicate on the "name_in_worker" field.

func NameInWorkerNotIn

func NameInWorkerNotIn(vs ...string) predicate.VoiceoverSpeaker

NameInWorkerNotIn applies the NotIn predicate on the "name_in_worker" field.

func NameIsNil

func NameIsNil() predicate.VoiceoverSpeaker

NameIsNil applies the IsNil predicate on the "name" field.

func NameLT

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

func NameLTE

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

func NameNEQ

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

func NameNotIn

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

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

func NameNotNil

func NameNotNil() predicate.VoiceoverSpeaker

NameNotNil applies the NotNil predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.VoiceoverSpeaker

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.VoiceoverSpeaker

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.VoiceoverSpeaker

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.VoiceoverSpeaker

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.VoiceoverSpeaker

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.VoiceoverSpeaker

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.VoiceoverSpeaker

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

func UpdatedAtNotIn

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

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

func ValidColumn

func ValidColumn(column string) bool

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

Types

This section is empty.

Jump to

Keyboard shortcuts

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