billingprofile

package
v1.0.0-beta.186 Latest Latest
Warning

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

Go to latest
Published: Oct 2, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the billingprofile type in the database.
	Label = "billing_profile"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldNamespace holds the string denoting the namespace field in the database.
	FieldNamespace = "namespace"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// 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"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldSupplierAddressCountry holds the string denoting the supplier_address_country field in the database.
	FieldSupplierAddressCountry = "supplier_address_country"
	// FieldSupplierAddressPostalCode holds the string denoting the supplier_address_postal_code field in the database.
	FieldSupplierAddressPostalCode = "supplier_address_postal_code"
	// FieldSupplierAddressState holds the string denoting the supplier_address_state field in the database.
	FieldSupplierAddressState = "supplier_address_state"
	// FieldSupplierAddressCity holds the string denoting the supplier_address_city field in the database.
	FieldSupplierAddressCity = "supplier_address_city"
	// FieldSupplierAddressLine1 holds the string denoting the supplier_address_line1 field in the database.
	FieldSupplierAddressLine1 = "supplier_address_line1"
	// FieldSupplierAddressLine2 holds the string denoting the supplier_address_line2 field in the database.
	FieldSupplierAddressLine2 = "supplier_address_line2"
	// FieldSupplierAddressPhoneNumber holds the string denoting the supplier_address_phone_number field in the database.
	FieldSupplierAddressPhoneNumber = "supplier_address_phone_number"
	// FieldTaxProvider holds the string denoting the tax_provider field in the database.
	FieldTaxProvider = "tax_provider"
	// FieldInvoicingProvider holds the string denoting the invoicing_provider field in the database.
	FieldInvoicingProvider = "invoicing_provider"
	// FieldPaymentProvider holds the string denoting the payment_provider field in the database.
	FieldPaymentProvider = "payment_provider"
	// FieldWorkflowConfigID holds the string denoting the workflow_config_id field in the database.
	FieldWorkflowConfigID = "workflow_config_id"
	// FieldDefault holds the string denoting the default field in the database.
	FieldDefault = "default"
	// FieldSupplierName holds the string denoting the supplier_name field in the database.
	FieldSupplierName = "supplier_name"
	// EdgeBillingInvoices holds the string denoting the billing_invoices edge name in mutations.
	EdgeBillingInvoices = "billing_invoices"
	// EdgeBillingCustomerOverride holds the string denoting the billing_customer_override edge name in mutations.
	EdgeBillingCustomerOverride = "billing_customer_override"
	// EdgeWorkflowConfig holds the string denoting the workflow_config edge name in mutations.
	EdgeWorkflowConfig = "workflow_config"
	// Table holds the table name of the billingprofile in the database.
	Table = "billing_profiles"
	// BillingInvoicesTable is the table that holds the billing_invoices relation/edge.
	BillingInvoicesTable = "billing_invoices"
	// BillingInvoicesInverseTable is the table name for the BillingInvoice entity.
	// It exists in this package in order to avoid circular dependency with the "billinginvoice" package.
	BillingInvoicesInverseTable = "billing_invoices"
	// BillingInvoicesColumn is the table column denoting the billing_invoices relation/edge.
	BillingInvoicesColumn = "billing_profile_id"
	// BillingCustomerOverrideTable is the table that holds the billing_customer_override relation/edge.
	BillingCustomerOverrideTable = "billing_customer_overrides"
	// BillingCustomerOverrideInverseTable is the table name for the BillingCustomerOverride entity.
	// It exists in this package in order to avoid circular dependency with the "billingcustomeroverride" package.
	BillingCustomerOverrideInverseTable = "billing_customer_overrides"
	// BillingCustomerOverrideColumn is the table column denoting the billing_customer_override relation/edge.
	BillingCustomerOverrideColumn = "billing_profile_id"
	// WorkflowConfigTable is the table that holds the workflow_config relation/edge.
	WorkflowConfigTable = "billing_profiles"
	// WorkflowConfigInverseTable is the table name for the BillingWorkflowConfig entity.
	// It exists in this package in order to avoid circular dependency with the "billingworkflowconfig" package.
	WorkflowConfigInverseTable = "billing_workflow_configs"
	// WorkflowConfigColumn is the table column denoting the workflow_config relation/edge.
	WorkflowConfigColumn = "workflow_config_id"
)

Variables

View Source
var (
	// NamespaceValidator is a validator for the "namespace" field. It is called by the builders before save.
	NamespaceValidator func(string) error
	// 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
	// SupplierAddressCountryValidator is a validator for the "supplier_address_country" field. It is called by the builders before save.
	SupplierAddressCountryValidator func(string) error
	// WorkflowConfigIDValidator is a validator for the "workflow_config_id" field. It is called by the builders before save.
	WorkflowConfigIDValidator func(string) error
	// DefaultDefault holds the default value on creation for the "default" field.
	DefaultDefault bool
	// SupplierNameValidator is a validator for the "supplier_name" field. It is called by the builders before save.
	SupplierNameValidator func(string) error
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
)

Columns holds all SQL columns for billingprofile fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.BillingProfile

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.BillingProfile

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.BillingProfile

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.BillingProfile

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.BillingProfile

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.BillingProfile

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.BillingProfile

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

func CreatedAtNotIn

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

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

func Default

func Default(v bool) predicate.BillingProfile

Default applies equality check predicate on the "default" field. It's identical to DefaultEQ.

func DefaultEQ

func DefaultEQ(v bool) predicate.BillingProfile

DefaultEQ applies the EQ predicate on the "default" field.

func DefaultNEQ

func DefaultNEQ(v bool) predicate.BillingProfile

DefaultNEQ applies the NEQ predicate on the "default" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.BillingProfile

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.BillingProfile

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.BillingProfile

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.BillingProfile

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.BillingProfile

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.BillingProfile

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.BillingProfile

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.BillingProfile

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.BillingProfile

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

func HasBillingCustomerOverride

func HasBillingCustomerOverride() predicate.BillingProfile

HasBillingCustomerOverride applies the HasEdge predicate on the "billing_customer_override" edge.

func HasBillingCustomerOverrideWith

func HasBillingCustomerOverrideWith(preds ...predicate.BillingCustomerOverride) predicate.BillingProfile

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

func HasBillingInvoices

func HasBillingInvoices() predicate.BillingProfile

HasBillingInvoices applies the HasEdge predicate on the "billing_invoices" edge.

func HasBillingInvoicesWith

func HasBillingInvoicesWith(preds ...predicate.BillingInvoice) predicate.BillingProfile

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

func HasWorkflowConfig

func HasWorkflowConfig() predicate.BillingProfile

HasWorkflowConfig applies the HasEdge predicate on the "workflow_config" edge.

func HasWorkflowConfigWith

func HasWorkflowConfigWith(preds ...predicate.BillingWorkflowConfig) predicate.BillingProfile

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.BillingProfile

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

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

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

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

IDNotIn applies the NotIn predicate on the ID field.

func InvoicingProviderEQ

func InvoicingProviderEQ(v provider.InvoicingProvider) predicate.BillingProfile

InvoicingProviderEQ applies the EQ predicate on the "invoicing_provider" field.

func InvoicingProviderIn

func InvoicingProviderIn(vs ...provider.InvoicingProvider) predicate.BillingProfile

InvoicingProviderIn applies the In predicate on the "invoicing_provider" field.

func InvoicingProviderNEQ

func InvoicingProviderNEQ(v provider.InvoicingProvider) predicate.BillingProfile

InvoicingProviderNEQ applies the NEQ predicate on the "invoicing_provider" field.

func InvoicingProviderNotIn

func InvoicingProviderNotIn(vs ...provider.InvoicingProvider) predicate.BillingProfile

InvoicingProviderNotIn applies the NotIn predicate on the "invoicing_provider" field.

func InvoicingProviderValidator

func InvoicingProviderValidator(ip provider.InvoicingProvider) error

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

func MetadataIsNil

func MetadataIsNil() predicate.BillingProfile

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

func MetadataNotNil

func MetadataNotNil() predicate.BillingProfile

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

func Namespace

func Namespace(v string) predicate.BillingProfile

Namespace applies equality check predicate on the "namespace" field. It's identical to NamespaceEQ.

func NamespaceContains

func NamespaceContains(v string) predicate.BillingProfile

NamespaceContains applies the Contains predicate on the "namespace" field.

func NamespaceContainsFold

func NamespaceContainsFold(v string) predicate.BillingProfile

NamespaceContainsFold applies the ContainsFold predicate on the "namespace" field.

func NamespaceEQ

func NamespaceEQ(v string) predicate.BillingProfile

NamespaceEQ applies the EQ predicate on the "namespace" field.

func NamespaceEqualFold

func NamespaceEqualFold(v string) predicate.BillingProfile

NamespaceEqualFold applies the EqualFold predicate on the "namespace" field.

func NamespaceGT

func NamespaceGT(v string) predicate.BillingProfile

NamespaceGT applies the GT predicate on the "namespace" field.

func NamespaceGTE

func NamespaceGTE(v string) predicate.BillingProfile

NamespaceGTE applies the GTE predicate on the "namespace" field.

func NamespaceHasPrefix

func NamespaceHasPrefix(v string) predicate.BillingProfile

NamespaceHasPrefix applies the HasPrefix predicate on the "namespace" field.

func NamespaceHasSuffix

func NamespaceHasSuffix(v string) predicate.BillingProfile

NamespaceHasSuffix applies the HasSuffix predicate on the "namespace" field.

func NamespaceIn

func NamespaceIn(vs ...string) predicate.BillingProfile

NamespaceIn applies the In predicate on the "namespace" field.

func NamespaceLT

func NamespaceLT(v string) predicate.BillingProfile

NamespaceLT applies the LT predicate on the "namespace" field.

func NamespaceLTE

func NamespaceLTE(v string) predicate.BillingProfile

NamespaceLTE applies the LTE predicate on the "namespace" field.

func NamespaceNEQ

func NamespaceNEQ(v string) predicate.BillingProfile

NamespaceNEQ applies the NEQ predicate on the "namespace" field.

func NamespaceNotIn

func NamespaceNotIn(vs ...string) predicate.BillingProfile

NamespaceNotIn applies the NotIn predicate on the "namespace" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func PaymentProviderEQ

func PaymentProviderEQ(v provider.PaymentProvider) predicate.BillingProfile

PaymentProviderEQ applies the EQ predicate on the "payment_provider" field.

func PaymentProviderIn

func PaymentProviderIn(vs ...provider.PaymentProvider) predicate.BillingProfile

PaymentProviderIn applies the In predicate on the "payment_provider" field.

func PaymentProviderNEQ

func PaymentProviderNEQ(v provider.PaymentProvider) predicate.BillingProfile

PaymentProviderNEQ applies the NEQ predicate on the "payment_provider" field.

func PaymentProviderNotIn

func PaymentProviderNotIn(vs ...provider.PaymentProvider) predicate.BillingProfile

PaymentProviderNotIn applies the NotIn predicate on the "payment_provider" field.

func PaymentProviderValidator

func PaymentProviderValidator(pp provider.PaymentProvider) error

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

func SupplierAddressCity

func SupplierAddressCity(v string) predicate.BillingProfile

SupplierAddressCity applies equality check predicate on the "supplier_address_city" field. It's identical to SupplierAddressCityEQ.

func SupplierAddressCityContains

func SupplierAddressCityContains(v string) predicate.BillingProfile

SupplierAddressCityContains applies the Contains predicate on the "supplier_address_city" field.

func SupplierAddressCityContainsFold

func SupplierAddressCityContainsFold(v string) predicate.BillingProfile

SupplierAddressCityContainsFold applies the ContainsFold predicate on the "supplier_address_city" field.

func SupplierAddressCityEQ

func SupplierAddressCityEQ(v string) predicate.BillingProfile

SupplierAddressCityEQ applies the EQ predicate on the "supplier_address_city" field.

func SupplierAddressCityEqualFold

func SupplierAddressCityEqualFold(v string) predicate.BillingProfile

SupplierAddressCityEqualFold applies the EqualFold predicate on the "supplier_address_city" field.

func SupplierAddressCityGT

func SupplierAddressCityGT(v string) predicate.BillingProfile

SupplierAddressCityGT applies the GT predicate on the "supplier_address_city" field.

func SupplierAddressCityGTE

func SupplierAddressCityGTE(v string) predicate.BillingProfile

SupplierAddressCityGTE applies the GTE predicate on the "supplier_address_city" field.

func SupplierAddressCityHasPrefix

func SupplierAddressCityHasPrefix(v string) predicate.BillingProfile

SupplierAddressCityHasPrefix applies the HasPrefix predicate on the "supplier_address_city" field.

func SupplierAddressCityHasSuffix

func SupplierAddressCityHasSuffix(v string) predicate.BillingProfile

SupplierAddressCityHasSuffix applies the HasSuffix predicate on the "supplier_address_city" field.

func SupplierAddressCityIn

func SupplierAddressCityIn(vs ...string) predicate.BillingProfile

SupplierAddressCityIn applies the In predicate on the "supplier_address_city" field.

func SupplierAddressCityIsNil

func SupplierAddressCityIsNil() predicate.BillingProfile

SupplierAddressCityIsNil applies the IsNil predicate on the "supplier_address_city" field.

func SupplierAddressCityLT

func SupplierAddressCityLT(v string) predicate.BillingProfile

SupplierAddressCityLT applies the LT predicate on the "supplier_address_city" field.

func SupplierAddressCityLTE

func SupplierAddressCityLTE(v string) predicate.BillingProfile

SupplierAddressCityLTE applies the LTE predicate on the "supplier_address_city" field.

func SupplierAddressCityNEQ

func SupplierAddressCityNEQ(v string) predicate.BillingProfile

SupplierAddressCityNEQ applies the NEQ predicate on the "supplier_address_city" field.

func SupplierAddressCityNotIn

func SupplierAddressCityNotIn(vs ...string) predicate.BillingProfile

SupplierAddressCityNotIn applies the NotIn predicate on the "supplier_address_city" field.

func SupplierAddressCityNotNil

func SupplierAddressCityNotNil() predicate.BillingProfile

SupplierAddressCityNotNil applies the NotNil predicate on the "supplier_address_city" field.

func SupplierAddressCountry

func SupplierAddressCountry(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountry applies equality check predicate on the "supplier_address_country" field. It's identical to SupplierAddressCountryEQ.

func SupplierAddressCountryContains

func SupplierAddressCountryContains(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryContains applies the Contains predicate on the "supplier_address_country" field.

func SupplierAddressCountryContainsFold

func SupplierAddressCountryContainsFold(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryContainsFold applies the ContainsFold predicate on the "supplier_address_country" field.

func SupplierAddressCountryEQ

func SupplierAddressCountryEQ(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryEQ applies the EQ predicate on the "supplier_address_country" field.

func SupplierAddressCountryEqualFold

func SupplierAddressCountryEqualFold(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryEqualFold applies the EqualFold predicate on the "supplier_address_country" field.

func SupplierAddressCountryGT

func SupplierAddressCountryGT(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryGT applies the GT predicate on the "supplier_address_country" field.

func SupplierAddressCountryGTE

func SupplierAddressCountryGTE(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryGTE applies the GTE predicate on the "supplier_address_country" field.

func SupplierAddressCountryHasPrefix

func SupplierAddressCountryHasPrefix(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryHasPrefix applies the HasPrefix predicate on the "supplier_address_country" field.

func SupplierAddressCountryHasSuffix

func SupplierAddressCountryHasSuffix(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryHasSuffix applies the HasSuffix predicate on the "supplier_address_country" field.

func SupplierAddressCountryIn

func SupplierAddressCountryIn(vs ...models.CountryCode) predicate.BillingProfile

SupplierAddressCountryIn applies the In predicate on the "supplier_address_country" field.

func SupplierAddressCountryIsNil

func SupplierAddressCountryIsNil() predicate.BillingProfile

SupplierAddressCountryIsNil applies the IsNil predicate on the "supplier_address_country" field.

func SupplierAddressCountryLT

func SupplierAddressCountryLT(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryLT applies the LT predicate on the "supplier_address_country" field.

func SupplierAddressCountryLTE

func SupplierAddressCountryLTE(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryLTE applies the LTE predicate on the "supplier_address_country" field.

func SupplierAddressCountryNEQ

func SupplierAddressCountryNEQ(v models.CountryCode) predicate.BillingProfile

SupplierAddressCountryNEQ applies the NEQ predicate on the "supplier_address_country" field.

func SupplierAddressCountryNotIn

func SupplierAddressCountryNotIn(vs ...models.CountryCode) predicate.BillingProfile

SupplierAddressCountryNotIn applies the NotIn predicate on the "supplier_address_country" field.

func SupplierAddressCountryNotNil

func SupplierAddressCountryNotNil() predicate.BillingProfile

SupplierAddressCountryNotNil applies the NotNil predicate on the "supplier_address_country" field.

func SupplierAddressLine1

func SupplierAddressLine1(v string) predicate.BillingProfile

SupplierAddressLine1 applies equality check predicate on the "supplier_address_line1" field. It's identical to SupplierAddressLine1EQ.

func SupplierAddressLine1Contains

func SupplierAddressLine1Contains(v string) predicate.BillingProfile

SupplierAddressLine1Contains applies the Contains predicate on the "supplier_address_line1" field.

func SupplierAddressLine1ContainsFold

func SupplierAddressLine1ContainsFold(v string) predicate.BillingProfile

SupplierAddressLine1ContainsFold applies the ContainsFold predicate on the "supplier_address_line1" field.

func SupplierAddressLine1EQ

func SupplierAddressLine1EQ(v string) predicate.BillingProfile

SupplierAddressLine1EQ applies the EQ predicate on the "supplier_address_line1" field.

func SupplierAddressLine1EqualFold

func SupplierAddressLine1EqualFold(v string) predicate.BillingProfile

SupplierAddressLine1EqualFold applies the EqualFold predicate on the "supplier_address_line1" field.

func SupplierAddressLine1GT

func SupplierAddressLine1GT(v string) predicate.BillingProfile

SupplierAddressLine1GT applies the GT predicate on the "supplier_address_line1" field.

func SupplierAddressLine1GTE

func SupplierAddressLine1GTE(v string) predicate.BillingProfile

SupplierAddressLine1GTE applies the GTE predicate on the "supplier_address_line1" field.

func SupplierAddressLine1HasPrefix

func SupplierAddressLine1HasPrefix(v string) predicate.BillingProfile

SupplierAddressLine1HasPrefix applies the HasPrefix predicate on the "supplier_address_line1" field.

func SupplierAddressLine1HasSuffix

func SupplierAddressLine1HasSuffix(v string) predicate.BillingProfile

SupplierAddressLine1HasSuffix applies the HasSuffix predicate on the "supplier_address_line1" field.

func SupplierAddressLine1In

func SupplierAddressLine1In(vs ...string) predicate.BillingProfile

SupplierAddressLine1In applies the In predicate on the "supplier_address_line1" field.

func SupplierAddressLine1IsNil

func SupplierAddressLine1IsNil() predicate.BillingProfile

SupplierAddressLine1IsNil applies the IsNil predicate on the "supplier_address_line1" field.

func SupplierAddressLine1LT

func SupplierAddressLine1LT(v string) predicate.BillingProfile

SupplierAddressLine1LT applies the LT predicate on the "supplier_address_line1" field.

func SupplierAddressLine1LTE

func SupplierAddressLine1LTE(v string) predicate.BillingProfile

SupplierAddressLine1LTE applies the LTE predicate on the "supplier_address_line1" field.

func SupplierAddressLine1NEQ

func SupplierAddressLine1NEQ(v string) predicate.BillingProfile

SupplierAddressLine1NEQ applies the NEQ predicate on the "supplier_address_line1" field.

func SupplierAddressLine1NotIn

func SupplierAddressLine1NotIn(vs ...string) predicate.BillingProfile

SupplierAddressLine1NotIn applies the NotIn predicate on the "supplier_address_line1" field.

func SupplierAddressLine1NotNil

func SupplierAddressLine1NotNil() predicate.BillingProfile

SupplierAddressLine1NotNil applies the NotNil predicate on the "supplier_address_line1" field.

func SupplierAddressLine2

func SupplierAddressLine2(v string) predicate.BillingProfile

SupplierAddressLine2 applies equality check predicate on the "supplier_address_line2" field. It's identical to SupplierAddressLine2EQ.

func SupplierAddressLine2Contains

func SupplierAddressLine2Contains(v string) predicate.BillingProfile

SupplierAddressLine2Contains applies the Contains predicate on the "supplier_address_line2" field.

func SupplierAddressLine2ContainsFold

func SupplierAddressLine2ContainsFold(v string) predicate.BillingProfile

SupplierAddressLine2ContainsFold applies the ContainsFold predicate on the "supplier_address_line2" field.

func SupplierAddressLine2EQ

func SupplierAddressLine2EQ(v string) predicate.BillingProfile

SupplierAddressLine2EQ applies the EQ predicate on the "supplier_address_line2" field.

func SupplierAddressLine2EqualFold

func SupplierAddressLine2EqualFold(v string) predicate.BillingProfile

SupplierAddressLine2EqualFold applies the EqualFold predicate on the "supplier_address_line2" field.

func SupplierAddressLine2GT

func SupplierAddressLine2GT(v string) predicate.BillingProfile

SupplierAddressLine2GT applies the GT predicate on the "supplier_address_line2" field.

func SupplierAddressLine2GTE

func SupplierAddressLine2GTE(v string) predicate.BillingProfile

SupplierAddressLine2GTE applies the GTE predicate on the "supplier_address_line2" field.

func SupplierAddressLine2HasPrefix

func SupplierAddressLine2HasPrefix(v string) predicate.BillingProfile

SupplierAddressLine2HasPrefix applies the HasPrefix predicate on the "supplier_address_line2" field.

func SupplierAddressLine2HasSuffix

func SupplierAddressLine2HasSuffix(v string) predicate.BillingProfile

SupplierAddressLine2HasSuffix applies the HasSuffix predicate on the "supplier_address_line2" field.

func SupplierAddressLine2In

func SupplierAddressLine2In(vs ...string) predicate.BillingProfile

SupplierAddressLine2In applies the In predicate on the "supplier_address_line2" field.

func SupplierAddressLine2IsNil

func SupplierAddressLine2IsNil() predicate.BillingProfile

SupplierAddressLine2IsNil applies the IsNil predicate on the "supplier_address_line2" field.

func SupplierAddressLine2LT

func SupplierAddressLine2LT(v string) predicate.BillingProfile

SupplierAddressLine2LT applies the LT predicate on the "supplier_address_line2" field.

func SupplierAddressLine2LTE

func SupplierAddressLine2LTE(v string) predicate.BillingProfile

SupplierAddressLine2LTE applies the LTE predicate on the "supplier_address_line2" field.

func SupplierAddressLine2NEQ

func SupplierAddressLine2NEQ(v string) predicate.BillingProfile

SupplierAddressLine2NEQ applies the NEQ predicate on the "supplier_address_line2" field.

func SupplierAddressLine2NotIn

func SupplierAddressLine2NotIn(vs ...string) predicate.BillingProfile

SupplierAddressLine2NotIn applies the NotIn predicate on the "supplier_address_line2" field.

func SupplierAddressLine2NotNil

func SupplierAddressLine2NotNil() predicate.BillingProfile

SupplierAddressLine2NotNil applies the NotNil predicate on the "supplier_address_line2" field.

func SupplierAddressPhoneNumber

func SupplierAddressPhoneNumber(v string) predicate.BillingProfile

SupplierAddressPhoneNumber applies equality check predicate on the "supplier_address_phone_number" field. It's identical to SupplierAddressPhoneNumberEQ.

func SupplierAddressPhoneNumberContains

func SupplierAddressPhoneNumberContains(v string) predicate.BillingProfile

SupplierAddressPhoneNumberContains applies the Contains predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberContainsFold

func SupplierAddressPhoneNumberContainsFold(v string) predicate.BillingProfile

SupplierAddressPhoneNumberContainsFold applies the ContainsFold predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberEQ

func SupplierAddressPhoneNumberEQ(v string) predicate.BillingProfile

SupplierAddressPhoneNumberEQ applies the EQ predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberEqualFold

func SupplierAddressPhoneNumberEqualFold(v string) predicate.BillingProfile

SupplierAddressPhoneNumberEqualFold applies the EqualFold predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberGT

func SupplierAddressPhoneNumberGT(v string) predicate.BillingProfile

SupplierAddressPhoneNumberGT applies the GT predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberGTE

func SupplierAddressPhoneNumberGTE(v string) predicate.BillingProfile

SupplierAddressPhoneNumberGTE applies the GTE predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberHasPrefix

func SupplierAddressPhoneNumberHasPrefix(v string) predicate.BillingProfile

SupplierAddressPhoneNumberHasPrefix applies the HasPrefix predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberHasSuffix

func SupplierAddressPhoneNumberHasSuffix(v string) predicate.BillingProfile

SupplierAddressPhoneNumberHasSuffix applies the HasSuffix predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberIn

func SupplierAddressPhoneNumberIn(vs ...string) predicate.BillingProfile

SupplierAddressPhoneNumberIn applies the In predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberIsNil

func SupplierAddressPhoneNumberIsNil() predicate.BillingProfile

SupplierAddressPhoneNumberIsNil applies the IsNil predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberLT

func SupplierAddressPhoneNumberLT(v string) predicate.BillingProfile

SupplierAddressPhoneNumberLT applies the LT predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberLTE

func SupplierAddressPhoneNumberLTE(v string) predicate.BillingProfile

SupplierAddressPhoneNumberLTE applies the LTE predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberNEQ

func SupplierAddressPhoneNumberNEQ(v string) predicate.BillingProfile

SupplierAddressPhoneNumberNEQ applies the NEQ predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberNotIn

func SupplierAddressPhoneNumberNotIn(vs ...string) predicate.BillingProfile

SupplierAddressPhoneNumberNotIn applies the NotIn predicate on the "supplier_address_phone_number" field.

func SupplierAddressPhoneNumberNotNil

func SupplierAddressPhoneNumberNotNil() predicate.BillingProfile

SupplierAddressPhoneNumberNotNil applies the NotNil predicate on the "supplier_address_phone_number" field.

func SupplierAddressPostalCode

func SupplierAddressPostalCode(v string) predicate.BillingProfile

SupplierAddressPostalCode applies equality check predicate on the "supplier_address_postal_code" field. It's identical to SupplierAddressPostalCodeEQ.

func SupplierAddressPostalCodeContains

func SupplierAddressPostalCodeContains(v string) predicate.BillingProfile

SupplierAddressPostalCodeContains applies the Contains predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeContainsFold

func SupplierAddressPostalCodeContainsFold(v string) predicate.BillingProfile

SupplierAddressPostalCodeContainsFold applies the ContainsFold predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeEQ

func SupplierAddressPostalCodeEQ(v string) predicate.BillingProfile

SupplierAddressPostalCodeEQ applies the EQ predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeEqualFold

func SupplierAddressPostalCodeEqualFold(v string) predicate.BillingProfile

SupplierAddressPostalCodeEqualFold applies the EqualFold predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeGT

func SupplierAddressPostalCodeGT(v string) predicate.BillingProfile

SupplierAddressPostalCodeGT applies the GT predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeGTE

func SupplierAddressPostalCodeGTE(v string) predicate.BillingProfile

SupplierAddressPostalCodeGTE applies the GTE predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeHasPrefix

func SupplierAddressPostalCodeHasPrefix(v string) predicate.BillingProfile

SupplierAddressPostalCodeHasPrefix applies the HasPrefix predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeHasSuffix

func SupplierAddressPostalCodeHasSuffix(v string) predicate.BillingProfile

SupplierAddressPostalCodeHasSuffix applies the HasSuffix predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeIn

func SupplierAddressPostalCodeIn(vs ...string) predicate.BillingProfile

SupplierAddressPostalCodeIn applies the In predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeIsNil

func SupplierAddressPostalCodeIsNil() predicate.BillingProfile

SupplierAddressPostalCodeIsNil applies the IsNil predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeLT

func SupplierAddressPostalCodeLT(v string) predicate.BillingProfile

SupplierAddressPostalCodeLT applies the LT predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeLTE

func SupplierAddressPostalCodeLTE(v string) predicate.BillingProfile

SupplierAddressPostalCodeLTE applies the LTE predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeNEQ

func SupplierAddressPostalCodeNEQ(v string) predicate.BillingProfile

SupplierAddressPostalCodeNEQ applies the NEQ predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeNotIn

func SupplierAddressPostalCodeNotIn(vs ...string) predicate.BillingProfile

SupplierAddressPostalCodeNotIn applies the NotIn predicate on the "supplier_address_postal_code" field.

func SupplierAddressPostalCodeNotNil

func SupplierAddressPostalCodeNotNil() predicate.BillingProfile

SupplierAddressPostalCodeNotNil applies the NotNil predicate on the "supplier_address_postal_code" field.

func SupplierAddressState

func SupplierAddressState(v string) predicate.BillingProfile

SupplierAddressState applies equality check predicate on the "supplier_address_state" field. It's identical to SupplierAddressStateEQ.

func SupplierAddressStateContains

func SupplierAddressStateContains(v string) predicate.BillingProfile

SupplierAddressStateContains applies the Contains predicate on the "supplier_address_state" field.

func SupplierAddressStateContainsFold

func SupplierAddressStateContainsFold(v string) predicate.BillingProfile

SupplierAddressStateContainsFold applies the ContainsFold predicate on the "supplier_address_state" field.

func SupplierAddressStateEQ

func SupplierAddressStateEQ(v string) predicate.BillingProfile

SupplierAddressStateEQ applies the EQ predicate on the "supplier_address_state" field.

func SupplierAddressStateEqualFold

func SupplierAddressStateEqualFold(v string) predicate.BillingProfile

SupplierAddressStateEqualFold applies the EqualFold predicate on the "supplier_address_state" field.

func SupplierAddressStateGT

func SupplierAddressStateGT(v string) predicate.BillingProfile

SupplierAddressStateGT applies the GT predicate on the "supplier_address_state" field.

func SupplierAddressStateGTE

func SupplierAddressStateGTE(v string) predicate.BillingProfile

SupplierAddressStateGTE applies the GTE predicate on the "supplier_address_state" field.

func SupplierAddressStateHasPrefix

func SupplierAddressStateHasPrefix(v string) predicate.BillingProfile

SupplierAddressStateHasPrefix applies the HasPrefix predicate on the "supplier_address_state" field.

func SupplierAddressStateHasSuffix

func SupplierAddressStateHasSuffix(v string) predicate.BillingProfile

SupplierAddressStateHasSuffix applies the HasSuffix predicate on the "supplier_address_state" field.

func SupplierAddressStateIn

func SupplierAddressStateIn(vs ...string) predicate.BillingProfile

SupplierAddressStateIn applies the In predicate on the "supplier_address_state" field.

func SupplierAddressStateIsNil

func SupplierAddressStateIsNil() predicate.BillingProfile

SupplierAddressStateIsNil applies the IsNil predicate on the "supplier_address_state" field.

func SupplierAddressStateLT

func SupplierAddressStateLT(v string) predicate.BillingProfile

SupplierAddressStateLT applies the LT predicate on the "supplier_address_state" field.

func SupplierAddressStateLTE

func SupplierAddressStateLTE(v string) predicate.BillingProfile

SupplierAddressStateLTE applies the LTE predicate on the "supplier_address_state" field.

func SupplierAddressStateNEQ

func SupplierAddressStateNEQ(v string) predicate.BillingProfile

SupplierAddressStateNEQ applies the NEQ predicate on the "supplier_address_state" field.

func SupplierAddressStateNotIn

func SupplierAddressStateNotIn(vs ...string) predicate.BillingProfile

SupplierAddressStateNotIn applies the NotIn predicate on the "supplier_address_state" field.

func SupplierAddressStateNotNil

func SupplierAddressStateNotNil() predicate.BillingProfile

SupplierAddressStateNotNil applies the NotNil predicate on the "supplier_address_state" field.

func SupplierName

func SupplierName(v string) predicate.BillingProfile

SupplierName applies equality check predicate on the "supplier_name" field. It's identical to SupplierNameEQ.

func SupplierNameContains

func SupplierNameContains(v string) predicate.BillingProfile

SupplierNameContains applies the Contains predicate on the "supplier_name" field.

func SupplierNameContainsFold

func SupplierNameContainsFold(v string) predicate.BillingProfile

SupplierNameContainsFold applies the ContainsFold predicate on the "supplier_name" field.

func SupplierNameEQ

func SupplierNameEQ(v string) predicate.BillingProfile

SupplierNameEQ applies the EQ predicate on the "supplier_name" field.

func SupplierNameEqualFold

func SupplierNameEqualFold(v string) predicate.BillingProfile

SupplierNameEqualFold applies the EqualFold predicate on the "supplier_name" field.

func SupplierNameGT

func SupplierNameGT(v string) predicate.BillingProfile

SupplierNameGT applies the GT predicate on the "supplier_name" field.

func SupplierNameGTE

func SupplierNameGTE(v string) predicate.BillingProfile

SupplierNameGTE applies the GTE predicate on the "supplier_name" field.

func SupplierNameHasPrefix

func SupplierNameHasPrefix(v string) predicate.BillingProfile

SupplierNameHasPrefix applies the HasPrefix predicate on the "supplier_name" field.

func SupplierNameHasSuffix

func SupplierNameHasSuffix(v string) predicate.BillingProfile

SupplierNameHasSuffix applies the HasSuffix predicate on the "supplier_name" field.

func SupplierNameIn

func SupplierNameIn(vs ...string) predicate.BillingProfile

SupplierNameIn applies the In predicate on the "supplier_name" field.

func SupplierNameLT

func SupplierNameLT(v string) predicate.BillingProfile

SupplierNameLT applies the LT predicate on the "supplier_name" field.

func SupplierNameLTE

func SupplierNameLTE(v string) predicate.BillingProfile

SupplierNameLTE applies the LTE predicate on the "supplier_name" field.

func SupplierNameNEQ

func SupplierNameNEQ(v string) predicate.BillingProfile

SupplierNameNEQ applies the NEQ predicate on the "supplier_name" field.

func SupplierNameNotIn

func SupplierNameNotIn(vs ...string) predicate.BillingProfile

SupplierNameNotIn applies the NotIn predicate on the "supplier_name" field.

func TaxProviderEQ

TaxProviderEQ applies the EQ predicate on the "tax_provider" field.

func TaxProviderIn

func TaxProviderIn(vs ...provider.TaxProvider) predicate.BillingProfile

TaxProviderIn applies the In predicate on the "tax_provider" field.

func TaxProviderNEQ

func TaxProviderNEQ(v provider.TaxProvider) predicate.BillingProfile

TaxProviderNEQ applies the NEQ predicate on the "tax_provider" field.

func TaxProviderNotIn

func TaxProviderNotIn(vs ...provider.TaxProvider) predicate.BillingProfile

TaxProviderNotIn applies the NotIn predicate on the "tax_provider" field.

func TaxProviderValidator

func TaxProviderValidator(tp provider.TaxProvider) error

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.BillingProfile

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.BillingProfile

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.BillingProfile

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.BillingProfile

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.BillingProfile

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.BillingProfile

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.BillingProfile

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

func UpdatedAtNotIn

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

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

func WorkflowConfigID

func WorkflowConfigID(v string) predicate.BillingProfile

WorkflowConfigID applies equality check predicate on the "workflow_config_id" field. It's identical to WorkflowConfigIDEQ.

func WorkflowConfigIDContains

func WorkflowConfigIDContains(v string) predicate.BillingProfile

WorkflowConfigIDContains applies the Contains predicate on the "workflow_config_id" field.

func WorkflowConfigIDContainsFold

func WorkflowConfigIDContainsFold(v string) predicate.BillingProfile

WorkflowConfigIDContainsFold applies the ContainsFold predicate on the "workflow_config_id" field.

func WorkflowConfigIDEQ

func WorkflowConfigIDEQ(v string) predicate.BillingProfile

WorkflowConfigIDEQ applies the EQ predicate on the "workflow_config_id" field.

func WorkflowConfigIDEqualFold

func WorkflowConfigIDEqualFold(v string) predicate.BillingProfile

WorkflowConfigIDEqualFold applies the EqualFold predicate on the "workflow_config_id" field.

func WorkflowConfigIDGT

func WorkflowConfigIDGT(v string) predicate.BillingProfile

WorkflowConfigIDGT applies the GT predicate on the "workflow_config_id" field.

func WorkflowConfigIDGTE

func WorkflowConfigIDGTE(v string) predicate.BillingProfile

WorkflowConfigIDGTE applies the GTE predicate on the "workflow_config_id" field.

func WorkflowConfigIDHasPrefix

func WorkflowConfigIDHasPrefix(v string) predicate.BillingProfile

WorkflowConfigIDHasPrefix applies the HasPrefix predicate on the "workflow_config_id" field.

func WorkflowConfigIDHasSuffix

func WorkflowConfigIDHasSuffix(v string) predicate.BillingProfile

WorkflowConfigIDHasSuffix applies the HasSuffix predicate on the "workflow_config_id" field.

func WorkflowConfigIDIn

func WorkflowConfigIDIn(vs ...string) predicate.BillingProfile

WorkflowConfigIDIn applies the In predicate on the "workflow_config_id" field.

func WorkflowConfigIDLT

func WorkflowConfigIDLT(v string) predicate.BillingProfile

WorkflowConfigIDLT applies the LT predicate on the "workflow_config_id" field.

func WorkflowConfigIDLTE

func WorkflowConfigIDLTE(v string) predicate.BillingProfile

WorkflowConfigIDLTE applies the LTE predicate on the "workflow_config_id" field.

func WorkflowConfigIDNEQ

func WorkflowConfigIDNEQ(v string) predicate.BillingProfile

WorkflowConfigIDNEQ applies the NEQ predicate on the "workflow_config_id" field.

func WorkflowConfigIDNotIn

func WorkflowConfigIDNotIn(vs ...string) predicate.BillingProfile

WorkflowConfigIDNotIn applies the NotIn predicate on the "workflow_config_id" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the BillingProfile queries.

func ByBillingCustomerOverride

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

ByBillingCustomerOverride orders the results by billing_customer_override terms.

func ByBillingCustomerOverrideCount

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

ByBillingCustomerOverrideCount orders the results by billing_customer_override count.

func ByBillingInvoices

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

ByBillingInvoices orders the results by billing_invoices terms.

func ByBillingInvoicesCount

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

ByBillingInvoicesCount orders the results by billing_invoices count.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDefault

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

ByDefault orders the results by the default field.

func ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByID

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

ByID orders the results by the id field.

func ByInvoicingProvider

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

ByInvoicingProvider orders the results by the invoicing_provider field.

func ByNamespace

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

ByNamespace orders the results by the namespace field.

func ByPaymentProvider

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

ByPaymentProvider orders the results by the payment_provider field.

func BySupplierAddressCity

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

BySupplierAddressCity orders the results by the supplier_address_city field.

func BySupplierAddressCountry

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

BySupplierAddressCountry orders the results by the supplier_address_country field.

func BySupplierAddressLine1

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

BySupplierAddressLine1 orders the results by the supplier_address_line1 field.

func BySupplierAddressLine2

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

BySupplierAddressLine2 orders the results by the supplier_address_line2 field.

func BySupplierAddressPhoneNumber

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

BySupplierAddressPhoneNumber orders the results by the supplier_address_phone_number field.

func BySupplierAddressPostalCode

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

BySupplierAddressPostalCode orders the results by the supplier_address_postal_code field.

func BySupplierAddressState

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

BySupplierAddressState orders the results by the supplier_address_state field.

func BySupplierName

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

BySupplierName orders the results by the supplier_name field.

func ByTaxProvider

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

ByTaxProvider orders the results by the tax_provider field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByWorkflowConfigField

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

ByWorkflowConfigField orders the results by workflow_config field.

func ByWorkflowConfigID

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

ByWorkflowConfigID orders the results by the workflow_config_id field.

Jump to

Keyboard shortcuts

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