proxypayment

package
v1.0.11 Latest Latest
Warning

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

Go to latest
Published: Jun 28, 2026 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the proxypayment type in the database.
	Label = "proxy_payment"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldPlatform holds the string denoting the platform field in the database.
	FieldPlatform = "platform"
	// FieldIcon holds the string denoting the icon field in the database.
	FieldIcon = "icon"
	// FieldDomain holds the string denoting the domain field in the database.
	FieldDomain = "domain"
	// FieldConfig holds the string denoting the config field in the database.
	FieldConfig = "config"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldFeeMode holds the string denoting the fee_mode field in the database.
	FieldFeeMode = "fee_mode"
	// FieldFeePercent holds the string denoting the fee_percent field in the database.
	FieldFeePercent = "fee_percent"
	// FieldFeeAmount holds the string denoting the fee_amount field in the database.
	FieldFeeAmount = "fee_amount"
	// FieldSort holds the string denoting the sort field in the database.
	FieldSort = "sort"
	// FieldEnable holds the string denoting the enable field in the database.
	FieldEnable = "enable"
	// FieldToken holds the string denoting the token field in the database.
	FieldToken = "token"
	// Table holds the table name of the proxypayment in the database.
	Table = "payment"
)

Variables

View Source
var (
	// DefaultName holds the default value on creation for the "name" field.
	DefaultName string
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// PlatformValidator is a validator for the "platform" field. It is called by the builders before save.
	PlatformValidator func(string) error
	// DefaultIcon holds the default value on creation for the "icon" field.
	DefaultIcon string
	// IconValidator is a validator for the "icon" field. It is called by the builders before save.
	IconValidator func(string) error
	// DefaultDomain holds the default value on creation for the "domain" field.
	DefaultDomain string
	// DomainValidator is a validator for the "domain" field. It is called by the builders before save.
	DomainValidator func(string) error
	// ConfigValidator is a validator for the "config" field. It is called by the builders before save.
	ConfigValidator func(string) error
	// DefaultFeeMode holds the default value on creation for the "fee_mode" field.
	DefaultFeeMode uint
	// DefaultFeePercent holds the default value on creation for the "fee_percent" field.
	DefaultFeePercent int64
	// DefaultFeeAmount holds the default value on creation for the "fee_amount" field.
	DefaultFeeAmount int64
	// DefaultSort holds the default value on creation for the "sort" field.
	DefaultSort int32
	// DefaultEnable holds the default value on creation for the "enable" field.
	DefaultEnable bool
	// TokenValidator is a validator for the "token" field. It is called by the builders before save.
	TokenValidator func(string) error
)

Columns holds all SQL columns for proxypayment fields.

Functions

func And

func And(predicates ...predicate.ProxyPayment) predicate.ProxyPayment

And groups predicates with the AND operator between them.

func Config

func Config(v string) predicate.ProxyPayment

Config applies equality check predicate on the "config" field. It's identical to ConfigEQ.

func ConfigContains

func ConfigContains(v string) predicate.ProxyPayment

ConfigContains applies the Contains predicate on the "config" field.

func ConfigContainsFold

func ConfigContainsFold(v string) predicate.ProxyPayment

ConfigContainsFold applies the ContainsFold predicate on the "config" field.

func ConfigEQ

func ConfigEQ(v string) predicate.ProxyPayment

ConfigEQ applies the EQ predicate on the "config" field.

func ConfigEqualFold

func ConfigEqualFold(v string) predicate.ProxyPayment

ConfigEqualFold applies the EqualFold predicate on the "config" field.

func ConfigGT

func ConfigGT(v string) predicate.ProxyPayment

ConfigGT applies the GT predicate on the "config" field.

func ConfigGTE

func ConfigGTE(v string) predicate.ProxyPayment

ConfigGTE applies the GTE predicate on the "config" field.

func ConfigHasPrefix

func ConfigHasPrefix(v string) predicate.ProxyPayment

ConfigHasPrefix applies the HasPrefix predicate on the "config" field.

func ConfigHasSuffix

func ConfigHasSuffix(v string) predicate.ProxyPayment

ConfigHasSuffix applies the HasSuffix predicate on the "config" field.

func ConfigIn

func ConfigIn(vs ...string) predicate.ProxyPayment

ConfigIn applies the In predicate on the "config" field.

func ConfigLT

func ConfigLT(v string) predicate.ProxyPayment

ConfigLT applies the LT predicate on the "config" field.

func ConfigLTE

func ConfigLTE(v string) predicate.ProxyPayment

ConfigLTE applies the LTE predicate on the "config" field.

func ConfigNEQ

func ConfigNEQ(v string) predicate.ProxyPayment

ConfigNEQ applies the NEQ predicate on the "config" field.

func ConfigNotIn

func ConfigNotIn(vs ...string) predicate.ProxyPayment

ConfigNotIn applies the NotIn predicate on the "config" field.

func Description

func Description(v string) predicate.ProxyPayment

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.ProxyPayment

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.ProxyPayment

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.ProxyPayment

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.ProxyPayment

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.ProxyPayment

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.ProxyPayment

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.ProxyPayment

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.ProxyPayment

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.ProxyPayment

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.ProxyPayment

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.ProxyPayment

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.ProxyPayment

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.ProxyPayment

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.ProxyPayment

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.ProxyPayment

DescriptionNotNil applies the NotNil predicate on the "description" field.

func Domain

func Domain(v string) predicate.ProxyPayment

Domain applies equality check predicate on the "domain" field. It's identical to DomainEQ.

func DomainContains

func DomainContains(v string) predicate.ProxyPayment

DomainContains applies the Contains predicate on the "domain" field.

func DomainContainsFold

func DomainContainsFold(v string) predicate.ProxyPayment

DomainContainsFold applies the ContainsFold predicate on the "domain" field.

func DomainEQ

func DomainEQ(v string) predicate.ProxyPayment

DomainEQ applies the EQ predicate on the "domain" field.

func DomainEqualFold

func DomainEqualFold(v string) predicate.ProxyPayment

DomainEqualFold applies the EqualFold predicate on the "domain" field.

func DomainGT

func DomainGT(v string) predicate.ProxyPayment

DomainGT applies the GT predicate on the "domain" field.

func DomainGTE

func DomainGTE(v string) predicate.ProxyPayment

DomainGTE applies the GTE predicate on the "domain" field.

func DomainHasPrefix

func DomainHasPrefix(v string) predicate.ProxyPayment

DomainHasPrefix applies the HasPrefix predicate on the "domain" field.

func DomainHasSuffix

func DomainHasSuffix(v string) predicate.ProxyPayment

DomainHasSuffix applies the HasSuffix predicate on the "domain" field.

func DomainIn

func DomainIn(vs ...string) predicate.ProxyPayment

DomainIn applies the In predicate on the "domain" field.

func DomainLT

func DomainLT(v string) predicate.ProxyPayment

DomainLT applies the LT predicate on the "domain" field.

func DomainLTE

func DomainLTE(v string) predicate.ProxyPayment

DomainLTE applies the LTE predicate on the "domain" field.

func DomainNEQ

func DomainNEQ(v string) predicate.ProxyPayment

DomainNEQ applies the NEQ predicate on the "domain" field.

func DomainNotIn

func DomainNotIn(vs ...string) predicate.ProxyPayment

DomainNotIn applies the NotIn predicate on the "domain" field.

func Enable

func Enable(v bool) predicate.ProxyPayment

Enable applies equality check predicate on the "enable" field. It's identical to EnableEQ.

func EnableEQ

func EnableEQ(v bool) predicate.ProxyPayment

EnableEQ applies the EQ predicate on the "enable" field.

func EnableNEQ

func EnableNEQ(v bool) predicate.ProxyPayment

EnableNEQ applies the NEQ predicate on the "enable" field.

func FeeAmount

func FeeAmount(v int64) predicate.ProxyPayment

FeeAmount applies equality check predicate on the "fee_amount" field. It's identical to FeeAmountEQ.

func FeeAmountEQ

func FeeAmountEQ(v int64) predicate.ProxyPayment

FeeAmountEQ applies the EQ predicate on the "fee_amount" field.

func FeeAmountGT

func FeeAmountGT(v int64) predicate.ProxyPayment

FeeAmountGT applies the GT predicate on the "fee_amount" field.

func FeeAmountGTE

func FeeAmountGTE(v int64) predicate.ProxyPayment

FeeAmountGTE applies the GTE predicate on the "fee_amount" field.

func FeeAmountIn

func FeeAmountIn(vs ...int64) predicate.ProxyPayment

FeeAmountIn applies the In predicate on the "fee_amount" field.

func FeeAmountLT

func FeeAmountLT(v int64) predicate.ProxyPayment

FeeAmountLT applies the LT predicate on the "fee_amount" field.

func FeeAmountLTE

func FeeAmountLTE(v int64) predicate.ProxyPayment

FeeAmountLTE applies the LTE predicate on the "fee_amount" field.

func FeeAmountNEQ

func FeeAmountNEQ(v int64) predicate.ProxyPayment

FeeAmountNEQ applies the NEQ predicate on the "fee_amount" field.

func FeeAmountNotIn

func FeeAmountNotIn(vs ...int64) predicate.ProxyPayment

FeeAmountNotIn applies the NotIn predicate on the "fee_amount" field.

func FeeMode

func FeeMode(v uint) predicate.ProxyPayment

FeeMode applies equality check predicate on the "fee_mode" field. It's identical to FeeModeEQ.

func FeeModeEQ

func FeeModeEQ(v uint) predicate.ProxyPayment

FeeModeEQ applies the EQ predicate on the "fee_mode" field.

func FeeModeGT

func FeeModeGT(v uint) predicate.ProxyPayment

FeeModeGT applies the GT predicate on the "fee_mode" field.

func FeeModeGTE

func FeeModeGTE(v uint) predicate.ProxyPayment

FeeModeGTE applies the GTE predicate on the "fee_mode" field.

func FeeModeIn

func FeeModeIn(vs ...uint) predicate.ProxyPayment

FeeModeIn applies the In predicate on the "fee_mode" field.

func FeeModeLT

func FeeModeLT(v uint) predicate.ProxyPayment

FeeModeLT applies the LT predicate on the "fee_mode" field.

func FeeModeLTE

func FeeModeLTE(v uint) predicate.ProxyPayment

FeeModeLTE applies the LTE predicate on the "fee_mode" field.

func FeeModeNEQ

func FeeModeNEQ(v uint) predicate.ProxyPayment

FeeModeNEQ applies the NEQ predicate on the "fee_mode" field.

func FeeModeNotIn

func FeeModeNotIn(vs ...uint) predicate.ProxyPayment

FeeModeNotIn applies the NotIn predicate on the "fee_mode" field.

func FeePercent

func FeePercent(v int64) predicate.ProxyPayment

FeePercent applies equality check predicate on the "fee_percent" field. It's identical to FeePercentEQ.

func FeePercentEQ

func FeePercentEQ(v int64) predicate.ProxyPayment

FeePercentEQ applies the EQ predicate on the "fee_percent" field.

func FeePercentGT

func FeePercentGT(v int64) predicate.ProxyPayment

FeePercentGT applies the GT predicate on the "fee_percent" field.

func FeePercentGTE

func FeePercentGTE(v int64) predicate.ProxyPayment

FeePercentGTE applies the GTE predicate on the "fee_percent" field.

func FeePercentIn

func FeePercentIn(vs ...int64) predicate.ProxyPayment

FeePercentIn applies the In predicate on the "fee_percent" field.

func FeePercentLT

func FeePercentLT(v int64) predicate.ProxyPayment

FeePercentLT applies the LT predicate on the "fee_percent" field.

func FeePercentLTE

func FeePercentLTE(v int64) predicate.ProxyPayment

FeePercentLTE applies the LTE predicate on the "fee_percent" field.

func FeePercentNEQ

func FeePercentNEQ(v int64) predicate.ProxyPayment

FeePercentNEQ applies the NEQ predicate on the "fee_percent" field.

func FeePercentNotIn

func FeePercentNotIn(vs ...int64) predicate.ProxyPayment

FeePercentNotIn applies the NotIn predicate on the "fee_percent" field.

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int64) predicate.ProxyPayment

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int64) predicate.ProxyPayment

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int64) predicate.ProxyPayment

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int64) predicate.ProxyPayment

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int64) predicate.ProxyPayment

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int64) predicate.ProxyPayment

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int64) predicate.ProxyPayment

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int64) predicate.ProxyPayment

IDNotIn applies the NotIn predicate on the ID field.

func Icon

Icon applies equality check predicate on the "icon" field. It's identical to IconEQ.

func IconContains

func IconContains(v string) predicate.ProxyPayment

IconContains applies the Contains predicate on the "icon" field.

func IconContainsFold

func IconContainsFold(v string) predicate.ProxyPayment

IconContainsFold applies the ContainsFold predicate on the "icon" field.

func IconEQ

func IconEQ(v string) predicate.ProxyPayment

IconEQ applies the EQ predicate on the "icon" field.

func IconEqualFold

func IconEqualFold(v string) predicate.ProxyPayment

IconEqualFold applies the EqualFold predicate on the "icon" field.

func IconGT

func IconGT(v string) predicate.ProxyPayment

IconGT applies the GT predicate on the "icon" field.

func IconGTE

func IconGTE(v string) predicate.ProxyPayment

IconGTE applies the GTE predicate on the "icon" field.

func IconHasPrefix

func IconHasPrefix(v string) predicate.ProxyPayment

IconHasPrefix applies the HasPrefix predicate on the "icon" field.

func IconHasSuffix

func IconHasSuffix(v string) predicate.ProxyPayment

IconHasSuffix applies the HasSuffix predicate on the "icon" field.

func IconIn

func IconIn(vs ...string) predicate.ProxyPayment

IconIn applies the In predicate on the "icon" field.

func IconLT

func IconLT(v string) predicate.ProxyPayment

IconLT applies the LT predicate on the "icon" field.

func IconLTE

func IconLTE(v string) predicate.ProxyPayment

IconLTE applies the LTE predicate on the "icon" field.

func IconNEQ

func IconNEQ(v string) predicate.ProxyPayment

IconNEQ applies the NEQ predicate on the "icon" field.

func IconNotIn

func IconNotIn(vs ...string) predicate.ProxyPayment

IconNotIn applies the NotIn predicate on the "icon" field.

func Name

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

func NameContains

func NameContains(v string) predicate.ProxyPayment

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

func NameContainsFold

func NameContainsFold(v string) predicate.ProxyPayment

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

func NameEQ

func NameEQ(v string) predicate.ProxyPayment

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

func NameEqualFold

func NameEqualFold(v string) predicate.ProxyPayment

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

func NameGT

func NameGT(v string) predicate.ProxyPayment

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

func NameGTE

func NameGTE(v string) predicate.ProxyPayment

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.ProxyPayment

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.ProxyPayment

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.ProxyPayment

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

func NameLTE

func NameLTE(v string) predicate.ProxyPayment

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

func NameNEQ

func NameNEQ(v string) predicate.ProxyPayment

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

func NameNotIn

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

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

Or groups predicates with the OR operator between them.

func Platform

func Platform(v string) predicate.ProxyPayment

Platform applies equality check predicate on the "platform" field. It's identical to PlatformEQ.

func PlatformContains

func PlatformContains(v string) predicate.ProxyPayment

PlatformContains applies the Contains predicate on the "platform" field.

func PlatformContainsFold

func PlatformContainsFold(v string) predicate.ProxyPayment

PlatformContainsFold applies the ContainsFold predicate on the "platform" field.

func PlatformEQ

func PlatformEQ(v string) predicate.ProxyPayment

PlatformEQ applies the EQ predicate on the "platform" field.

func PlatformEqualFold

func PlatformEqualFold(v string) predicate.ProxyPayment

PlatformEqualFold applies the EqualFold predicate on the "platform" field.

func PlatformGT

func PlatformGT(v string) predicate.ProxyPayment

PlatformGT applies the GT predicate on the "platform" field.

func PlatformGTE

func PlatformGTE(v string) predicate.ProxyPayment

PlatformGTE applies the GTE predicate on the "platform" field.

func PlatformHasPrefix

func PlatformHasPrefix(v string) predicate.ProxyPayment

PlatformHasPrefix applies the HasPrefix predicate on the "platform" field.

func PlatformHasSuffix

func PlatformHasSuffix(v string) predicate.ProxyPayment

PlatformHasSuffix applies the HasSuffix predicate on the "platform" field.

func PlatformIn

func PlatformIn(vs ...string) predicate.ProxyPayment

PlatformIn applies the In predicate on the "platform" field.

func PlatformLT

func PlatformLT(v string) predicate.ProxyPayment

PlatformLT applies the LT predicate on the "platform" field.

func PlatformLTE

func PlatformLTE(v string) predicate.ProxyPayment

PlatformLTE applies the LTE predicate on the "platform" field.

func PlatformNEQ

func PlatformNEQ(v string) predicate.ProxyPayment

PlatformNEQ applies the NEQ predicate on the "platform" field.

func PlatformNotIn

func PlatformNotIn(vs ...string) predicate.ProxyPayment

PlatformNotIn applies the NotIn predicate on the "platform" field.

func Sort

Sort applies equality check predicate on the "sort" field. It's identical to SortEQ.

func SortEQ

func SortEQ(v int32) predicate.ProxyPayment

SortEQ applies the EQ predicate on the "sort" field.

func SortGT

func SortGT(v int32) predicate.ProxyPayment

SortGT applies the GT predicate on the "sort" field.

func SortGTE

func SortGTE(v int32) predicate.ProxyPayment

SortGTE applies the GTE predicate on the "sort" field.

func SortIn

func SortIn(vs ...int32) predicate.ProxyPayment

SortIn applies the In predicate on the "sort" field.

func SortLT

func SortLT(v int32) predicate.ProxyPayment

SortLT applies the LT predicate on the "sort" field.

func SortLTE

func SortLTE(v int32) predicate.ProxyPayment

SortLTE applies the LTE predicate on the "sort" field.

func SortNEQ

func SortNEQ(v int32) predicate.ProxyPayment

SortNEQ applies the NEQ predicate on the "sort" field.

func SortNotIn

func SortNotIn(vs ...int32) predicate.ProxyPayment

SortNotIn applies the NotIn predicate on the "sort" field.

func Token

func Token(v string) predicate.ProxyPayment

Token applies equality check predicate on the "token" field. It's identical to TokenEQ.

func TokenContains

func TokenContains(v string) predicate.ProxyPayment

TokenContains applies the Contains predicate on the "token" field.

func TokenContainsFold

func TokenContainsFold(v string) predicate.ProxyPayment

TokenContainsFold applies the ContainsFold predicate on the "token" field.

func TokenEQ

func TokenEQ(v string) predicate.ProxyPayment

TokenEQ applies the EQ predicate on the "token" field.

func TokenEqualFold

func TokenEqualFold(v string) predicate.ProxyPayment

TokenEqualFold applies the EqualFold predicate on the "token" field.

func TokenGT

func TokenGT(v string) predicate.ProxyPayment

TokenGT applies the GT predicate on the "token" field.

func TokenGTE

func TokenGTE(v string) predicate.ProxyPayment

TokenGTE applies the GTE predicate on the "token" field.

func TokenHasPrefix

func TokenHasPrefix(v string) predicate.ProxyPayment

TokenHasPrefix applies the HasPrefix predicate on the "token" field.

func TokenHasSuffix

func TokenHasSuffix(v string) predicate.ProxyPayment

TokenHasSuffix applies the HasSuffix predicate on the "token" field.

func TokenIn

func TokenIn(vs ...string) predicate.ProxyPayment

TokenIn applies the In predicate on the "token" field.

func TokenLT

func TokenLT(v string) predicate.ProxyPayment

TokenLT applies the LT predicate on the "token" field.

func TokenLTE

func TokenLTE(v string) predicate.ProxyPayment

TokenLTE applies the LTE predicate on the "token" field.

func TokenNEQ

func TokenNEQ(v string) predicate.ProxyPayment

TokenNEQ applies the NEQ predicate on the "token" field.

func TokenNotIn

func TokenNotIn(vs ...string) predicate.ProxyPayment

TokenNotIn applies the NotIn predicate on the "token" 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 ProxyPayment queries.

func ByConfig

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

ByConfig orders the results by the config field.

func ByDescription

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

ByDescription orders the results by the description field.

func ByDomain

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

ByDomain orders the results by the domain field.

func ByEnable

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

ByEnable orders the results by the enable field.

func ByFeeAmount

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

ByFeeAmount orders the results by the fee_amount field.

func ByFeeMode

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

ByFeeMode orders the results by the fee_mode field.

func ByFeePercent

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

ByFeePercent orders the results by the fee_percent field.

func ByID

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

ByID orders the results by the id field.

func ByIcon

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

ByIcon orders the results by the icon field.

func ByName

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

ByName orders the results by the name field.

func ByPlatform

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

ByPlatform orders the results by the platform field.

func BySort

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

BySort orders the results by the sort field.

func ByToken

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

ByToken orders the results by the token field.

Jump to

Keyboard shortcuts

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