model

package
v0.0.0-...-4b2b8ef Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2026 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the model type in the database.
	Label = "model"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreateTime holds the string denoting the create_time field in the database.
	FieldCreateTime = "create_time"
	// FieldUpdateTime holds the string denoting the update_time field in the database.
	FieldUpdateTime = "update_time"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldContextWindow holds the string denoting the context_window field in the database.
	FieldContextWindow = "context_window"
	// FieldCapabilities holds the string denoting the capabilities field in the database.
	FieldCapabilities = "capabilities"
	// FieldInputCost holds the string denoting the input_cost field in the database.
	FieldInputCost = "input_cost"
	// FieldOutputCost holds the string denoting the output_cost field in the database.
	FieldOutputCost = "output_cost"
	// FieldCacheWriteCost holds the string denoting the cache_write_cost field in the database.
	FieldCacheWriteCost = "cache_write_cost"
	// FieldCacheReadCost holds the string denoting the cache_read_cost field in the database.
	FieldCacheReadCost = "cache_read_cost"
	// FieldEnabled holds the string denoting the enabled field in the database.
	FieldEnabled = "enabled"
	// FieldAlias holds the string denoting the alias field in the database.
	FieldAlias = "alias"
	// FieldModelProviderID holds the string denoting the model_provider_id field in the database.
	FieldModelProviderID = "model_provider_id"
	// EdgeAgents holds the string denoting the agents edge name in mutations.
	EdgeAgents = "agents"
	// EdgeModelProvider holds the string denoting the model_provider edge name in mutations.
	EdgeModelProvider = "model_provider"
	// EdgeMessages holds the string denoting the messages edge name in mutations.
	EdgeMessages = "messages"
	// Table holds the table name of the model in the database.
	Table = "models"
	// AgentsTable is the table that holds the agents relation/edge.
	AgentsTable = "agents"
	// AgentsInverseTable is the table name for the Agent entity.
	// It exists in this package in order to avoid circular dependency with the "agent" package.
	AgentsInverseTable = "agents"
	// AgentsColumn is the table column denoting the agents relation/edge.
	AgentsColumn = "model_id"
	// ModelProviderTable is the table that holds the model_provider relation/edge.
	ModelProviderTable = "models"
	// ModelProviderInverseTable is the table name for the ModelProvider entity.
	// It exists in this package in order to avoid circular dependency with the "modelprovider" package.
	ModelProviderInverseTable = "model_providers"
	// ModelProviderColumn is the table column denoting the model_provider relation/edge.
	ModelProviderColumn = "model_provider_id"
	// MessagesTable is the table that holds the messages relation/edge.
	MessagesTable = "messages"
	// MessagesInverseTable is the table name for the Message entity.
	// It exists in this package in order to avoid circular dependency with the "message" package.
	MessagesInverseTable = "messages"
	// MessagesColumn is the table column denoting the messages relation/edge.
	MessagesColumn = "model_id"
)

Variables

View Source
var (
	// DefaultCreateTime holds the default value on creation for the "create_time" field.
	DefaultCreateTime func() time.Time
	// DefaultUpdateTime holds the default value on creation for the "update_time" field.
	DefaultUpdateTime func() time.Time
	// UpdateDefaultUpdateTime holds the default value on update for the "update_time" field.
	UpdateDefaultUpdateTime func() time.Time
	// DefaultInputCost holds the default value on creation for the "input_cost" field.
	DefaultInputCost float64
	// InputCostValidator is a validator for the "input_cost" field. It is called by the builders before save.
	InputCostValidator func(float64) error
	// DefaultOutputCost holds the default value on creation for the "output_cost" field.
	DefaultOutputCost float64
	// OutputCostValidator is a validator for the "output_cost" field. It is called by the builders before save.
	OutputCostValidator func(float64) error
	// DefaultCacheWriteCost holds the default value on creation for the "cache_write_cost" field.
	DefaultCacheWriteCost float64
	// CacheWriteCostValidator is a validator for the "cache_write_cost" field. It is called by the builders before save.
	CacheWriteCostValidator func(float64) error
	// DefaultCacheReadCost holds the default value on creation for the "cache_read_cost" field.
	DefaultCacheReadCost float64
	// CacheReadCostValidator is a validator for the "cache_read_cost" field. It is called by the builders before save.
	CacheReadCostValidator func(float64) error
	// DefaultEnabled holds the default value on creation for the "enabled" field.
	DefaultEnabled bool
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for model fields.

Functions

func Alias

func Alias(v string) predicate.Model

Alias applies equality check predicate on the "alias" field. It's identical to AliasEQ.

func AliasContains

func AliasContains(v string) predicate.Model

AliasContains applies the Contains predicate on the "alias" field.

func AliasContainsFold

func AliasContainsFold(v string) predicate.Model

AliasContainsFold applies the ContainsFold predicate on the "alias" field.

func AliasEQ

func AliasEQ(v string) predicate.Model

AliasEQ applies the EQ predicate on the "alias" field.

func AliasEqualFold

func AliasEqualFold(v string) predicate.Model

AliasEqualFold applies the EqualFold predicate on the "alias" field.

func AliasGT

func AliasGT(v string) predicate.Model

AliasGT applies the GT predicate on the "alias" field.

func AliasGTE

func AliasGTE(v string) predicate.Model

AliasGTE applies the GTE predicate on the "alias" field.

func AliasHasPrefix

func AliasHasPrefix(v string) predicate.Model

AliasHasPrefix applies the HasPrefix predicate on the "alias" field.

func AliasHasSuffix

func AliasHasSuffix(v string) predicate.Model

AliasHasSuffix applies the HasSuffix predicate on the "alias" field.

func AliasIn

func AliasIn(vs ...string) predicate.Model

AliasIn applies the In predicate on the "alias" field.

func AliasIsNil

func AliasIsNil() predicate.Model

AliasIsNil applies the IsNil predicate on the "alias" field.

func AliasLT

func AliasLT(v string) predicate.Model

AliasLT applies the LT predicate on the "alias" field.

func AliasLTE

func AliasLTE(v string) predicate.Model

AliasLTE applies the LTE predicate on the "alias" field.

func AliasNEQ

func AliasNEQ(v string) predicate.Model

AliasNEQ applies the NEQ predicate on the "alias" field.

func AliasNotIn

func AliasNotIn(vs ...string) predicate.Model

AliasNotIn applies the NotIn predicate on the "alias" field.

func AliasNotNil

func AliasNotNil() predicate.Model

AliasNotNil applies the NotNil predicate on the "alias" field.

func And

func And(predicates ...predicate.Model) predicate.Model

And groups predicates with the AND operator between them.

func CacheReadCost

func CacheReadCost(v float64) predicate.Model

CacheReadCost applies equality check predicate on the "cache_read_cost" field. It's identical to CacheReadCostEQ.

func CacheReadCostEQ

func CacheReadCostEQ(v float64) predicate.Model

CacheReadCostEQ applies the EQ predicate on the "cache_read_cost" field.

func CacheReadCostGT

func CacheReadCostGT(v float64) predicate.Model

CacheReadCostGT applies the GT predicate on the "cache_read_cost" field.

func CacheReadCostGTE

func CacheReadCostGTE(v float64) predicate.Model

CacheReadCostGTE applies the GTE predicate on the "cache_read_cost" field.

func CacheReadCostIn

func CacheReadCostIn(vs ...float64) predicate.Model

CacheReadCostIn applies the In predicate on the "cache_read_cost" field.

func CacheReadCostLT

func CacheReadCostLT(v float64) predicate.Model

CacheReadCostLT applies the LT predicate on the "cache_read_cost" field.

func CacheReadCostLTE

func CacheReadCostLTE(v float64) predicate.Model

CacheReadCostLTE applies the LTE predicate on the "cache_read_cost" field.

func CacheReadCostNEQ

func CacheReadCostNEQ(v float64) predicate.Model

CacheReadCostNEQ applies the NEQ predicate on the "cache_read_cost" field.

func CacheReadCostNotIn

func CacheReadCostNotIn(vs ...float64) predicate.Model

CacheReadCostNotIn applies the NotIn predicate on the "cache_read_cost" field.

func CacheWriteCost

func CacheWriteCost(v float64) predicate.Model

CacheWriteCost applies equality check predicate on the "cache_write_cost" field. It's identical to CacheWriteCostEQ.

func CacheWriteCostEQ

func CacheWriteCostEQ(v float64) predicate.Model

CacheWriteCostEQ applies the EQ predicate on the "cache_write_cost" field.

func CacheWriteCostGT

func CacheWriteCostGT(v float64) predicate.Model

CacheWriteCostGT applies the GT predicate on the "cache_write_cost" field.

func CacheWriteCostGTE

func CacheWriteCostGTE(v float64) predicate.Model

CacheWriteCostGTE applies the GTE predicate on the "cache_write_cost" field.

func CacheWriteCostIn

func CacheWriteCostIn(vs ...float64) predicate.Model

CacheWriteCostIn applies the In predicate on the "cache_write_cost" field.

func CacheWriteCostLT

func CacheWriteCostLT(v float64) predicate.Model

CacheWriteCostLT applies the LT predicate on the "cache_write_cost" field.

func CacheWriteCostLTE

func CacheWriteCostLTE(v float64) predicate.Model

CacheWriteCostLTE applies the LTE predicate on the "cache_write_cost" field.

func CacheWriteCostNEQ

func CacheWriteCostNEQ(v float64) predicate.Model

CacheWriteCostNEQ applies the NEQ predicate on the "cache_write_cost" field.

func CacheWriteCostNotIn

func CacheWriteCostNotIn(vs ...float64) predicate.Model

CacheWriteCostNotIn applies the NotIn predicate on the "cache_write_cost" field.

func CapabilitiesIsNil

func CapabilitiesIsNil() predicate.Model

CapabilitiesIsNil applies the IsNil predicate on the "capabilities" field.

func CapabilitiesNotNil

func CapabilitiesNotNil() predicate.Model

CapabilitiesNotNil applies the NotNil predicate on the "capabilities" field.

func ContextWindow

func ContextWindow(v int64) predicate.Model

ContextWindow applies equality check predicate on the "context_window" field. It's identical to ContextWindowEQ.

func ContextWindowEQ

func ContextWindowEQ(v int64) predicate.Model

ContextWindowEQ applies the EQ predicate on the "context_window" field.

func ContextWindowGT

func ContextWindowGT(v int64) predicate.Model

ContextWindowGT applies the GT predicate on the "context_window" field.

func ContextWindowGTE

func ContextWindowGTE(v int64) predicate.Model

ContextWindowGTE applies the GTE predicate on the "context_window" field.

func ContextWindowIn

func ContextWindowIn(vs ...int64) predicate.Model

ContextWindowIn applies the In predicate on the "context_window" field.

func ContextWindowLT

func ContextWindowLT(v int64) predicate.Model

ContextWindowLT applies the LT predicate on the "context_window" field.

func ContextWindowLTE

func ContextWindowLTE(v int64) predicate.Model

ContextWindowLTE applies the LTE predicate on the "context_window" field.

func ContextWindowNEQ

func ContextWindowNEQ(v int64) predicate.Model

ContextWindowNEQ applies the NEQ predicate on the "context_window" field.

func ContextWindowNotIn

func ContextWindowNotIn(vs ...int64) predicate.Model

ContextWindowNotIn applies the NotIn predicate on the "context_window" field.

func CreateTime

func CreateTime(v time.Time) predicate.Model

CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ.

func CreateTimeEQ

func CreateTimeEQ(v time.Time) predicate.Model

CreateTimeEQ applies the EQ predicate on the "create_time" field.

func CreateTimeGT

func CreateTimeGT(v time.Time) predicate.Model

CreateTimeGT applies the GT predicate on the "create_time" field.

func CreateTimeGTE

func CreateTimeGTE(v time.Time) predicate.Model

CreateTimeGTE applies the GTE predicate on the "create_time" field.

func CreateTimeIn

func CreateTimeIn(vs ...time.Time) predicate.Model

CreateTimeIn applies the In predicate on the "create_time" field.

func CreateTimeLT

func CreateTimeLT(v time.Time) predicate.Model

CreateTimeLT applies the LT predicate on the "create_time" field.

func CreateTimeLTE

func CreateTimeLTE(v time.Time) predicate.Model

CreateTimeLTE applies the LTE predicate on the "create_time" field.

func CreateTimeNEQ

func CreateTimeNEQ(v time.Time) predicate.Model

CreateTimeNEQ applies the NEQ predicate on the "create_time" field.

func CreateTimeNotIn

func CreateTimeNotIn(vs ...time.Time) predicate.Model

CreateTimeNotIn applies the NotIn predicate on the "create_time" field.

func Enabled

func Enabled(v bool) predicate.Model

Enabled applies equality check predicate on the "enabled" field. It's identical to EnabledEQ.

func EnabledEQ

func EnabledEQ(v bool) predicate.Model

EnabledEQ applies the EQ predicate on the "enabled" field.

func EnabledNEQ

func EnabledNEQ(v bool) predicate.Model

EnabledNEQ applies the NEQ predicate on the "enabled" field.

func HasAgents

func HasAgents() predicate.Model

HasAgents applies the HasEdge predicate on the "agents" edge.

func HasAgentsWith

func HasAgentsWith(preds ...predicate.Agent) predicate.Model

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

func HasMessages

func HasMessages() predicate.Model

HasMessages applies the HasEdge predicate on the "messages" edge.

func HasMessagesWith

func HasMessagesWith(preds ...predicate.Message) predicate.Model

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

func HasModelProvider

func HasModelProvider() predicate.Model

HasModelProvider applies the HasEdge predicate on the "model_provider" edge.

func HasModelProviderWith

func HasModelProviderWith(preds ...predicate.ModelProvider) predicate.Model

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

func ID

func ID(id uuid.UUID) predicate.Model

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.Model

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.Model

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.Model

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.Model

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.Model

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.Model

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.Model

IDNotIn applies the NotIn predicate on the ID field.

func InputCost

func InputCost(v float64) predicate.Model

InputCost applies equality check predicate on the "input_cost" field. It's identical to InputCostEQ.

func InputCostEQ

func InputCostEQ(v float64) predicate.Model

InputCostEQ applies the EQ predicate on the "input_cost" field.

func InputCostGT

func InputCostGT(v float64) predicate.Model

InputCostGT applies the GT predicate on the "input_cost" field.

func InputCostGTE

func InputCostGTE(v float64) predicate.Model

InputCostGTE applies the GTE predicate on the "input_cost" field.

func InputCostIn

func InputCostIn(vs ...float64) predicate.Model

InputCostIn applies the In predicate on the "input_cost" field.

func InputCostLT

func InputCostLT(v float64) predicate.Model

InputCostLT applies the LT predicate on the "input_cost" field.

func InputCostLTE

func InputCostLTE(v float64) predicate.Model

InputCostLTE applies the LTE predicate on the "input_cost" field.

func InputCostNEQ

func InputCostNEQ(v float64) predicate.Model

InputCostNEQ applies the NEQ predicate on the "input_cost" field.

func InputCostNotIn

func InputCostNotIn(vs ...float64) predicate.Model

InputCostNotIn applies the NotIn predicate on the "input_cost" field.

func ModelProviderID

func ModelProviderID(v uuid.UUID) predicate.Model

ModelProviderID applies equality check predicate on the "model_provider_id" field. It's identical to ModelProviderIDEQ.

func ModelProviderIDEQ

func ModelProviderIDEQ(v uuid.UUID) predicate.Model

ModelProviderIDEQ applies the EQ predicate on the "model_provider_id" field.

func ModelProviderIDIn

func ModelProviderIDIn(vs ...uuid.UUID) predicate.Model

ModelProviderIDIn applies the In predicate on the "model_provider_id" field.

func ModelProviderIDNEQ

func ModelProviderIDNEQ(v uuid.UUID) predicate.Model

ModelProviderIDNEQ applies the NEQ predicate on the "model_provider_id" field.

func ModelProviderIDNotIn

func ModelProviderIDNotIn(vs ...uuid.UUID) predicate.Model

ModelProviderIDNotIn applies the NotIn predicate on the "model_provider_id" field.

func Name

func Name(v string) predicate.Model

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

func NameContains

func NameContains(v string) predicate.Model

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

func NameContainsFold

func NameContainsFold(v string) predicate.Model

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

func NameEQ

func NameEQ(v string) predicate.Model

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

func NameEqualFold

func NameEqualFold(v string) predicate.Model

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

func NameGT

func NameGT(v string) predicate.Model

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

func NameGTE

func NameGTE(v string) predicate.Model

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Model

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Model

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Model

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

func NameLTE

func NameLTE(v string) predicate.Model

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

func NameNEQ

func NameNEQ(v string) predicate.Model

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Model) predicate.Model

Or groups predicates with the OR operator between them.

func OutputCost

func OutputCost(v float64) predicate.Model

OutputCost applies equality check predicate on the "output_cost" field. It's identical to OutputCostEQ.

func OutputCostEQ

func OutputCostEQ(v float64) predicate.Model

OutputCostEQ applies the EQ predicate on the "output_cost" field.

func OutputCostGT

func OutputCostGT(v float64) predicate.Model

OutputCostGT applies the GT predicate on the "output_cost" field.

func OutputCostGTE

func OutputCostGTE(v float64) predicate.Model

OutputCostGTE applies the GTE predicate on the "output_cost" field.

func OutputCostIn

func OutputCostIn(vs ...float64) predicate.Model

OutputCostIn applies the In predicate on the "output_cost" field.

func OutputCostLT

func OutputCostLT(v float64) predicate.Model

OutputCostLT applies the LT predicate on the "output_cost" field.

func OutputCostLTE

func OutputCostLTE(v float64) predicate.Model

OutputCostLTE applies the LTE predicate on the "output_cost" field.

func OutputCostNEQ

func OutputCostNEQ(v float64) predicate.Model

OutputCostNEQ applies the NEQ predicate on the "output_cost" field.

func OutputCostNotIn

func OutputCostNotIn(vs ...float64) predicate.Model

OutputCostNotIn applies the NotIn predicate on the "output_cost" field.

func UpdateTime

func UpdateTime(v time.Time) predicate.Model

UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ.

func UpdateTimeEQ

func UpdateTimeEQ(v time.Time) predicate.Model

UpdateTimeEQ applies the EQ predicate on the "update_time" field.

func UpdateTimeGT

func UpdateTimeGT(v time.Time) predicate.Model

UpdateTimeGT applies the GT predicate on the "update_time" field.

func UpdateTimeGTE

func UpdateTimeGTE(v time.Time) predicate.Model

UpdateTimeGTE applies the GTE predicate on the "update_time" field.

func UpdateTimeIn

func UpdateTimeIn(vs ...time.Time) predicate.Model

UpdateTimeIn applies the In predicate on the "update_time" field.

func UpdateTimeLT

func UpdateTimeLT(v time.Time) predicate.Model

UpdateTimeLT applies the LT predicate on the "update_time" field.

func UpdateTimeLTE

func UpdateTimeLTE(v time.Time) predicate.Model

UpdateTimeLTE applies the LTE predicate on the "update_time" field.

func UpdateTimeNEQ

func UpdateTimeNEQ(v time.Time) predicate.Model

UpdateTimeNEQ applies the NEQ predicate on the "update_time" field.

func UpdateTimeNotIn

func UpdateTimeNotIn(vs ...time.Time) predicate.Model

UpdateTimeNotIn applies the NotIn predicate on the "update_time" 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 Model queries.

func ByAgents

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

ByAgents orders the results by agents terms.

func ByAgentsCount

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

ByAgentsCount orders the results by agents count.

func ByAlias

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

ByAlias orders the results by the alias field.

func ByCacheReadCost

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

ByCacheReadCost orders the results by the cache_read_cost field.

func ByCacheWriteCost

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

ByCacheWriteCost orders the results by the cache_write_cost field.

func ByContextWindow

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

ByContextWindow orders the results by the context_window field.

func ByCreateTime

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

ByCreateTime orders the results by the create_time field.

func ByEnabled

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

ByEnabled orders the results by the enabled field.

func ByID

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

ByID orders the results by the id field.

func ByInputCost

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

ByInputCost orders the results by the input_cost field.

func ByMessages

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

ByMessages orders the results by messages terms.

func ByMessagesCount

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

ByMessagesCount orders the results by messages count.

func ByModelProviderField

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

ByModelProviderField orders the results by model_provider field.

func ByModelProviderID

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

ByModelProviderID orders the results by the model_provider_id field.

func ByName

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

ByName orders the results by the name field.

func ByOutputCost

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

ByOutputCost orders the results by the output_cost field.

func ByUpdateTime

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

ByUpdateTime orders the results by the update_time field.

Jump to

Keyboard shortcuts

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