ticker

package
v0.0.0-...-fe50809 Latest Latest
Warning

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

Go to latest
Published: Jul 1, 2023 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the ticker type in the database.
	Label = "ticker"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldBase holds the string denoting the base field in the database.
	FieldBase = "base"
	// FieldBaseCoinID holds the string denoting the base_coin_id field in the database.
	FieldBaseCoinID = "base_coin_id"
	// FieldCounter holds the string denoting the counter field in the database.
	FieldCounter = "counter"
	// FieldCounterCoinID holds the string denoting the counter_coin_id field in the database.
	FieldCounterCoinID = "counter_coin_id"
	// FieldMarket holds the string denoting the market field in the database.
	FieldMarket = "market"
	// FieldLast holds the string denoting the last field in the database.
	FieldLast = "last"
	// FieldVolume holds the string denoting the volume field in the database.
	FieldVolume = "volume"
	// FieldConvertedLast holds the string denoting the converted_last field in the database.
	FieldConvertedLast = "converted_last"
	// FieldConvertedVolume holds the string denoting the converted_volume field in the database.
	FieldConvertedVolume = "converted_volume"
	// FieldTrustScore holds the string denoting the trust_score field in the database.
	FieldTrustScore = "trust_score"
	// FieldBidAskSpreadPercentage holds the string denoting the bid_ask_spread_percentage field in the database.
	FieldBidAskSpreadPercentage = "bid_ask_spread_percentage"
	// FieldTimestamp holds the string denoting the timestamp field in the database.
	FieldTimestamp = "timestamp"
	// FieldLastTradedAt holds the string denoting the last_traded_at field in the database.
	FieldLastTradedAt = "last_traded_at"
	// FieldLastFetchAt holds the string denoting the last_fetch_at field in the database.
	FieldLastFetchAt = "last_fetch_at"
	// FieldIsAnomaly holds the string denoting the is_anomaly field in the database.
	FieldIsAnomaly = "is_anomaly"
	// FieldIsStale holds the string denoting the is_stale field in the database.
	FieldIsStale = "is_stale"
	// FieldTradeURL holds the string denoting the trade_url field in the database.
	FieldTradeURL = "trade_url"
	// FieldTokenInfoURL holds the string denoting the token_info_url field in the database.
	FieldTokenInfoURL = "token_info_url"
	// EdgeVenue holds the string denoting the venue edge name in mutations.
	EdgeVenue = "venue"
	// Table holds the table name of the ticker in the database.
	Table = "tickers"
	// VenueTable is the table that holds the venue relation/edge.
	VenueTable = "tickers"
	// VenueInverseTable is the table name for the Venue entity.
	// It exists in this package in order to avoid circular dependency with the "venue" package.
	VenueInverseTable = "venues"
	// VenueColumn is the table column denoting the venue relation/edge.
	VenueColumn = "venue_ticker"
)

Variables

Columns holds all SQL columns for ticker fields.

View Source
var ForeignKeys = []string{
	"venue_ticker",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "tickers" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.Ticker) predicate.Ticker

And groups predicates with the AND operator between them.

func Base

func Base(v string) predicate.Ticker

Base applies equality check predicate on the "base" field. It's identical to BaseEQ.

func BaseCoinID

func BaseCoinID(v string) predicate.Ticker

BaseCoinID applies equality check predicate on the "base_coin_id" field. It's identical to BaseCoinIDEQ.

func BaseCoinIDContains

func BaseCoinIDContains(v string) predicate.Ticker

BaseCoinIDContains applies the Contains predicate on the "base_coin_id" field.

func BaseCoinIDContainsFold

func BaseCoinIDContainsFold(v string) predicate.Ticker

BaseCoinIDContainsFold applies the ContainsFold predicate on the "base_coin_id" field.

func BaseCoinIDEQ

func BaseCoinIDEQ(v string) predicate.Ticker

BaseCoinIDEQ applies the EQ predicate on the "base_coin_id" field.

func BaseCoinIDEqualFold

func BaseCoinIDEqualFold(v string) predicate.Ticker

BaseCoinIDEqualFold applies the EqualFold predicate on the "base_coin_id" field.

func BaseCoinIDGT

func BaseCoinIDGT(v string) predicate.Ticker

BaseCoinIDGT applies the GT predicate on the "base_coin_id" field.

func BaseCoinIDGTE

func BaseCoinIDGTE(v string) predicate.Ticker

BaseCoinIDGTE applies the GTE predicate on the "base_coin_id" field.

func BaseCoinIDHasPrefix

func BaseCoinIDHasPrefix(v string) predicate.Ticker

BaseCoinIDHasPrefix applies the HasPrefix predicate on the "base_coin_id" field.

func BaseCoinIDHasSuffix

func BaseCoinIDHasSuffix(v string) predicate.Ticker

BaseCoinIDHasSuffix applies the HasSuffix predicate on the "base_coin_id" field.

func BaseCoinIDIn

func BaseCoinIDIn(vs ...string) predicate.Ticker

BaseCoinIDIn applies the In predicate on the "base_coin_id" field.

func BaseCoinIDIsNil

func BaseCoinIDIsNil() predicate.Ticker

BaseCoinIDIsNil applies the IsNil predicate on the "base_coin_id" field.

func BaseCoinIDLT

func BaseCoinIDLT(v string) predicate.Ticker

BaseCoinIDLT applies the LT predicate on the "base_coin_id" field.

func BaseCoinIDLTE

func BaseCoinIDLTE(v string) predicate.Ticker

BaseCoinIDLTE applies the LTE predicate on the "base_coin_id" field.

func BaseCoinIDNEQ

func BaseCoinIDNEQ(v string) predicate.Ticker

BaseCoinIDNEQ applies the NEQ predicate on the "base_coin_id" field.

func BaseCoinIDNotIn

func BaseCoinIDNotIn(vs ...string) predicate.Ticker

BaseCoinIDNotIn applies the NotIn predicate on the "base_coin_id" field.

func BaseCoinIDNotNil

func BaseCoinIDNotNil() predicate.Ticker

BaseCoinIDNotNil applies the NotNil predicate on the "base_coin_id" field.

func BaseContains

func BaseContains(v string) predicate.Ticker

BaseContains applies the Contains predicate on the "base" field.

func BaseContainsFold

func BaseContainsFold(v string) predicate.Ticker

BaseContainsFold applies the ContainsFold predicate on the "base" field.

func BaseEQ

func BaseEQ(v string) predicate.Ticker

BaseEQ applies the EQ predicate on the "base" field.

func BaseEqualFold

func BaseEqualFold(v string) predicate.Ticker

BaseEqualFold applies the EqualFold predicate on the "base" field.

func BaseGT

func BaseGT(v string) predicate.Ticker

BaseGT applies the GT predicate on the "base" field.

func BaseGTE

func BaseGTE(v string) predicate.Ticker

BaseGTE applies the GTE predicate on the "base" field.

func BaseHasPrefix

func BaseHasPrefix(v string) predicate.Ticker

BaseHasPrefix applies the HasPrefix predicate on the "base" field.

func BaseHasSuffix

func BaseHasSuffix(v string) predicate.Ticker

BaseHasSuffix applies the HasSuffix predicate on the "base" field.

func BaseIn

func BaseIn(vs ...string) predicate.Ticker

BaseIn applies the In predicate on the "base" field.

func BaseLT

func BaseLT(v string) predicate.Ticker

BaseLT applies the LT predicate on the "base" field.

func BaseLTE

func BaseLTE(v string) predicate.Ticker

BaseLTE applies the LTE predicate on the "base" field.

func BaseNEQ

func BaseNEQ(v string) predicate.Ticker

BaseNEQ applies the NEQ predicate on the "base" field.

func BaseNotIn

func BaseNotIn(vs ...string) predicate.Ticker

BaseNotIn applies the NotIn predicate on the "base" field.

func BidAskSpreadPercentage

func BidAskSpreadPercentage(v float64) predicate.Ticker

BidAskSpreadPercentage applies equality check predicate on the "bid_ask_spread_percentage" field. It's identical to BidAskSpreadPercentageEQ.

func BidAskSpreadPercentageEQ

func BidAskSpreadPercentageEQ(v float64) predicate.Ticker

BidAskSpreadPercentageEQ applies the EQ predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageGT

func BidAskSpreadPercentageGT(v float64) predicate.Ticker

BidAskSpreadPercentageGT applies the GT predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageGTE

func BidAskSpreadPercentageGTE(v float64) predicate.Ticker

BidAskSpreadPercentageGTE applies the GTE predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageIn

func BidAskSpreadPercentageIn(vs ...float64) predicate.Ticker

BidAskSpreadPercentageIn applies the In predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageIsNil

func BidAskSpreadPercentageIsNil() predicate.Ticker

BidAskSpreadPercentageIsNil applies the IsNil predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageLT

func BidAskSpreadPercentageLT(v float64) predicate.Ticker

BidAskSpreadPercentageLT applies the LT predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageLTE

func BidAskSpreadPercentageLTE(v float64) predicate.Ticker

BidAskSpreadPercentageLTE applies the LTE predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageNEQ

func BidAskSpreadPercentageNEQ(v float64) predicate.Ticker

BidAskSpreadPercentageNEQ applies the NEQ predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageNotIn

func BidAskSpreadPercentageNotIn(vs ...float64) predicate.Ticker

BidAskSpreadPercentageNotIn applies the NotIn predicate on the "bid_ask_spread_percentage" field.

func BidAskSpreadPercentageNotNil

func BidAskSpreadPercentageNotNil() predicate.Ticker

BidAskSpreadPercentageNotNil applies the NotNil predicate on the "bid_ask_spread_percentage" field.

func ConvertedLastIsNil

func ConvertedLastIsNil() predicate.Ticker

ConvertedLastIsNil applies the IsNil predicate on the "converted_last" field.

func ConvertedLastNotNil

func ConvertedLastNotNil() predicate.Ticker

ConvertedLastNotNil applies the NotNil predicate on the "converted_last" field.

func ConvertedVolumeIsNil

func ConvertedVolumeIsNil() predicate.Ticker

ConvertedVolumeIsNil applies the IsNil predicate on the "converted_volume" field.

func ConvertedVolumeNotNil

func ConvertedVolumeNotNil() predicate.Ticker

ConvertedVolumeNotNil applies the NotNil predicate on the "converted_volume" field.

func Counter

func Counter(v string) predicate.Ticker

Counter applies equality check predicate on the "counter" field. It's identical to CounterEQ.

func CounterCoinID

func CounterCoinID(v string) predicate.Ticker

CounterCoinID applies equality check predicate on the "counter_coin_id" field. It's identical to CounterCoinIDEQ.

func CounterCoinIDContains

func CounterCoinIDContains(v string) predicate.Ticker

CounterCoinIDContains applies the Contains predicate on the "counter_coin_id" field.

func CounterCoinIDContainsFold

func CounterCoinIDContainsFold(v string) predicate.Ticker

CounterCoinIDContainsFold applies the ContainsFold predicate on the "counter_coin_id" field.

func CounterCoinIDEQ

func CounterCoinIDEQ(v string) predicate.Ticker

CounterCoinIDEQ applies the EQ predicate on the "counter_coin_id" field.

func CounterCoinIDEqualFold

func CounterCoinIDEqualFold(v string) predicate.Ticker

CounterCoinIDEqualFold applies the EqualFold predicate on the "counter_coin_id" field.

func CounterCoinIDGT

func CounterCoinIDGT(v string) predicate.Ticker

CounterCoinIDGT applies the GT predicate on the "counter_coin_id" field.

func CounterCoinIDGTE

func CounterCoinIDGTE(v string) predicate.Ticker

CounterCoinIDGTE applies the GTE predicate on the "counter_coin_id" field.

func CounterCoinIDHasPrefix

func CounterCoinIDHasPrefix(v string) predicate.Ticker

CounterCoinIDHasPrefix applies the HasPrefix predicate on the "counter_coin_id" field.

func CounterCoinIDHasSuffix

func CounterCoinIDHasSuffix(v string) predicate.Ticker

CounterCoinIDHasSuffix applies the HasSuffix predicate on the "counter_coin_id" field.

func CounterCoinIDIn

func CounterCoinIDIn(vs ...string) predicate.Ticker

CounterCoinIDIn applies the In predicate on the "counter_coin_id" field.

func CounterCoinIDIsNil

func CounterCoinIDIsNil() predicate.Ticker

CounterCoinIDIsNil applies the IsNil predicate on the "counter_coin_id" field.

func CounterCoinIDLT

func CounterCoinIDLT(v string) predicate.Ticker

CounterCoinIDLT applies the LT predicate on the "counter_coin_id" field.

func CounterCoinIDLTE

func CounterCoinIDLTE(v string) predicate.Ticker

CounterCoinIDLTE applies the LTE predicate on the "counter_coin_id" field.

func CounterCoinIDNEQ

func CounterCoinIDNEQ(v string) predicate.Ticker

CounterCoinIDNEQ applies the NEQ predicate on the "counter_coin_id" field.

func CounterCoinIDNotIn

func CounterCoinIDNotIn(vs ...string) predicate.Ticker

CounterCoinIDNotIn applies the NotIn predicate on the "counter_coin_id" field.

func CounterCoinIDNotNil

func CounterCoinIDNotNil() predicate.Ticker

CounterCoinIDNotNil applies the NotNil predicate on the "counter_coin_id" field.

func CounterContains

func CounterContains(v string) predicate.Ticker

CounterContains applies the Contains predicate on the "counter" field.

func CounterContainsFold

func CounterContainsFold(v string) predicate.Ticker

CounterContainsFold applies the ContainsFold predicate on the "counter" field.

func CounterEQ

func CounterEQ(v string) predicate.Ticker

CounterEQ applies the EQ predicate on the "counter" field.

func CounterEqualFold

func CounterEqualFold(v string) predicate.Ticker

CounterEqualFold applies the EqualFold predicate on the "counter" field.

func CounterGT

func CounterGT(v string) predicate.Ticker

CounterGT applies the GT predicate on the "counter" field.

func CounterGTE

func CounterGTE(v string) predicate.Ticker

CounterGTE applies the GTE predicate on the "counter" field.

func CounterHasPrefix

func CounterHasPrefix(v string) predicate.Ticker

CounterHasPrefix applies the HasPrefix predicate on the "counter" field.

func CounterHasSuffix

func CounterHasSuffix(v string) predicate.Ticker

CounterHasSuffix applies the HasSuffix predicate on the "counter" field.

func CounterIn

func CounterIn(vs ...string) predicate.Ticker

CounterIn applies the In predicate on the "counter" field.

func CounterLT

func CounterLT(v string) predicate.Ticker

CounterLT applies the LT predicate on the "counter" field.

func CounterLTE

func CounterLTE(v string) predicate.Ticker

CounterLTE applies the LTE predicate on the "counter" field.

func CounterNEQ

func CounterNEQ(v string) predicate.Ticker

CounterNEQ applies the NEQ predicate on the "counter" field.

func CounterNotIn

func CounterNotIn(vs ...string) predicate.Ticker

CounterNotIn applies the NotIn predicate on the "counter" field.

func HasVenue

func HasVenue() predicate.Ticker

HasVenue applies the HasEdge predicate on the "venue" edge.

func HasVenueWith

func HasVenueWith(preds ...predicate.Venue) predicate.Ticker

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

func ID

func ID(id int) predicate.Ticker

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Ticker

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Ticker

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Ticker

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Ticker

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Ticker

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Ticker

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Ticker

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Ticker

IDNotIn applies the NotIn predicate on the ID field.

func IsAnomaly

func IsAnomaly(v bool) predicate.Ticker

IsAnomaly applies equality check predicate on the "is_anomaly" field. It's identical to IsAnomalyEQ.

func IsAnomalyEQ

func IsAnomalyEQ(v bool) predicate.Ticker

IsAnomalyEQ applies the EQ predicate on the "is_anomaly" field.

func IsAnomalyIsNil

func IsAnomalyIsNil() predicate.Ticker

IsAnomalyIsNil applies the IsNil predicate on the "is_anomaly" field.

func IsAnomalyNEQ

func IsAnomalyNEQ(v bool) predicate.Ticker

IsAnomalyNEQ applies the NEQ predicate on the "is_anomaly" field.

func IsAnomalyNotNil

func IsAnomalyNotNil() predicate.Ticker

IsAnomalyNotNil applies the NotNil predicate on the "is_anomaly" field.

func IsStale

func IsStale(v bool) predicate.Ticker

IsStale applies equality check predicate on the "is_stale" field. It's identical to IsStaleEQ.

func IsStaleEQ

func IsStaleEQ(v bool) predicate.Ticker

IsStaleEQ applies the EQ predicate on the "is_stale" field.

func IsStaleIsNil

func IsStaleIsNil() predicate.Ticker

IsStaleIsNil applies the IsNil predicate on the "is_stale" field.

func IsStaleNEQ

func IsStaleNEQ(v bool) predicate.Ticker

IsStaleNEQ applies the NEQ predicate on the "is_stale" field.

func IsStaleNotNil

func IsStaleNotNil() predicate.Ticker

IsStaleNotNil applies the NotNil predicate on the "is_stale" field.

func Last

func Last(v float64) predicate.Ticker

Last applies equality check predicate on the "last" field. It's identical to LastEQ.

func LastEQ

func LastEQ(v float64) predicate.Ticker

LastEQ applies the EQ predicate on the "last" field.

func LastFetchAt

func LastFetchAt(v time.Time) predicate.Ticker

LastFetchAt applies equality check predicate on the "last_fetch_at" field. It's identical to LastFetchAtEQ.

func LastFetchAtEQ

func LastFetchAtEQ(v time.Time) predicate.Ticker

LastFetchAtEQ applies the EQ predicate on the "last_fetch_at" field.

func LastFetchAtGT

func LastFetchAtGT(v time.Time) predicate.Ticker

LastFetchAtGT applies the GT predicate on the "last_fetch_at" field.

func LastFetchAtGTE

func LastFetchAtGTE(v time.Time) predicate.Ticker

LastFetchAtGTE applies the GTE predicate on the "last_fetch_at" field.

func LastFetchAtIn

func LastFetchAtIn(vs ...time.Time) predicate.Ticker

LastFetchAtIn applies the In predicate on the "last_fetch_at" field.

func LastFetchAtIsNil

func LastFetchAtIsNil() predicate.Ticker

LastFetchAtIsNil applies the IsNil predicate on the "last_fetch_at" field.

func LastFetchAtLT

func LastFetchAtLT(v time.Time) predicate.Ticker

LastFetchAtLT applies the LT predicate on the "last_fetch_at" field.

func LastFetchAtLTE

func LastFetchAtLTE(v time.Time) predicate.Ticker

LastFetchAtLTE applies the LTE predicate on the "last_fetch_at" field.

func LastFetchAtNEQ

func LastFetchAtNEQ(v time.Time) predicate.Ticker

LastFetchAtNEQ applies the NEQ predicate on the "last_fetch_at" field.

func LastFetchAtNotIn

func LastFetchAtNotIn(vs ...time.Time) predicate.Ticker

LastFetchAtNotIn applies the NotIn predicate on the "last_fetch_at" field.

func LastFetchAtNotNil

func LastFetchAtNotNil() predicate.Ticker

LastFetchAtNotNil applies the NotNil predicate on the "last_fetch_at" field.

func LastGT

func LastGT(v float64) predicate.Ticker

LastGT applies the GT predicate on the "last" field.

func LastGTE

func LastGTE(v float64) predicate.Ticker

LastGTE applies the GTE predicate on the "last" field.

func LastIn

func LastIn(vs ...float64) predicate.Ticker

LastIn applies the In predicate on the "last" field.

func LastIsNil

func LastIsNil() predicate.Ticker

LastIsNil applies the IsNil predicate on the "last" field.

func LastLT

func LastLT(v float64) predicate.Ticker

LastLT applies the LT predicate on the "last" field.

func LastLTE

func LastLTE(v float64) predicate.Ticker

LastLTE applies the LTE predicate on the "last" field.

func LastNEQ

func LastNEQ(v float64) predicate.Ticker

LastNEQ applies the NEQ predicate on the "last" field.

func LastNotIn

func LastNotIn(vs ...float64) predicate.Ticker

LastNotIn applies the NotIn predicate on the "last" field.

func LastNotNil

func LastNotNil() predicate.Ticker

LastNotNil applies the NotNil predicate on the "last" field.

func LastTradedAt

func LastTradedAt(v time.Time) predicate.Ticker

LastTradedAt applies equality check predicate on the "last_traded_at" field. It's identical to LastTradedAtEQ.

func LastTradedAtEQ

func LastTradedAtEQ(v time.Time) predicate.Ticker

LastTradedAtEQ applies the EQ predicate on the "last_traded_at" field.

func LastTradedAtGT

func LastTradedAtGT(v time.Time) predicate.Ticker

LastTradedAtGT applies the GT predicate on the "last_traded_at" field.

func LastTradedAtGTE

func LastTradedAtGTE(v time.Time) predicate.Ticker

LastTradedAtGTE applies the GTE predicate on the "last_traded_at" field.

func LastTradedAtIn

func LastTradedAtIn(vs ...time.Time) predicate.Ticker

LastTradedAtIn applies the In predicate on the "last_traded_at" field.

func LastTradedAtIsNil

func LastTradedAtIsNil() predicate.Ticker

LastTradedAtIsNil applies the IsNil predicate on the "last_traded_at" field.

func LastTradedAtLT

func LastTradedAtLT(v time.Time) predicate.Ticker

LastTradedAtLT applies the LT predicate on the "last_traded_at" field.

func LastTradedAtLTE

func LastTradedAtLTE(v time.Time) predicate.Ticker

LastTradedAtLTE applies the LTE predicate on the "last_traded_at" field.

func LastTradedAtNEQ

func LastTradedAtNEQ(v time.Time) predicate.Ticker

LastTradedAtNEQ applies the NEQ predicate on the "last_traded_at" field.

func LastTradedAtNotIn

func LastTradedAtNotIn(vs ...time.Time) predicate.Ticker

LastTradedAtNotIn applies the NotIn predicate on the "last_traded_at" field.

func LastTradedAtNotNil

func LastTradedAtNotNil() predicate.Ticker

LastTradedAtNotNil applies the NotNil predicate on the "last_traded_at" field.

func MarketIsNil

func MarketIsNil() predicate.Ticker

MarketIsNil applies the IsNil predicate on the "market" field.

func MarketNotNil

func MarketNotNil() predicate.Ticker

MarketNotNil applies the NotNil predicate on the "market" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Ticker) predicate.Ticker

Or groups predicates with the OR operator between them.

func Timestamp

func Timestamp(v time.Time) predicate.Ticker

Timestamp applies equality check predicate on the "timestamp" field. It's identical to TimestampEQ.

func TimestampEQ

func TimestampEQ(v time.Time) predicate.Ticker

TimestampEQ applies the EQ predicate on the "timestamp" field.

func TimestampGT

func TimestampGT(v time.Time) predicate.Ticker

TimestampGT applies the GT predicate on the "timestamp" field.

func TimestampGTE

func TimestampGTE(v time.Time) predicate.Ticker

TimestampGTE applies the GTE predicate on the "timestamp" field.

func TimestampIn

func TimestampIn(vs ...time.Time) predicate.Ticker

TimestampIn applies the In predicate on the "timestamp" field.

func TimestampIsNil

func TimestampIsNil() predicate.Ticker

TimestampIsNil applies the IsNil predicate on the "timestamp" field.

func TimestampLT

func TimestampLT(v time.Time) predicate.Ticker

TimestampLT applies the LT predicate on the "timestamp" field.

func TimestampLTE

func TimestampLTE(v time.Time) predicate.Ticker

TimestampLTE applies the LTE predicate on the "timestamp" field.

func TimestampNEQ

func TimestampNEQ(v time.Time) predicate.Ticker

TimestampNEQ applies the NEQ predicate on the "timestamp" field.

func TimestampNotIn

func TimestampNotIn(vs ...time.Time) predicate.Ticker

TimestampNotIn applies the NotIn predicate on the "timestamp" field.

func TimestampNotNil

func TimestampNotNil() predicate.Ticker

TimestampNotNil applies the NotNil predicate on the "timestamp" field.

func TokenInfoURL

func TokenInfoURL(v string) predicate.Ticker

TokenInfoURL applies equality check predicate on the "token_info_url" field. It's identical to TokenInfoURLEQ.

func TokenInfoURLContains

func TokenInfoURLContains(v string) predicate.Ticker

TokenInfoURLContains applies the Contains predicate on the "token_info_url" field.

func TokenInfoURLContainsFold

func TokenInfoURLContainsFold(v string) predicate.Ticker

TokenInfoURLContainsFold applies the ContainsFold predicate on the "token_info_url" field.

func TokenInfoURLEQ

func TokenInfoURLEQ(v string) predicate.Ticker

TokenInfoURLEQ applies the EQ predicate on the "token_info_url" field.

func TokenInfoURLEqualFold

func TokenInfoURLEqualFold(v string) predicate.Ticker

TokenInfoURLEqualFold applies the EqualFold predicate on the "token_info_url" field.

func TokenInfoURLGT

func TokenInfoURLGT(v string) predicate.Ticker

TokenInfoURLGT applies the GT predicate on the "token_info_url" field.

func TokenInfoURLGTE

func TokenInfoURLGTE(v string) predicate.Ticker

TokenInfoURLGTE applies the GTE predicate on the "token_info_url" field.

func TokenInfoURLHasPrefix

func TokenInfoURLHasPrefix(v string) predicate.Ticker

TokenInfoURLHasPrefix applies the HasPrefix predicate on the "token_info_url" field.

func TokenInfoURLHasSuffix

func TokenInfoURLHasSuffix(v string) predicate.Ticker

TokenInfoURLHasSuffix applies the HasSuffix predicate on the "token_info_url" field.

func TokenInfoURLIn

func TokenInfoURLIn(vs ...string) predicate.Ticker

TokenInfoURLIn applies the In predicate on the "token_info_url" field.

func TokenInfoURLIsNil

func TokenInfoURLIsNil() predicate.Ticker

TokenInfoURLIsNil applies the IsNil predicate on the "token_info_url" field.

func TokenInfoURLLT

func TokenInfoURLLT(v string) predicate.Ticker

TokenInfoURLLT applies the LT predicate on the "token_info_url" field.

func TokenInfoURLLTE

func TokenInfoURLLTE(v string) predicate.Ticker

TokenInfoURLLTE applies the LTE predicate on the "token_info_url" field.

func TokenInfoURLNEQ

func TokenInfoURLNEQ(v string) predicate.Ticker

TokenInfoURLNEQ applies the NEQ predicate on the "token_info_url" field.

func TokenInfoURLNotIn

func TokenInfoURLNotIn(vs ...string) predicate.Ticker

TokenInfoURLNotIn applies the NotIn predicate on the "token_info_url" field.

func TokenInfoURLNotNil

func TokenInfoURLNotNil() predicate.Ticker

TokenInfoURLNotNil applies the NotNil predicate on the "token_info_url" field.

func TradeURL

func TradeURL(v string) predicate.Ticker

TradeURL applies equality check predicate on the "trade_url" field. It's identical to TradeURLEQ.

func TradeURLContains

func TradeURLContains(v string) predicate.Ticker

TradeURLContains applies the Contains predicate on the "trade_url" field.

func TradeURLContainsFold

func TradeURLContainsFold(v string) predicate.Ticker

TradeURLContainsFold applies the ContainsFold predicate on the "trade_url" field.

func TradeURLEQ

func TradeURLEQ(v string) predicate.Ticker

TradeURLEQ applies the EQ predicate on the "trade_url" field.

func TradeURLEqualFold

func TradeURLEqualFold(v string) predicate.Ticker

TradeURLEqualFold applies the EqualFold predicate on the "trade_url" field.

func TradeURLGT

func TradeURLGT(v string) predicate.Ticker

TradeURLGT applies the GT predicate on the "trade_url" field.

func TradeURLGTE

func TradeURLGTE(v string) predicate.Ticker

TradeURLGTE applies the GTE predicate on the "trade_url" field.

func TradeURLHasPrefix

func TradeURLHasPrefix(v string) predicate.Ticker

TradeURLHasPrefix applies the HasPrefix predicate on the "trade_url" field.

func TradeURLHasSuffix

func TradeURLHasSuffix(v string) predicate.Ticker

TradeURLHasSuffix applies the HasSuffix predicate on the "trade_url" field.

func TradeURLIn

func TradeURLIn(vs ...string) predicate.Ticker

TradeURLIn applies the In predicate on the "trade_url" field.

func TradeURLIsNil

func TradeURLIsNil() predicate.Ticker

TradeURLIsNil applies the IsNil predicate on the "trade_url" field.

func TradeURLLT

func TradeURLLT(v string) predicate.Ticker

TradeURLLT applies the LT predicate on the "trade_url" field.

func TradeURLLTE

func TradeURLLTE(v string) predicate.Ticker

TradeURLLTE applies the LTE predicate on the "trade_url" field.

func TradeURLNEQ

func TradeURLNEQ(v string) predicate.Ticker

TradeURLNEQ applies the NEQ predicate on the "trade_url" field.

func TradeURLNotIn

func TradeURLNotIn(vs ...string) predicate.Ticker

TradeURLNotIn applies the NotIn predicate on the "trade_url" field.

func TradeURLNotNil

func TradeURLNotNil() predicate.Ticker

TradeURLNotNil applies the NotNil predicate on the "trade_url" field.

func TrustScore

func TrustScore(v string) predicate.Ticker

TrustScore applies equality check predicate on the "trust_score" field. It's identical to TrustScoreEQ.

func TrustScoreContains

func TrustScoreContains(v string) predicate.Ticker

TrustScoreContains applies the Contains predicate on the "trust_score" field.

func TrustScoreContainsFold

func TrustScoreContainsFold(v string) predicate.Ticker

TrustScoreContainsFold applies the ContainsFold predicate on the "trust_score" field.

func TrustScoreEQ

func TrustScoreEQ(v string) predicate.Ticker

TrustScoreEQ applies the EQ predicate on the "trust_score" field.

func TrustScoreEqualFold

func TrustScoreEqualFold(v string) predicate.Ticker

TrustScoreEqualFold applies the EqualFold predicate on the "trust_score" field.

func TrustScoreGT

func TrustScoreGT(v string) predicate.Ticker

TrustScoreGT applies the GT predicate on the "trust_score" field.

func TrustScoreGTE

func TrustScoreGTE(v string) predicate.Ticker

TrustScoreGTE applies the GTE predicate on the "trust_score" field.

func TrustScoreHasPrefix

func TrustScoreHasPrefix(v string) predicate.Ticker

TrustScoreHasPrefix applies the HasPrefix predicate on the "trust_score" field.

func TrustScoreHasSuffix

func TrustScoreHasSuffix(v string) predicate.Ticker

TrustScoreHasSuffix applies the HasSuffix predicate on the "trust_score" field.

func TrustScoreIn

func TrustScoreIn(vs ...string) predicate.Ticker

TrustScoreIn applies the In predicate on the "trust_score" field.

func TrustScoreIsNil

func TrustScoreIsNil() predicate.Ticker

TrustScoreIsNil applies the IsNil predicate on the "trust_score" field.

func TrustScoreLT

func TrustScoreLT(v string) predicate.Ticker

TrustScoreLT applies the LT predicate on the "trust_score" field.

func TrustScoreLTE

func TrustScoreLTE(v string) predicate.Ticker

TrustScoreLTE applies the LTE predicate on the "trust_score" field.

func TrustScoreNEQ

func TrustScoreNEQ(v string) predicate.Ticker

TrustScoreNEQ applies the NEQ predicate on the "trust_score" field.

func TrustScoreNotIn

func TrustScoreNotIn(vs ...string) predicate.Ticker

TrustScoreNotIn applies the NotIn predicate on the "trust_score" field.

func TrustScoreNotNil

func TrustScoreNotNil() predicate.Ticker

TrustScoreNotNil applies the NotNil predicate on the "trust_score" field.

func ValidColumn

func ValidColumn(column string) bool

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

func Volume

func Volume(v float64) predicate.Ticker

Volume applies equality check predicate on the "volume" field. It's identical to VolumeEQ.

func VolumeEQ

func VolumeEQ(v float64) predicate.Ticker

VolumeEQ applies the EQ predicate on the "volume" field.

func VolumeGT

func VolumeGT(v float64) predicate.Ticker

VolumeGT applies the GT predicate on the "volume" field.

func VolumeGTE

func VolumeGTE(v float64) predicate.Ticker

VolumeGTE applies the GTE predicate on the "volume" field.

func VolumeIn

func VolumeIn(vs ...float64) predicate.Ticker

VolumeIn applies the In predicate on the "volume" field.

func VolumeIsNil

func VolumeIsNil() predicate.Ticker

VolumeIsNil applies the IsNil predicate on the "volume" field.

func VolumeLT

func VolumeLT(v float64) predicate.Ticker

VolumeLT applies the LT predicate on the "volume" field.

func VolumeLTE

func VolumeLTE(v float64) predicate.Ticker

VolumeLTE applies the LTE predicate on the "volume" field.

func VolumeNEQ

func VolumeNEQ(v float64) predicate.Ticker

VolumeNEQ applies the NEQ predicate on the "volume" field.

func VolumeNotIn

func VolumeNotIn(vs ...float64) predicate.Ticker

VolumeNotIn applies the NotIn predicate on the "volume" field.

func VolumeNotNil

func VolumeNotNil() predicate.Ticker

VolumeNotNil applies the NotNil predicate on the "volume" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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