subscriptionlineitem

package
v1.0.21 Latest Latest
Warning

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

Go to latest
Published: Aug 13, 2025 License: AGPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the subscriptionlineitem type in the database.
	Label = "subscription_line_item"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldTenantID holds the string denoting the tenant_id field in the database.
	FieldTenantID = "tenant_id"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// 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"
	// FieldEnvironmentID holds the string denoting the environment_id field in the database.
	FieldEnvironmentID = "environment_id"
	// FieldSubscriptionID holds the string denoting the subscription_id field in the database.
	FieldSubscriptionID = "subscription_id"
	// FieldCustomerID holds the string denoting the customer_id field in the database.
	FieldCustomerID = "customer_id"
	// FieldEntityID holds the string denoting the entity_id field in the database.
	FieldEntityID = "entity_id"
	// FieldEntityType holds the string denoting the entity_type field in the database.
	FieldEntityType = "entity_type"
	// FieldPlanDisplayName holds the string denoting the plan_display_name field in the database.
	FieldPlanDisplayName = "plan_display_name"
	// FieldPriceID holds the string denoting the price_id field in the database.
	FieldPriceID = "price_id"
	// FieldPriceType holds the string denoting the price_type field in the database.
	FieldPriceType = "price_type"
	// FieldMeterID holds the string denoting the meter_id field in the database.
	FieldMeterID = "meter_id"
	// FieldMeterDisplayName holds the string denoting the meter_display_name field in the database.
	FieldMeterDisplayName = "meter_display_name"
	// FieldPriceUnitID holds the string denoting the price_unit_id field in the database.
	FieldPriceUnitID = "price_unit_id"
	// FieldPriceUnit holds the string denoting the price_unit field in the database.
	FieldPriceUnit = "price_unit"
	// FieldDisplayName holds the string denoting the display_name field in the database.
	FieldDisplayName = "display_name"
	// FieldQuantity holds the string denoting the quantity field in the database.
	FieldQuantity = "quantity"
	// FieldCurrency holds the string denoting the currency field in the database.
	FieldCurrency = "currency"
	// FieldBillingPeriod holds the string denoting the billing_period field in the database.
	FieldBillingPeriod = "billing_period"
	// FieldInvoiceCadence holds the string denoting the invoice_cadence field in the database.
	FieldInvoiceCadence = "invoice_cadence"
	// FieldTrialPeriod holds the string denoting the trial_period field in the database.
	FieldTrialPeriod = "trial_period"
	// FieldStartDate holds the string denoting the start_date field in the database.
	FieldStartDate = "start_date"
	// FieldEndDate holds the string denoting the end_date field in the database.
	FieldEndDate = "end_date"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// EdgeSubscription holds the string denoting the subscription edge name in mutations.
	EdgeSubscription = "subscription"
	// EdgeCouponAssociations holds the string denoting the coupon_associations edge name in mutations.
	EdgeCouponAssociations = "coupon_associations"
	// Table holds the table name of the subscriptionlineitem in the database.
	Table = "subscription_line_items"
	// SubscriptionTable is the table that holds the subscription relation/edge.
	SubscriptionTable = "subscription_line_items"
	// SubscriptionInverseTable is the table name for the Subscription entity.
	// It exists in this package in order to avoid circular dependency with the "subscription" package.
	SubscriptionInverseTable = "subscriptions"
	// SubscriptionColumn is the table column denoting the subscription relation/edge.
	SubscriptionColumn = "subscription_id"
	// CouponAssociationsTable is the table that holds the coupon_associations relation/edge.
	CouponAssociationsTable = "coupon_associations"
	// CouponAssociationsInverseTable is the table name for the CouponAssociation entity.
	// It exists in this package in order to avoid circular dependency with the "couponassociation" package.
	CouponAssociationsInverseTable = "coupon_associations"
	// CouponAssociationsColumn is the table column denoting the coupon_associations relation/edge.
	CouponAssociationsColumn = "subscription_line_item_id"
)

Variables

View Source
var (
	// TenantIDValidator is a validator for the "tenant_id" field. It is called by the builders before save.
	TenantIDValidator func(string) error
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus 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
	// DefaultEnvironmentID holds the default value on creation for the "environment_id" field.
	DefaultEnvironmentID string
	// SubscriptionIDValidator is a validator for the "subscription_id" field. It is called by the builders before save.
	SubscriptionIDValidator func(string) error
	// CustomerIDValidator is a validator for the "customer_id" field. It is called by the builders before save.
	CustomerIDValidator func(string) error
	// DefaultEntityType holds the default value on creation for the "entity_type" field.
	DefaultEntityType string
	// PriceIDValidator is a validator for the "price_id" field. It is called by the builders before save.
	PriceIDValidator func(string) error
	// DefaultQuantity holds the default value on creation for the "quantity" field.
	DefaultQuantity decimal.Decimal
	// CurrencyValidator is a validator for the "currency" field. It is called by the builders before save.
	CurrencyValidator func(string) error
	// BillingPeriodValidator is a validator for the "billing_period" field. It is called by the builders before save.
	BillingPeriodValidator func(string) error
	// DefaultTrialPeriod holds the default value on creation for the "trial_period" field.
	DefaultTrialPeriod int
)

Columns holds all SQL columns for subscriptionlineitem fields.

Functions

func And

And groups predicates with the AND operator between them.

func BillingPeriod

func BillingPeriod(v string) predicate.SubscriptionLineItem

BillingPeriod applies equality check predicate on the "billing_period" field. It's identical to BillingPeriodEQ.

func BillingPeriodContains

func BillingPeriodContains(v string) predicate.SubscriptionLineItem

BillingPeriodContains applies the Contains predicate on the "billing_period" field.

func BillingPeriodContainsFold

func BillingPeriodContainsFold(v string) predicate.SubscriptionLineItem

BillingPeriodContainsFold applies the ContainsFold predicate on the "billing_period" field.

func BillingPeriodEQ

func BillingPeriodEQ(v string) predicate.SubscriptionLineItem

BillingPeriodEQ applies the EQ predicate on the "billing_period" field.

func BillingPeriodEqualFold

func BillingPeriodEqualFold(v string) predicate.SubscriptionLineItem

BillingPeriodEqualFold applies the EqualFold predicate on the "billing_period" field.

func BillingPeriodGT

func BillingPeriodGT(v string) predicate.SubscriptionLineItem

BillingPeriodGT applies the GT predicate on the "billing_period" field.

func BillingPeriodGTE

func BillingPeriodGTE(v string) predicate.SubscriptionLineItem

BillingPeriodGTE applies the GTE predicate on the "billing_period" field.

func BillingPeriodHasPrefix

func BillingPeriodHasPrefix(v string) predicate.SubscriptionLineItem

BillingPeriodHasPrefix applies the HasPrefix predicate on the "billing_period" field.

func BillingPeriodHasSuffix

func BillingPeriodHasSuffix(v string) predicate.SubscriptionLineItem

BillingPeriodHasSuffix applies the HasSuffix predicate on the "billing_period" field.

func BillingPeriodIn

func BillingPeriodIn(vs ...string) predicate.SubscriptionLineItem

BillingPeriodIn applies the In predicate on the "billing_period" field.

func BillingPeriodLT

func BillingPeriodLT(v string) predicate.SubscriptionLineItem

BillingPeriodLT applies the LT predicate on the "billing_period" field.

func BillingPeriodLTE

func BillingPeriodLTE(v string) predicate.SubscriptionLineItem

BillingPeriodLTE applies the LTE predicate on the "billing_period" field.

func BillingPeriodNEQ

func BillingPeriodNEQ(v string) predicate.SubscriptionLineItem

BillingPeriodNEQ applies the NEQ predicate on the "billing_period" field.

func BillingPeriodNotIn

func BillingPeriodNotIn(vs ...string) predicate.SubscriptionLineItem

BillingPeriodNotIn applies the NotIn predicate on the "billing_period" 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.SubscriptionLineItem

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.SubscriptionLineItem

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.SubscriptionLineItem

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.SubscriptionLineItem

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.SubscriptionLineItem

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.SubscriptionLineItem

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

func CreatedAtNotIn

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

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

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.SubscriptionLineItem

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.SubscriptionLineItem

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.SubscriptionLineItem

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

func CreatedByGT

func CreatedByGT(v string) predicate.SubscriptionLineItem

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.SubscriptionLineItem

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.SubscriptionLineItem

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.SubscriptionLineItem

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.SubscriptionLineItem

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

func CreatedByLT

func CreatedByLT(v string) predicate.SubscriptionLineItem

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.SubscriptionLineItem

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.SubscriptionLineItem

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.SubscriptionLineItem

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

func Currency

Currency applies equality check predicate on the "currency" field. It's identical to CurrencyEQ.

func CurrencyContains

func CurrencyContains(v string) predicate.SubscriptionLineItem

CurrencyContains applies the Contains predicate on the "currency" field.

func CurrencyContainsFold

func CurrencyContainsFold(v string) predicate.SubscriptionLineItem

CurrencyContainsFold applies the ContainsFold predicate on the "currency" field.

func CurrencyEQ

CurrencyEQ applies the EQ predicate on the "currency" field.

func CurrencyEqualFold

func CurrencyEqualFold(v string) predicate.SubscriptionLineItem

CurrencyEqualFold applies the EqualFold predicate on the "currency" field.

func CurrencyGT

CurrencyGT applies the GT predicate on the "currency" field.

func CurrencyGTE

func CurrencyGTE(v string) predicate.SubscriptionLineItem

CurrencyGTE applies the GTE predicate on the "currency" field.

func CurrencyHasPrefix

func CurrencyHasPrefix(v string) predicate.SubscriptionLineItem

CurrencyHasPrefix applies the HasPrefix predicate on the "currency" field.

func CurrencyHasSuffix

func CurrencyHasSuffix(v string) predicate.SubscriptionLineItem

CurrencyHasSuffix applies the HasSuffix predicate on the "currency" field.

func CurrencyIn

func CurrencyIn(vs ...string) predicate.SubscriptionLineItem

CurrencyIn applies the In predicate on the "currency" field.

func CurrencyLT

CurrencyLT applies the LT predicate on the "currency" field.

func CurrencyLTE

func CurrencyLTE(v string) predicate.SubscriptionLineItem

CurrencyLTE applies the LTE predicate on the "currency" field.

func CurrencyNEQ

func CurrencyNEQ(v string) predicate.SubscriptionLineItem

CurrencyNEQ applies the NEQ predicate on the "currency" field.

func CurrencyNotIn

func CurrencyNotIn(vs ...string) predicate.SubscriptionLineItem

CurrencyNotIn applies the NotIn predicate on the "currency" field.

func CustomerID

CustomerID applies equality check predicate on the "customer_id" field. It's identical to CustomerIDEQ.

func CustomerIDContains

func CustomerIDContains(v string) predicate.SubscriptionLineItem

CustomerIDContains applies the Contains predicate on the "customer_id" field.

func CustomerIDContainsFold

func CustomerIDContainsFold(v string) predicate.SubscriptionLineItem

CustomerIDContainsFold applies the ContainsFold predicate on the "customer_id" field.

func CustomerIDEQ

func CustomerIDEQ(v string) predicate.SubscriptionLineItem

CustomerIDEQ applies the EQ predicate on the "customer_id" field.

func CustomerIDEqualFold

func CustomerIDEqualFold(v string) predicate.SubscriptionLineItem

CustomerIDEqualFold applies the EqualFold predicate on the "customer_id" field.

func CustomerIDGT

func CustomerIDGT(v string) predicate.SubscriptionLineItem

CustomerIDGT applies the GT predicate on the "customer_id" field.

func CustomerIDGTE

func CustomerIDGTE(v string) predicate.SubscriptionLineItem

CustomerIDGTE applies the GTE predicate on the "customer_id" field.

func CustomerIDHasPrefix

func CustomerIDHasPrefix(v string) predicate.SubscriptionLineItem

CustomerIDHasPrefix applies the HasPrefix predicate on the "customer_id" field.

func CustomerIDHasSuffix

func CustomerIDHasSuffix(v string) predicate.SubscriptionLineItem

CustomerIDHasSuffix applies the HasSuffix predicate on the "customer_id" field.

func CustomerIDIn

func CustomerIDIn(vs ...string) predicate.SubscriptionLineItem

CustomerIDIn applies the In predicate on the "customer_id" field.

func CustomerIDLT

func CustomerIDLT(v string) predicate.SubscriptionLineItem

CustomerIDLT applies the LT predicate on the "customer_id" field.

func CustomerIDLTE

func CustomerIDLTE(v string) predicate.SubscriptionLineItem

CustomerIDLTE applies the LTE predicate on the "customer_id" field.

func CustomerIDNEQ

func CustomerIDNEQ(v string) predicate.SubscriptionLineItem

CustomerIDNEQ applies the NEQ predicate on the "customer_id" field.

func CustomerIDNotIn

func CustomerIDNotIn(vs ...string) predicate.SubscriptionLineItem

CustomerIDNotIn applies the NotIn predicate on the "customer_id" field.

func DisplayName

func DisplayName(v string) predicate.SubscriptionLineItem

DisplayName applies equality check predicate on the "display_name" field. It's identical to DisplayNameEQ.

func DisplayNameContains

func DisplayNameContains(v string) predicate.SubscriptionLineItem

DisplayNameContains applies the Contains predicate on the "display_name" field.

func DisplayNameContainsFold

func DisplayNameContainsFold(v string) predicate.SubscriptionLineItem

DisplayNameContainsFold applies the ContainsFold predicate on the "display_name" field.

func DisplayNameEQ

func DisplayNameEQ(v string) predicate.SubscriptionLineItem

DisplayNameEQ applies the EQ predicate on the "display_name" field.

func DisplayNameEqualFold

func DisplayNameEqualFold(v string) predicate.SubscriptionLineItem

DisplayNameEqualFold applies the EqualFold predicate on the "display_name" field.

func DisplayNameGT

func DisplayNameGT(v string) predicate.SubscriptionLineItem

DisplayNameGT applies the GT predicate on the "display_name" field.

func DisplayNameGTE

func DisplayNameGTE(v string) predicate.SubscriptionLineItem

DisplayNameGTE applies the GTE predicate on the "display_name" field.

func DisplayNameHasPrefix

func DisplayNameHasPrefix(v string) predicate.SubscriptionLineItem

DisplayNameHasPrefix applies the HasPrefix predicate on the "display_name" field.

func DisplayNameHasSuffix

func DisplayNameHasSuffix(v string) predicate.SubscriptionLineItem

DisplayNameHasSuffix applies the HasSuffix predicate on the "display_name" field.

func DisplayNameIn

func DisplayNameIn(vs ...string) predicate.SubscriptionLineItem

DisplayNameIn applies the In predicate on the "display_name" field.

func DisplayNameIsNil

func DisplayNameIsNil() predicate.SubscriptionLineItem

DisplayNameIsNil applies the IsNil predicate on the "display_name" field.

func DisplayNameLT

func DisplayNameLT(v string) predicate.SubscriptionLineItem

DisplayNameLT applies the LT predicate on the "display_name" field.

func DisplayNameLTE

func DisplayNameLTE(v string) predicate.SubscriptionLineItem

DisplayNameLTE applies the LTE predicate on the "display_name" field.

func DisplayNameNEQ

func DisplayNameNEQ(v string) predicate.SubscriptionLineItem

DisplayNameNEQ applies the NEQ predicate on the "display_name" field.

func DisplayNameNotIn

func DisplayNameNotIn(vs ...string) predicate.SubscriptionLineItem

DisplayNameNotIn applies the NotIn predicate on the "display_name" field.

func DisplayNameNotNil

func DisplayNameNotNil() predicate.SubscriptionLineItem

DisplayNameNotNil applies the NotNil predicate on the "display_name" field.

func EndDate

EndDate applies equality check predicate on the "end_date" field. It's identical to EndDateEQ.

func EndDateEQ

EndDateEQ applies the EQ predicate on the "end_date" field.

func EndDateGT

EndDateGT applies the GT predicate on the "end_date" field.

func EndDateGTE

EndDateGTE applies the GTE predicate on the "end_date" field.

func EndDateIn

func EndDateIn(vs ...time.Time) predicate.SubscriptionLineItem

EndDateIn applies the In predicate on the "end_date" field.

func EndDateIsNil

func EndDateIsNil() predicate.SubscriptionLineItem

EndDateIsNil applies the IsNil predicate on the "end_date" field.

func EndDateLT

EndDateLT applies the LT predicate on the "end_date" field.

func EndDateLTE

EndDateLTE applies the LTE predicate on the "end_date" field.

func EndDateNEQ

EndDateNEQ applies the NEQ predicate on the "end_date" field.

func EndDateNotIn

func EndDateNotIn(vs ...time.Time) predicate.SubscriptionLineItem

EndDateNotIn applies the NotIn predicate on the "end_date" field.

func EndDateNotNil

func EndDateNotNil() predicate.SubscriptionLineItem

EndDateNotNil applies the NotNil predicate on the "end_date" field.

func EntityID added in v1.0.21

EntityID applies equality check predicate on the "entity_id" field. It's identical to EntityIDEQ.

func EntityIDContains added in v1.0.21

func EntityIDContains(v string) predicate.SubscriptionLineItem

EntityIDContains applies the Contains predicate on the "entity_id" field.

func EntityIDContainsFold added in v1.0.21

func EntityIDContainsFold(v string) predicate.SubscriptionLineItem

EntityIDContainsFold applies the ContainsFold predicate on the "entity_id" field.

func EntityIDEQ added in v1.0.21

EntityIDEQ applies the EQ predicate on the "entity_id" field.

func EntityIDEqualFold added in v1.0.21

func EntityIDEqualFold(v string) predicate.SubscriptionLineItem

EntityIDEqualFold applies the EqualFold predicate on the "entity_id" field.

func EntityIDGT added in v1.0.21

EntityIDGT applies the GT predicate on the "entity_id" field.

func EntityIDGTE added in v1.0.21

func EntityIDGTE(v string) predicate.SubscriptionLineItem

EntityIDGTE applies the GTE predicate on the "entity_id" field.

func EntityIDHasPrefix added in v1.0.21

func EntityIDHasPrefix(v string) predicate.SubscriptionLineItem

EntityIDHasPrefix applies the HasPrefix predicate on the "entity_id" field.

func EntityIDHasSuffix added in v1.0.21

func EntityIDHasSuffix(v string) predicate.SubscriptionLineItem

EntityIDHasSuffix applies the HasSuffix predicate on the "entity_id" field.

func EntityIDIn added in v1.0.21

func EntityIDIn(vs ...string) predicate.SubscriptionLineItem

EntityIDIn applies the In predicate on the "entity_id" field.

func EntityIDIsNil added in v1.0.21

func EntityIDIsNil() predicate.SubscriptionLineItem

EntityIDIsNil applies the IsNil predicate on the "entity_id" field.

func EntityIDLT added in v1.0.21

EntityIDLT applies the LT predicate on the "entity_id" field.

func EntityIDLTE added in v1.0.21

func EntityIDLTE(v string) predicate.SubscriptionLineItem

EntityIDLTE applies the LTE predicate on the "entity_id" field.

func EntityIDNEQ added in v1.0.21

func EntityIDNEQ(v string) predicate.SubscriptionLineItem

EntityIDNEQ applies the NEQ predicate on the "entity_id" field.

func EntityIDNotIn added in v1.0.21

func EntityIDNotIn(vs ...string) predicate.SubscriptionLineItem

EntityIDNotIn applies the NotIn predicate on the "entity_id" field.

func EntityIDNotNil added in v1.0.21

func EntityIDNotNil() predicate.SubscriptionLineItem

EntityIDNotNil applies the NotNil predicate on the "entity_id" field.

func EntityType added in v1.0.21

EntityType applies equality check predicate on the "entity_type" field. It's identical to EntityTypeEQ.

func EntityTypeContains added in v1.0.21

func EntityTypeContains(v string) predicate.SubscriptionLineItem

EntityTypeContains applies the Contains predicate on the "entity_type" field.

func EntityTypeContainsFold added in v1.0.21

func EntityTypeContainsFold(v string) predicate.SubscriptionLineItem

EntityTypeContainsFold applies the ContainsFold predicate on the "entity_type" field.

func EntityTypeEQ added in v1.0.21

func EntityTypeEQ(v string) predicate.SubscriptionLineItem

EntityTypeEQ applies the EQ predicate on the "entity_type" field.

func EntityTypeEqualFold added in v1.0.21

func EntityTypeEqualFold(v string) predicate.SubscriptionLineItem

EntityTypeEqualFold applies the EqualFold predicate on the "entity_type" field.

func EntityTypeGT added in v1.0.21

func EntityTypeGT(v string) predicate.SubscriptionLineItem

EntityTypeGT applies the GT predicate on the "entity_type" field.

func EntityTypeGTE added in v1.0.21

func EntityTypeGTE(v string) predicate.SubscriptionLineItem

EntityTypeGTE applies the GTE predicate on the "entity_type" field.

func EntityTypeHasPrefix added in v1.0.21

func EntityTypeHasPrefix(v string) predicate.SubscriptionLineItem

EntityTypeHasPrefix applies the HasPrefix predicate on the "entity_type" field.

func EntityTypeHasSuffix added in v1.0.21

func EntityTypeHasSuffix(v string) predicate.SubscriptionLineItem

EntityTypeHasSuffix applies the HasSuffix predicate on the "entity_type" field.

func EntityTypeIn added in v1.0.21

func EntityTypeIn(vs ...string) predicate.SubscriptionLineItem

EntityTypeIn applies the In predicate on the "entity_type" field.

func EntityTypeLT added in v1.0.21

func EntityTypeLT(v string) predicate.SubscriptionLineItem

EntityTypeLT applies the LT predicate on the "entity_type" field.

func EntityTypeLTE added in v1.0.21

func EntityTypeLTE(v string) predicate.SubscriptionLineItem

EntityTypeLTE applies the LTE predicate on the "entity_type" field.

func EntityTypeNEQ added in v1.0.21

func EntityTypeNEQ(v string) predicate.SubscriptionLineItem

EntityTypeNEQ applies the NEQ predicate on the "entity_type" field.

func EntityTypeNotIn added in v1.0.21

func EntityTypeNotIn(vs ...string) predicate.SubscriptionLineItem

EntityTypeNotIn applies the NotIn predicate on the "entity_type" field.

func EnvironmentID

func EnvironmentID(v string) predicate.SubscriptionLineItem

EnvironmentID applies equality check predicate on the "environment_id" field. It's identical to EnvironmentIDEQ.

func EnvironmentIDContains

func EnvironmentIDContains(v string) predicate.SubscriptionLineItem

EnvironmentIDContains applies the Contains predicate on the "environment_id" field.

func EnvironmentIDContainsFold

func EnvironmentIDContainsFold(v string) predicate.SubscriptionLineItem

EnvironmentIDContainsFold applies the ContainsFold predicate on the "environment_id" field.

func EnvironmentIDEQ

func EnvironmentIDEQ(v string) predicate.SubscriptionLineItem

EnvironmentIDEQ applies the EQ predicate on the "environment_id" field.

func EnvironmentIDEqualFold

func EnvironmentIDEqualFold(v string) predicate.SubscriptionLineItem

EnvironmentIDEqualFold applies the EqualFold predicate on the "environment_id" field.

func EnvironmentIDGT

func EnvironmentIDGT(v string) predicate.SubscriptionLineItem

EnvironmentIDGT applies the GT predicate on the "environment_id" field.

func EnvironmentIDGTE

func EnvironmentIDGTE(v string) predicate.SubscriptionLineItem

EnvironmentIDGTE applies the GTE predicate on the "environment_id" field.

func EnvironmentIDHasPrefix

func EnvironmentIDHasPrefix(v string) predicate.SubscriptionLineItem

EnvironmentIDHasPrefix applies the HasPrefix predicate on the "environment_id" field.

func EnvironmentIDHasSuffix

func EnvironmentIDHasSuffix(v string) predicate.SubscriptionLineItem

EnvironmentIDHasSuffix applies the HasSuffix predicate on the "environment_id" field.

func EnvironmentIDIn

func EnvironmentIDIn(vs ...string) predicate.SubscriptionLineItem

EnvironmentIDIn applies the In predicate on the "environment_id" field.

func EnvironmentIDIsNil

func EnvironmentIDIsNil() predicate.SubscriptionLineItem

EnvironmentIDIsNil applies the IsNil predicate on the "environment_id" field.

func EnvironmentIDLT

func EnvironmentIDLT(v string) predicate.SubscriptionLineItem

EnvironmentIDLT applies the LT predicate on the "environment_id" field.

func EnvironmentIDLTE

func EnvironmentIDLTE(v string) predicate.SubscriptionLineItem

EnvironmentIDLTE applies the LTE predicate on the "environment_id" field.

func EnvironmentIDNEQ

func EnvironmentIDNEQ(v string) predicate.SubscriptionLineItem

EnvironmentIDNEQ applies the NEQ predicate on the "environment_id" field.

func EnvironmentIDNotIn

func EnvironmentIDNotIn(vs ...string) predicate.SubscriptionLineItem

EnvironmentIDNotIn applies the NotIn predicate on the "environment_id" field.

func EnvironmentIDNotNil

func EnvironmentIDNotNil() predicate.SubscriptionLineItem

EnvironmentIDNotNil applies the NotNil predicate on the "environment_id" field.

func HasCouponAssociations added in v1.0.21

func HasCouponAssociations() predicate.SubscriptionLineItem

HasCouponAssociations applies the HasEdge predicate on the "coupon_associations" edge.

func HasCouponAssociationsWith added in v1.0.21

func HasCouponAssociationsWith(preds ...predicate.CouponAssociation) predicate.SubscriptionLineItem

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

func HasSubscription

func HasSubscription() predicate.SubscriptionLineItem

HasSubscription applies the HasEdge predicate on the "subscription" edge.

func HasSubscriptionWith

func HasSubscriptionWith(preds ...predicate.Subscription) predicate.SubscriptionLineItem

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.SubscriptionLineItem

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

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

IDNotIn applies the NotIn predicate on the ID field.

func InvoiceCadence

func InvoiceCadence(v string) predicate.SubscriptionLineItem

InvoiceCadence applies equality check predicate on the "invoice_cadence" field. It's identical to InvoiceCadenceEQ.

func InvoiceCadenceContains

func InvoiceCadenceContains(v string) predicate.SubscriptionLineItem

InvoiceCadenceContains applies the Contains predicate on the "invoice_cadence" field.

func InvoiceCadenceContainsFold

func InvoiceCadenceContainsFold(v string) predicate.SubscriptionLineItem

InvoiceCadenceContainsFold applies the ContainsFold predicate on the "invoice_cadence" field.

func InvoiceCadenceEQ

func InvoiceCadenceEQ(v string) predicate.SubscriptionLineItem

InvoiceCadenceEQ applies the EQ predicate on the "invoice_cadence" field.

func InvoiceCadenceEqualFold

func InvoiceCadenceEqualFold(v string) predicate.SubscriptionLineItem

InvoiceCadenceEqualFold applies the EqualFold predicate on the "invoice_cadence" field.

func InvoiceCadenceGT

func InvoiceCadenceGT(v string) predicate.SubscriptionLineItem

InvoiceCadenceGT applies the GT predicate on the "invoice_cadence" field.

func InvoiceCadenceGTE

func InvoiceCadenceGTE(v string) predicate.SubscriptionLineItem

InvoiceCadenceGTE applies the GTE predicate on the "invoice_cadence" field.

func InvoiceCadenceHasPrefix

func InvoiceCadenceHasPrefix(v string) predicate.SubscriptionLineItem

InvoiceCadenceHasPrefix applies the HasPrefix predicate on the "invoice_cadence" field.

func InvoiceCadenceHasSuffix

func InvoiceCadenceHasSuffix(v string) predicate.SubscriptionLineItem

InvoiceCadenceHasSuffix applies the HasSuffix predicate on the "invoice_cadence" field.

func InvoiceCadenceIn

func InvoiceCadenceIn(vs ...string) predicate.SubscriptionLineItem

InvoiceCadenceIn applies the In predicate on the "invoice_cadence" field.

func InvoiceCadenceIsNil

func InvoiceCadenceIsNil() predicate.SubscriptionLineItem

InvoiceCadenceIsNil applies the IsNil predicate on the "invoice_cadence" field.

func InvoiceCadenceLT

func InvoiceCadenceLT(v string) predicate.SubscriptionLineItem

InvoiceCadenceLT applies the LT predicate on the "invoice_cadence" field.

func InvoiceCadenceLTE

func InvoiceCadenceLTE(v string) predicate.SubscriptionLineItem

InvoiceCadenceLTE applies the LTE predicate on the "invoice_cadence" field.

func InvoiceCadenceNEQ

func InvoiceCadenceNEQ(v string) predicate.SubscriptionLineItem

InvoiceCadenceNEQ applies the NEQ predicate on the "invoice_cadence" field.

func InvoiceCadenceNotIn

func InvoiceCadenceNotIn(vs ...string) predicate.SubscriptionLineItem

InvoiceCadenceNotIn applies the NotIn predicate on the "invoice_cadence" field.

func InvoiceCadenceNotNil

func InvoiceCadenceNotNil() predicate.SubscriptionLineItem

InvoiceCadenceNotNil applies the NotNil predicate on the "invoice_cadence" field.

func MetadataIsNil

func MetadataIsNil() predicate.SubscriptionLineItem

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

func MetadataNotNil

func MetadataNotNil() predicate.SubscriptionLineItem

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

func MeterDisplayName

func MeterDisplayName(v string) predicate.SubscriptionLineItem

MeterDisplayName applies equality check predicate on the "meter_display_name" field. It's identical to MeterDisplayNameEQ.

func MeterDisplayNameContains

func MeterDisplayNameContains(v string) predicate.SubscriptionLineItem

MeterDisplayNameContains applies the Contains predicate on the "meter_display_name" field.

func MeterDisplayNameContainsFold

func MeterDisplayNameContainsFold(v string) predicate.SubscriptionLineItem

MeterDisplayNameContainsFold applies the ContainsFold predicate on the "meter_display_name" field.

func MeterDisplayNameEQ

func MeterDisplayNameEQ(v string) predicate.SubscriptionLineItem

MeterDisplayNameEQ applies the EQ predicate on the "meter_display_name" field.

func MeterDisplayNameEqualFold

func MeterDisplayNameEqualFold(v string) predicate.SubscriptionLineItem

MeterDisplayNameEqualFold applies the EqualFold predicate on the "meter_display_name" field.

func MeterDisplayNameGT

func MeterDisplayNameGT(v string) predicate.SubscriptionLineItem

MeterDisplayNameGT applies the GT predicate on the "meter_display_name" field.

func MeterDisplayNameGTE

func MeterDisplayNameGTE(v string) predicate.SubscriptionLineItem

MeterDisplayNameGTE applies the GTE predicate on the "meter_display_name" field.

func MeterDisplayNameHasPrefix

func MeterDisplayNameHasPrefix(v string) predicate.SubscriptionLineItem

MeterDisplayNameHasPrefix applies the HasPrefix predicate on the "meter_display_name" field.

func MeterDisplayNameHasSuffix

func MeterDisplayNameHasSuffix(v string) predicate.SubscriptionLineItem

MeterDisplayNameHasSuffix applies the HasSuffix predicate on the "meter_display_name" field.

func MeterDisplayNameIn

func MeterDisplayNameIn(vs ...string) predicate.SubscriptionLineItem

MeterDisplayNameIn applies the In predicate on the "meter_display_name" field.

func MeterDisplayNameIsNil

func MeterDisplayNameIsNil() predicate.SubscriptionLineItem

MeterDisplayNameIsNil applies the IsNil predicate on the "meter_display_name" field.

func MeterDisplayNameLT

func MeterDisplayNameLT(v string) predicate.SubscriptionLineItem

MeterDisplayNameLT applies the LT predicate on the "meter_display_name" field.

func MeterDisplayNameLTE

func MeterDisplayNameLTE(v string) predicate.SubscriptionLineItem

MeterDisplayNameLTE applies the LTE predicate on the "meter_display_name" field.

func MeterDisplayNameNEQ

func MeterDisplayNameNEQ(v string) predicate.SubscriptionLineItem

MeterDisplayNameNEQ applies the NEQ predicate on the "meter_display_name" field.

func MeterDisplayNameNotIn

func MeterDisplayNameNotIn(vs ...string) predicate.SubscriptionLineItem

MeterDisplayNameNotIn applies the NotIn predicate on the "meter_display_name" field.

func MeterDisplayNameNotNil

func MeterDisplayNameNotNil() predicate.SubscriptionLineItem

MeterDisplayNameNotNil applies the NotNil predicate on the "meter_display_name" field.

func MeterID

MeterID applies equality check predicate on the "meter_id" field. It's identical to MeterIDEQ.

func MeterIDContains

func MeterIDContains(v string) predicate.SubscriptionLineItem

MeterIDContains applies the Contains predicate on the "meter_id" field.

func MeterIDContainsFold

func MeterIDContainsFold(v string) predicate.SubscriptionLineItem

MeterIDContainsFold applies the ContainsFold predicate on the "meter_id" field.

func MeterIDEQ

MeterIDEQ applies the EQ predicate on the "meter_id" field.

func MeterIDEqualFold

func MeterIDEqualFold(v string) predicate.SubscriptionLineItem

MeterIDEqualFold applies the EqualFold predicate on the "meter_id" field.

func MeterIDGT

MeterIDGT applies the GT predicate on the "meter_id" field.

func MeterIDGTE

MeterIDGTE applies the GTE predicate on the "meter_id" field.

func MeterIDHasPrefix

func MeterIDHasPrefix(v string) predicate.SubscriptionLineItem

MeterIDHasPrefix applies the HasPrefix predicate on the "meter_id" field.

func MeterIDHasSuffix

func MeterIDHasSuffix(v string) predicate.SubscriptionLineItem

MeterIDHasSuffix applies the HasSuffix predicate on the "meter_id" field.

func MeterIDIn

func MeterIDIn(vs ...string) predicate.SubscriptionLineItem

MeterIDIn applies the In predicate on the "meter_id" field.

func MeterIDIsNil

func MeterIDIsNil() predicate.SubscriptionLineItem

MeterIDIsNil applies the IsNil predicate on the "meter_id" field.

func MeterIDLT

MeterIDLT applies the LT predicate on the "meter_id" field.

func MeterIDLTE

MeterIDLTE applies the LTE predicate on the "meter_id" field.

func MeterIDNEQ

MeterIDNEQ applies the NEQ predicate on the "meter_id" field.

func MeterIDNotIn

func MeterIDNotIn(vs ...string) predicate.SubscriptionLineItem

MeterIDNotIn applies the NotIn predicate on the "meter_id" field.

func MeterIDNotNil

func MeterIDNotNil() predicate.SubscriptionLineItem

MeterIDNotNil applies the NotNil predicate on the "meter_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 PlanDisplayName

func PlanDisplayName(v string) predicate.SubscriptionLineItem

PlanDisplayName applies equality check predicate on the "plan_display_name" field. It's identical to PlanDisplayNameEQ.

func PlanDisplayNameContains

func PlanDisplayNameContains(v string) predicate.SubscriptionLineItem

PlanDisplayNameContains applies the Contains predicate on the "plan_display_name" field.

func PlanDisplayNameContainsFold

func PlanDisplayNameContainsFold(v string) predicate.SubscriptionLineItem

PlanDisplayNameContainsFold applies the ContainsFold predicate on the "plan_display_name" field.

func PlanDisplayNameEQ

func PlanDisplayNameEQ(v string) predicate.SubscriptionLineItem

PlanDisplayNameEQ applies the EQ predicate on the "plan_display_name" field.

func PlanDisplayNameEqualFold

func PlanDisplayNameEqualFold(v string) predicate.SubscriptionLineItem

PlanDisplayNameEqualFold applies the EqualFold predicate on the "plan_display_name" field.

func PlanDisplayNameGT

func PlanDisplayNameGT(v string) predicate.SubscriptionLineItem

PlanDisplayNameGT applies the GT predicate on the "plan_display_name" field.

func PlanDisplayNameGTE

func PlanDisplayNameGTE(v string) predicate.SubscriptionLineItem

PlanDisplayNameGTE applies the GTE predicate on the "plan_display_name" field.

func PlanDisplayNameHasPrefix

func PlanDisplayNameHasPrefix(v string) predicate.SubscriptionLineItem

PlanDisplayNameHasPrefix applies the HasPrefix predicate on the "plan_display_name" field.

func PlanDisplayNameHasSuffix

func PlanDisplayNameHasSuffix(v string) predicate.SubscriptionLineItem

PlanDisplayNameHasSuffix applies the HasSuffix predicate on the "plan_display_name" field.

func PlanDisplayNameIn

func PlanDisplayNameIn(vs ...string) predicate.SubscriptionLineItem

PlanDisplayNameIn applies the In predicate on the "plan_display_name" field.

func PlanDisplayNameIsNil

func PlanDisplayNameIsNil() predicate.SubscriptionLineItem

PlanDisplayNameIsNil applies the IsNil predicate on the "plan_display_name" field.

func PlanDisplayNameLT

func PlanDisplayNameLT(v string) predicate.SubscriptionLineItem

PlanDisplayNameLT applies the LT predicate on the "plan_display_name" field.

func PlanDisplayNameLTE

func PlanDisplayNameLTE(v string) predicate.SubscriptionLineItem

PlanDisplayNameLTE applies the LTE predicate on the "plan_display_name" field.

func PlanDisplayNameNEQ

func PlanDisplayNameNEQ(v string) predicate.SubscriptionLineItem

PlanDisplayNameNEQ applies the NEQ predicate on the "plan_display_name" field.

func PlanDisplayNameNotIn

func PlanDisplayNameNotIn(vs ...string) predicate.SubscriptionLineItem

PlanDisplayNameNotIn applies the NotIn predicate on the "plan_display_name" field.

func PlanDisplayNameNotNil

func PlanDisplayNameNotNil() predicate.SubscriptionLineItem

PlanDisplayNameNotNil applies the NotNil predicate on the "plan_display_name" field.

func PriceID

PriceID applies equality check predicate on the "price_id" field. It's identical to PriceIDEQ.

func PriceIDContains

func PriceIDContains(v string) predicate.SubscriptionLineItem

PriceIDContains applies the Contains predicate on the "price_id" field.

func PriceIDContainsFold

func PriceIDContainsFold(v string) predicate.SubscriptionLineItem

PriceIDContainsFold applies the ContainsFold predicate on the "price_id" field.

func PriceIDEQ

PriceIDEQ applies the EQ predicate on the "price_id" field.

func PriceIDEqualFold

func PriceIDEqualFold(v string) predicate.SubscriptionLineItem

PriceIDEqualFold applies the EqualFold predicate on the "price_id" field.

func PriceIDGT

PriceIDGT applies the GT predicate on the "price_id" field.

func PriceIDGTE

PriceIDGTE applies the GTE predicate on the "price_id" field.

func PriceIDHasPrefix

func PriceIDHasPrefix(v string) predicate.SubscriptionLineItem

PriceIDHasPrefix applies the HasPrefix predicate on the "price_id" field.

func PriceIDHasSuffix

func PriceIDHasSuffix(v string) predicate.SubscriptionLineItem

PriceIDHasSuffix applies the HasSuffix predicate on the "price_id" field.

func PriceIDIn

func PriceIDIn(vs ...string) predicate.SubscriptionLineItem

PriceIDIn applies the In predicate on the "price_id" field.

func PriceIDLT

PriceIDLT applies the LT predicate on the "price_id" field.

func PriceIDLTE

PriceIDLTE applies the LTE predicate on the "price_id" field.

func PriceIDNEQ

PriceIDNEQ applies the NEQ predicate on the "price_id" field.

func PriceIDNotIn

func PriceIDNotIn(vs ...string) predicate.SubscriptionLineItem

PriceIDNotIn applies the NotIn predicate on the "price_id" field.

func PriceType

PriceType applies equality check predicate on the "price_type" field. It's identical to PriceTypeEQ.

func PriceTypeContains

func PriceTypeContains(v string) predicate.SubscriptionLineItem

PriceTypeContains applies the Contains predicate on the "price_type" field.

func PriceTypeContainsFold

func PriceTypeContainsFold(v string) predicate.SubscriptionLineItem

PriceTypeContainsFold applies the ContainsFold predicate on the "price_type" field.

func PriceTypeEQ

func PriceTypeEQ(v string) predicate.SubscriptionLineItem

PriceTypeEQ applies the EQ predicate on the "price_type" field.

func PriceTypeEqualFold

func PriceTypeEqualFold(v string) predicate.SubscriptionLineItem

PriceTypeEqualFold applies the EqualFold predicate on the "price_type" field.

func PriceTypeGT

func PriceTypeGT(v string) predicate.SubscriptionLineItem

PriceTypeGT applies the GT predicate on the "price_type" field.

func PriceTypeGTE

func PriceTypeGTE(v string) predicate.SubscriptionLineItem

PriceTypeGTE applies the GTE predicate on the "price_type" field.

func PriceTypeHasPrefix

func PriceTypeHasPrefix(v string) predicate.SubscriptionLineItem

PriceTypeHasPrefix applies the HasPrefix predicate on the "price_type" field.

func PriceTypeHasSuffix

func PriceTypeHasSuffix(v string) predicate.SubscriptionLineItem

PriceTypeHasSuffix applies the HasSuffix predicate on the "price_type" field.

func PriceTypeIn

func PriceTypeIn(vs ...string) predicate.SubscriptionLineItem

PriceTypeIn applies the In predicate on the "price_type" field.

func PriceTypeIsNil

func PriceTypeIsNil() predicate.SubscriptionLineItem

PriceTypeIsNil applies the IsNil predicate on the "price_type" field.

func PriceTypeLT

func PriceTypeLT(v string) predicate.SubscriptionLineItem

PriceTypeLT applies the LT predicate on the "price_type" field.

func PriceTypeLTE

func PriceTypeLTE(v string) predicate.SubscriptionLineItem

PriceTypeLTE applies the LTE predicate on the "price_type" field.

func PriceTypeNEQ

func PriceTypeNEQ(v string) predicate.SubscriptionLineItem

PriceTypeNEQ applies the NEQ predicate on the "price_type" field.

func PriceTypeNotIn

func PriceTypeNotIn(vs ...string) predicate.SubscriptionLineItem

PriceTypeNotIn applies the NotIn predicate on the "price_type" field.

func PriceTypeNotNil

func PriceTypeNotNil() predicate.SubscriptionLineItem

PriceTypeNotNil applies the NotNil predicate on the "price_type" field.

func PriceUnit added in v1.0.21

PriceUnit applies equality check predicate on the "price_unit" field. It's identical to PriceUnitEQ.

func PriceUnitContains added in v1.0.21

func PriceUnitContains(v string) predicate.SubscriptionLineItem

PriceUnitContains applies the Contains predicate on the "price_unit" field.

func PriceUnitContainsFold added in v1.0.21

func PriceUnitContainsFold(v string) predicate.SubscriptionLineItem

PriceUnitContainsFold applies the ContainsFold predicate on the "price_unit" field.

func PriceUnitEQ added in v1.0.21

func PriceUnitEQ(v string) predicate.SubscriptionLineItem

PriceUnitEQ applies the EQ predicate on the "price_unit" field.

func PriceUnitEqualFold added in v1.0.21

func PriceUnitEqualFold(v string) predicate.SubscriptionLineItem

PriceUnitEqualFold applies the EqualFold predicate on the "price_unit" field.

func PriceUnitGT added in v1.0.21

func PriceUnitGT(v string) predicate.SubscriptionLineItem

PriceUnitGT applies the GT predicate on the "price_unit" field.

func PriceUnitGTE added in v1.0.21

func PriceUnitGTE(v string) predicate.SubscriptionLineItem

PriceUnitGTE applies the GTE predicate on the "price_unit" field.

func PriceUnitHasPrefix added in v1.0.21

func PriceUnitHasPrefix(v string) predicate.SubscriptionLineItem

PriceUnitHasPrefix applies the HasPrefix predicate on the "price_unit" field.

func PriceUnitHasSuffix added in v1.0.21

func PriceUnitHasSuffix(v string) predicate.SubscriptionLineItem

PriceUnitHasSuffix applies the HasSuffix predicate on the "price_unit" field.

func PriceUnitID added in v1.0.21

func PriceUnitID(v string) predicate.SubscriptionLineItem

PriceUnitID applies equality check predicate on the "price_unit_id" field. It's identical to PriceUnitIDEQ.

func PriceUnitIDContains added in v1.0.21

func PriceUnitIDContains(v string) predicate.SubscriptionLineItem

PriceUnitIDContains applies the Contains predicate on the "price_unit_id" field.

func PriceUnitIDContainsFold added in v1.0.21

func PriceUnitIDContainsFold(v string) predicate.SubscriptionLineItem

PriceUnitIDContainsFold applies the ContainsFold predicate on the "price_unit_id" field.

func PriceUnitIDEQ added in v1.0.21

func PriceUnitIDEQ(v string) predicate.SubscriptionLineItem

PriceUnitIDEQ applies the EQ predicate on the "price_unit_id" field.

func PriceUnitIDEqualFold added in v1.0.21

func PriceUnitIDEqualFold(v string) predicate.SubscriptionLineItem

PriceUnitIDEqualFold applies the EqualFold predicate on the "price_unit_id" field.

func PriceUnitIDGT added in v1.0.21

func PriceUnitIDGT(v string) predicate.SubscriptionLineItem

PriceUnitIDGT applies the GT predicate on the "price_unit_id" field.

func PriceUnitIDGTE added in v1.0.21

func PriceUnitIDGTE(v string) predicate.SubscriptionLineItem

PriceUnitIDGTE applies the GTE predicate on the "price_unit_id" field.

func PriceUnitIDHasPrefix added in v1.0.21

func PriceUnitIDHasPrefix(v string) predicate.SubscriptionLineItem

PriceUnitIDHasPrefix applies the HasPrefix predicate on the "price_unit_id" field.

func PriceUnitIDHasSuffix added in v1.0.21

func PriceUnitIDHasSuffix(v string) predicate.SubscriptionLineItem

PriceUnitIDHasSuffix applies the HasSuffix predicate on the "price_unit_id" field.

func PriceUnitIDIn added in v1.0.21

func PriceUnitIDIn(vs ...string) predicate.SubscriptionLineItem

PriceUnitIDIn applies the In predicate on the "price_unit_id" field.

func PriceUnitIDIsNil added in v1.0.21

func PriceUnitIDIsNil() predicate.SubscriptionLineItem

PriceUnitIDIsNil applies the IsNil predicate on the "price_unit_id" field.

func PriceUnitIDLT added in v1.0.21

func PriceUnitIDLT(v string) predicate.SubscriptionLineItem

PriceUnitIDLT applies the LT predicate on the "price_unit_id" field.

func PriceUnitIDLTE added in v1.0.21

func PriceUnitIDLTE(v string) predicate.SubscriptionLineItem

PriceUnitIDLTE applies the LTE predicate on the "price_unit_id" field.

func PriceUnitIDNEQ added in v1.0.21

func PriceUnitIDNEQ(v string) predicate.SubscriptionLineItem

PriceUnitIDNEQ applies the NEQ predicate on the "price_unit_id" field.

func PriceUnitIDNotIn added in v1.0.21

func PriceUnitIDNotIn(vs ...string) predicate.SubscriptionLineItem

PriceUnitIDNotIn applies the NotIn predicate on the "price_unit_id" field.

func PriceUnitIDNotNil added in v1.0.21

func PriceUnitIDNotNil() predicate.SubscriptionLineItem

PriceUnitIDNotNil applies the NotNil predicate on the "price_unit_id" field.

func PriceUnitIn added in v1.0.21

func PriceUnitIn(vs ...string) predicate.SubscriptionLineItem

PriceUnitIn applies the In predicate on the "price_unit" field.

func PriceUnitIsNil added in v1.0.21

func PriceUnitIsNil() predicate.SubscriptionLineItem

PriceUnitIsNil applies the IsNil predicate on the "price_unit" field.

func PriceUnitLT added in v1.0.21

func PriceUnitLT(v string) predicate.SubscriptionLineItem

PriceUnitLT applies the LT predicate on the "price_unit" field.

func PriceUnitLTE added in v1.0.21

func PriceUnitLTE(v string) predicate.SubscriptionLineItem

PriceUnitLTE applies the LTE predicate on the "price_unit" field.

func PriceUnitNEQ added in v1.0.21

func PriceUnitNEQ(v string) predicate.SubscriptionLineItem

PriceUnitNEQ applies the NEQ predicate on the "price_unit" field.

func PriceUnitNotIn added in v1.0.21

func PriceUnitNotIn(vs ...string) predicate.SubscriptionLineItem

PriceUnitNotIn applies the NotIn predicate on the "price_unit" field.

func PriceUnitNotNil added in v1.0.21

func PriceUnitNotNil() predicate.SubscriptionLineItem

PriceUnitNotNil applies the NotNil predicate on the "price_unit" field.

func Quantity

Quantity applies equality check predicate on the "quantity" field. It's identical to QuantityEQ.

func QuantityEQ

QuantityEQ applies the EQ predicate on the "quantity" field.

func QuantityGT

QuantityGT applies the GT predicate on the "quantity" field.

func QuantityGTE

QuantityGTE applies the GTE predicate on the "quantity" field.

func QuantityIn

QuantityIn applies the In predicate on the "quantity" field.

func QuantityLT

QuantityLT applies the LT predicate on the "quantity" field.

func QuantityLTE

QuantityLTE applies the LTE predicate on the "quantity" field.

func QuantityNEQ

QuantityNEQ applies the NEQ predicate on the "quantity" field.

func QuantityNotIn

func QuantityNotIn(vs ...decimal.Decimal) predicate.SubscriptionLineItem

QuantityNotIn applies the NotIn predicate on the "quantity" field.

func StartDate

StartDate applies equality check predicate on the "start_date" field. It's identical to StartDateEQ.

func StartDateEQ

func StartDateEQ(v time.Time) predicate.SubscriptionLineItem

StartDateEQ applies the EQ predicate on the "start_date" field.

func StartDateGT

func StartDateGT(v time.Time) predicate.SubscriptionLineItem

StartDateGT applies the GT predicate on the "start_date" field.

func StartDateGTE

func StartDateGTE(v time.Time) predicate.SubscriptionLineItem

StartDateGTE applies the GTE predicate on the "start_date" field.

func StartDateIn

func StartDateIn(vs ...time.Time) predicate.SubscriptionLineItem

StartDateIn applies the In predicate on the "start_date" field.

func StartDateIsNil

func StartDateIsNil() predicate.SubscriptionLineItem

StartDateIsNil applies the IsNil predicate on the "start_date" field.

func StartDateLT

func StartDateLT(v time.Time) predicate.SubscriptionLineItem

StartDateLT applies the LT predicate on the "start_date" field.

func StartDateLTE

func StartDateLTE(v time.Time) predicate.SubscriptionLineItem

StartDateLTE applies the LTE predicate on the "start_date" field.

func StartDateNEQ

func StartDateNEQ(v time.Time) predicate.SubscriptionLineItem

StartDateNEQ applies the NEQ predicate on the "start_date" field.

func StartDateNotIn

func StartDateNotIn(vs ...time.Time) predicate.SubscriptionLineItem

StartDateNotIn applies the NotIn predicate on the "start_date" field.

func StartDateNotNil

func StartDateNotNil() predicate.SubscriptionLineItem

StartDateNotNil applies the NotNil predicate on the "start_date" field.

func Status

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusContains

func StatusContains(v string) predicate.SubscriptionLineItem

StatusContains applies the Contains predicate on the "status" field.

func StatusContainsFold

func StatusContainsFold(v string) predicate.SubscriptionLineItem

StatusContainsFold applies the ContainsFold predicate on the "status" field.

func StatusEQ

StatusEQ applies the EQ predicate on the "status" field.

func StatusEqualFold

func StatusEqualFold(v string) predicate.SubscriptionLineItem

StatusEqualFold applies the EqualFold predicate on the "status" field.

func StatusGT

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

StatusGTE applies the GTE predicate on the "status" field.

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.SubscriptionLineItem

StatusHasPrefix applies the HasPrefix predicate on the "status" field.

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.SubscriptionLineItem

StatusHasSuffix applies the HasSuffix predicate on the "status" field.

func StatusIn

func StatusIn(vs ...string) predicate.SubscriptionLineItem

StatusIn applies the In predicate on the "status" field.

func StatusLT

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...string) predicate.SubscriptionLineItem

StatusNotIn applies the NotIn predicate on the "status" field.

func SubscriptionID

func SubscriptionID(v string) predicate.SubscriptionLineItem

SubscriptionID applies equality check predicate on the "subscription_id" field. It's identical to SubscriptionIDEQ.

func SubscriptionIDContains

func SubscriptionIDContains(v string) predicate.SubscriptionLineItem

SubscriptionIDContains applies the Contains predicate on the "subscription_id" field.

func SubscriptionIDContainsFold

func SubscriptionIDContainsFold(v string) predicate.SubscriptionLineItem

SubscriptionIDContainsFold applies the ContainsFold predicate on the "subscription_id" field.

func SubscriptionIDEQ

func SubscriptionIDEQ(v string) predicate.SubscriptionLineItem

SubscriptionIDEQ applies the EQ predicate on the "subscription_id" field.

func SubscriptionIDEqualFold

func SubscriptionIDEqualFold(v string) predicate.SubscriptionLineItem

SubscriptionIDEqualFold applies the EqualFold predicate on the "subscription_id" field.

func SubscriptionIDGT

func SubscriptionIDGT(v string) predicate.SubscriptionLineItem

SubscriptionIDGT applies the GT predicate on the "subscription_id" field.

func SubscriptionIDGTE

func SubscriptionIDGTE(v string) predicate.SubscriptionLineItem

SubscriptionIDGTE applies the GTE predicate on the "subscription_id" field.

func SubscriptionIDHasPrefix

func SubscriptionIDHasPrefix(v string) predicate.SubscriptionLineItem

SubscriptionIDHasPrefix applies the HasPrefix predicate on the "subscription_id" field.

func SubscriptionIDHasSuffix

func SubscriptionIDHasSuffix(v string) predicate.SubscriptionLineItem

SubscriptionIDHasSuffix applies the HasSuffix predicate on the "subscription_id" field.

func SubscriptionIDIn

func SubscriptionIDIn(vs ...string) predicate.SubscriptionLineItem

SubscriptionIDIn applies the In predicate on the "subscription_id" field.

func SubscriptionIDLT

func SubscriptionIDLT(v string) predicate.SubscriptionLineItem

SubscriptionIDLT applies the LT predicate on the "subscription_id" field.

func SubscriptionIDLTE

func SubscriptionIDLTE(v string) predicate.SubscriptionLineItem

SubscriptionIDLTE applies the LTE predicate on the "subscription_id" field.

func SubscriptionIDNEQ

func SubscriptionIDNEQ(v string) predicate.SubscriptionLineItem

SubscriptionIDNEQ applies the NEQ predicate on the "subscription_id" field.

func SubscriptionIDNotIn

func SubscriptionIDNotIn(vs ...string) predicate.SubscriptionLineItem

SubscriptionIDNotIn applies the NotIn predicate on the "subscription_id" field.

func TenantID

TenantID applies equality check predicate on the "tenant_id" field. It's identical to TenantIDEQ.

func TenantIDContains

func TenantIDContains(v string) predicate.SubscriptionLineItem

TenantIDContains applies the Contains predicate on the "tenant_id" field.

func TenantIDContainsFold

func TenantIDContainsFold(v string) predicate.SubscriptionLineItem

TenantIDContainsFold applies the ContainsFold predicate on the "tenant_id" field.

func TenantIDEQ

TenantIDEQ applies the EQ predicate on the "tenant_id" field.

func TenantIDEqualFold

func TenantIDEqualFold(v string) predicate.SubscriptionLineItem

TenantIDEqualFold applies the EqualFold predicate on the "tenant_id" field.

func TenantIDGT

TenantIDGT applies the GT predicate on the "tenant_id" field.

func TenantIDGTE

func TenantIDGTE(v string) predicate.SubscriptionLineItem

TenantIDGTE applies the GTE predicate on the "tenant_id" field.

func TenantIDHasPrefix

func TenantIDHasPrefix(v string) predicate.SubscriptionLineItem

TenantIDHasPrefix applies the HasPrefix predicate on the "tenant_id" field.

func TenantIDHasSuffix

func TenantIDHasSuffix(v string) predicate.SubscriptionLineItem

TenantIDHasSuffix applies the HasSuffix predicate on the "tenant_id" field.

func TenantIDIn

func TenantIDIn(vs ...string) predicate.SubscriptionLineItem

TenantIDIn applies the In predicate on the "tenant_id" field.

func TenantIDLT

TenantIDLT applies the LT predicate on the "tenant_id" field.

func TenantIDLTE

func TenantIDLTE(v string) predicate.SubscriptionLineItem

TenantIDLTE applies the LTE predicate on the "tenant_id" field.

func TenantIDNEQ

func TenantIDNEQ(v string) predicate.SubscriptionLineItem

TenantIDNEQ applies the NEQ predicate on the "tenant_id" field.

func TenantIDNotIn

func TenantIDNotIn(vs ...string) predicate.SubscriptionLineItem

TenantIDNotIn applies the NotIn predicate on the "tenant_id" field.

func TrialPeriod

func TrialPeriod(v int) predicate.SubscriptionLineItem

TrialPeriod applies equality check predicate on the "trial_period" field. It's identical to TrialPeriodEQ.

func TrialPeriodEQ

func TrialPeriodEQ(v int) predicate.SubscriptionLineItem

TrialPeriodEQ applies the EQ predicate on the "trial_period" field.

func TrialPeriodGT

func TrialPeriodGT(v int) predicate.SubscriptionLineItem

TrialPeriodGT applies the GT predicate on the "trial_period" field.

func TrialPeriodGTE

func TrialPeriodGTE(v int) predicate.SubscriptionLineItem

TrialPeriodGTE applies the GTE predicate on the "trial_period" field.

func TrialPeriodIn

func TrialPeriodIn(vs ...int) predicate.SubscriptionLineItem

TrialPeriodIn applies the In predicate on the "trial_period" field.

func TrialPeriodLT

func TrialPeriodLT(v int) predicate.SubscriptionLineItem

TrialPeriodLT applies the LT predicate on the "trial_period" field.

func TrialPeriodLTE

func TrialPeriodLTE(v int) predicate.SubscriptionLineItem

TrialPeriodLTE applies the LTE predicate on the "trial_period" field.

func TrialPeriodNEQ

func TrialPeriodNEQ(v int) predicate.SubscriptionLineItem

TrialPeriodNEQ applies the NEQ predicate on the "trial_period" field.

func TrialPeriodNotIn

func TrialPeriodNotIn(vs ...int) predicate.SubscriptionLineItem

TrialPeriodNotIn applies the NotIn predicate on the "trial_period" 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.SubscriptionLineItem

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.SubscriptionLineItem

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.SubscriptionLineItem

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.SubscriptionLineItem

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.SubscriptionLineItem

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.SubscriptionLineItem

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

func UpdatedAtNotIn

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

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

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.SubscriptionLineItem

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.SubscriptionLineItem

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.SubscriptionLineItem

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.SubscriptionLineItem

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.SubscriptionLineItem

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.SubscriptionLineItem

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.SubscriptionLineItem

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.SubscriptionLineItem

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.SubscriptionLineItem

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.SubscriptionLineItem

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.SubscriptionLineItem

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.SubscriptionLineItem

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

func ByBillingPeriod

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

ByBillingPeriod orders the results by the billing_period field.

func ByCouponAssociations added in v1.0.21

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

ByCouponAssociations orders the results by coupon_associations terms.

func ByCouponAssociationsCount added in v1.0.21

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

ByCouponAssociationsCount orders the results by coupon_associations count.

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 ByCurrency

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

ByCurrency orders the results by the currency field.

func ByCustomerID

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

ByCustomerID orders the results by the customer_id field.

func ByDisplayName

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

ByDisplayName orders the results by the display_name field.

func ByEndDate

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

ByEndDate orders the results by the end_date field.

func ByEntityID added in v1.0.21

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

ByEntityID orders the results by the entity_id field.

func ByEntityType added in v1.0.21

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

ByEntityType orders the results by the entity_type field.

func ByEnvironmentID

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

ByEnvironmentID orders the results by the environment_id field.

func ByID

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

ByID orders the results by the id field.

func ByInvoiceCadence

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

ByInvoiceCadence orders the results by the invoice_cadence field.

func ByMeterDisplayName

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

ByMeterDisplayName orders the results by the meter_display_name field.

func ByMeterID

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

ByMeterID orders the results by the meter_id field.

func ByPlanDisplayName

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

ByPlanDisplayName orders the results by the plan_display_name field.

func ByPriceID

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

ByPriceID orders the results by the price_id field.

func ByPriceType

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

ByPriceType orders the results by the price_type field.

func ByPriceUnit added in v1.0.21

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

ByPriceUnit orders the results by the price_unit field.

func ByPriceUnitID added in v1.0.21

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

ByPriceUnitID orders the results by the price_unit_id field.

func ByQuantity

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

ByQuantity orders the results by the quantity field.

func ByStartDate

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

ByStartDate orders the results by the start_date field.

func ByStatus

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

ByStatus orders the results by the status field.

func BySubscriptionField

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

BySubscriptionField orders the results by subscription field.

func BySubscriptionID

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

BySubscriptionID orders the results by the subscription_id field.

func ByTenantID

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

ByTenantID orders the results by the tenant_id field.

func ByTrialPeriod

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

ByTrialPeriod orders the results by the trial_period 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