identityverificationrequest

package
v0.2.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the identityverificationrequest type in the database.
	Label = "identity_verification_request"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldWalletAddress holds the string denoting the wallet_address field in the database.
	FieldWalletAddress = "wallet_address"
	// FieldWalletSignature holds the string denoting the wallet_signature field in the database.
	FieldWalletSignature = "wallet_signature"
	// FieldPlatform holds the string denoting the platform field in the database.
	FieldPlatform = "platform"
	// FieldPlatformRef holds the string denoting the platform_ref field in the database.
	FieldPlatformRef = "platform_ref"
	// FieldVerificationURL holds the string denoting the verification_url field in the database.
	FieldVerificationURL = "verification_url"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldFeeReclaimed holds the string denoting the fee_reclaimed field in the database.
	FieldFeeReclaimed = "fee_reclaimed"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldLastURLCreatedAt holds the string denoting the last_url_created_at field in the database.
	FieldLastURLCreatedAt = "last_url_created_at"
	// Table holds the table name of the identityverificationrequest in the database.
	Table = "identity_verification_requests"
)
View Source
const DefaultStatus = StatusPending

StatusPending is the default value of the Status enum.

Variables

View Source
var (
	// DefaultFeeReclaimed holds the default value on creation for the "fee_reclaimed" field.
	DefaultFeeReclaimed bool
	// 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
	// DefaultLastURLCreatedAt holds the default value on creation for the "last_url_created_at" field.
	DefaultLastURLCreatedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for identityverificationrequest fields.

Functions

func And

And groups predicates with the AND operator between them.

func FeeReclaimed

FeeReclaimed applies equality check predicate on the "fee_reclaimed" field. It's identical to FeeReclaimedEQ.

func FeeReclaimedEQ

func FeeReclaimedEQ(v bool) predicate.IdentityVerificationRequest

FeeReclaimedEQ applies the EQ predicate on the "fee_reclaimed" field.

func FeeReclaimedNEQ

func FeeReclaimedNEQ(v bool) predicate.IdentityVerificationRequest

FeeReclaimedNEQ applies the NEQ predicate on the "fee_reclaimed" field.

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ 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

IDNotIn applies the NotIn predicate on the ID field.

func LastURLCreatedAt

func LastURLCreatedAt(v time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAt applies equality check predicate on the "last_url_created_at" field. It's identical to LastURLCreatedAtEQ.

func LastURLCreatedAtEQ

func LastURLCreatedAtEQ(v time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtEQ applies the EQ predicate on the "last_url_created_at" field.

func LastURLCreatedAtGT

func LastURLCreatedAtGT(v time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtGT applies the GT predicate on the "last_url_created_at" field.

func LastURLCreatedAtGTE

func LastURLCreatedAtGTE(v time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtGTE applies the GTE predicate on the "last_url_created_at" field.

func LastURLCreatedAtIn

func LastURLCreatedAtIn(vs ...time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtIn applies the In predicate on the "last_url_created_at" field.

func LastURLCreatedAtLT

func LastURLCreatedAtLT(v time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtLT applies the LT predicate on the "last_url_created_at" field.

func LastURLCreatedAtLTE

func LastURLCreatedAtLTE(v time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtLTE applies the LTE predicate on the "last_url_created_at" field.

func LastURLCreatedAtNEQ

func LastURLCreatedAtNEQ(v time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtNEQ applies the NEQ predicate on the "last_url_created_at" field.

func LastURLCreatedAtNotIn

func LastURLCreatedAtNotIn(vs ...time.Time) predicate.IdentityVerificationRequest

LastURLCreatedAtNotIn applies the NotIn predicate on the "last_url_created_at" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func PlatformEQ

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

func PlatformIn

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

func PlatformNEQ

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

func PlatformNotIn

func PlatformNotIn(vs ...Platform) predicate.IdentityVerificationRequest

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

func PlatformRef

PlatformRef applies equality check predicate on the "platform_ref" field. It's identical to PlatformRefEQ.

func PlatformRefContains

func PlatformRefContains(v string) predicate.IdentityVerificationRequest

PlatformRefContains applies the Contains predicate on the "platform_ref" field.

func PlatformRefContainsFold

func PlatformRefContainsFold(v string) predicate.IdentityVerificationRequest

PlatformRefContainsFold applies the ContainsFold predicate on the "platform_ref" field.

func PlatformRefEQ

PlatformRefEQ applies the EQ predicate on the "platform_ref" field.

func PlatformRefEqualFold

func PlatformRefEqualFold(v string) predicate.IdentityVerificationRequest

PlatformRefEqualFold applies the EqualFold predicate on the "platform_ref" field.

func PlatformRefGT

PlatformRefGT applies the GT predicate on the "platform_ref" field.

func PlatformRefGTE

PlatformRefGTE applies the GTE predicate on the "platform_ref" field.

func PlatformRefHasPrefix

func PlatformRefHasPrefix(v string) predicate.IdentityVerificationRequest

PlatformRefHasPrefix applies the HasPrefix predicate on the "platform_ref" field.

func PlatformRefHasSuffix

func PlatformRefHasSuffix(v string) predicate.IdentityVerificationRequest

PlatformRefHasSuffix applies the HasSuffix predicate on the "platform_ref" field.

func PlatformRefIn

func PlatformRefIn(vs ...string) predicate.IdentityVerificationRequest

PlatformRefIn applies the In predicate on the "platform_ref" field.

func PlatformRefLT

PlatformRefLT applies the LT predicate on the "platform_ref" field.

func PlatformRefLTE

PlatformRefLTE applies the LTE predicate on the "platform_ref" field.

func PlatformRefNEQ

PlatformRefNEQ applies the NEQ predicate on the "platform_ref" field.

func PlatformRefNotIn

func PlatformRefNotIn(vs ...string) predicate.IdentityVerificationRequest

PlatformRefNotIn applies the NotIn predicate on the "platform_ref" field.

func PlatformValidator

func PlatformValidator(pl Platform) error

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

func StatusEQ

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

func StatusIn

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

func StatusNEQ

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

func StatusNotIn

func StatusNotIn(vs ...Status) predicate.IdentityVerificationRequest

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

func StatusValidator

func StatusValidator(s Status) error

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

func UpdatedAt

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

func UpdatedAtEQ

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

func UpdatedAtGT

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

func UpdatedAtGTE

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

func UpdatedAtIn

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

func UpdatedAtLT

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

func UpdatedAtLTE

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

func UpdatedAtNEQ

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func ValidColumn

func ValidColumn(column string) bool

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

func VerificationURL

func VerificationURL(v string) predicate.IdentityVerificationRequest

VerificationURL applies equality check predicate on the "verification_url" field. It's identical to VerificationURLEQ.

func VerificationURLContains

func VerificationURLContains(v string) predicate.IdentityVerificationRequest

VerificationURLContains applies the Contains predicate on the "verification_url" field.

func VerificationURLContainsFold

func VerificationURLContainsFold(v string) predicate.IdentityVerificationRequest

VerificationURLContainsFold applies the ContainsFold predicate on the "verification_url" field.

func VerificationURLEQ

func VerificationURLEQ(v string) predicate.IdentityVerificationRequest

VerificationURLEQ applies the EQ predicate on the "verification_url" field.

func VerificationURLEqualFold

func VerificationURLEqualFold(v string) predicate.IdentityVerificationRequest

VerificationURLEqualFold applies the EqualFold predicate on the "verification_url" field.

func VerificationURLGT

func VerificationURLGT(v string) predicate.IdentityVerificationRequest

VerificationURLGT applies the GT predicate on the "verification_url" field.

func VerificationURLGTE

func VerificationURLGTE(v string) predicate.IdentityVerificationRequest

VerificationURLGTE applies the GTE predicate on the "verification_url" field.

func VerificationURLHasPrefix

func VerificationURLHasPrefix(v string) predicate.IdentityVerificationRequest

VerificationURLHasPrefix applies the HasPrefix predicate on the "verification_url" field.

func VerificationURLHasSuffix

func VerificationURLHasSuffix(v string) predicate.IdentityVerificationRequest

VerificationURLHasSuffix applies the HasSuffix predicate on the "verification_url" field.

func VerificationURLIn

func VerificationURLIn(vs ...string) predicate.IdentityVerificationRequest

VerificationURLIn applies the In predicate on the "verification_url" field.

func VerificationURLLT

func VerificationURLLT(v string) predicate.IdentityVerificationRequest

VerificationURLLT applies the LT predicate on the "verification_url" field.

func VerificationURLLTE

func VerificationURLLTE(v string) predicate.IdentityVerificationRequest

VerificationURLLTE applies the LTE predicate on the "verification_url" field.

func VerificationURLNEQ

func VerificationURLNEQ(v string) predicate.IdentityVerificationRequest

VerificationURLNEQ applies the NEQ predicate on the "verification_url" field.

func VerificationURLNotIn

func VerificationURLNotIn(vs ...string) predicate.IdentityVerificationRequest

VerificationURLNotIn applies the NotIn predicate on the "verification_url" field.

func WalletAddress

WalletAddress applies equality check predicate on the "wallet_address" field. It's identical to WalletAddressEQ.

func WalletAddressContains

func WalletAddressContains(v string) predicate.IdentityVerificationRequest

WalletAddressContains applies the Contains predicate on the "wallet_address" field.

func WalletAddressContainsFold

func WalletAddressContainsFold(v string) predicate.IdentityVerificationRequest

WalletAddressContainsFold applies the ContainsFold predicate on the "wallet_address" field.

func WalletAddressEQ

func WalletAddressEQ(v string) predicate.IdentityVerificationRequest

WalletAddressEQ applies the EQ predicate on the "wallet_address" field.

func WalletAddressEqualFold

func WalletAddressEqualFold(v string) predicate.IdentityVerificationRequest

WalletAddressEqualFold applies the EqualFold predicate on the "wallet_address" field.

func WalletAddressGT

func WalletAddressGT(v string) predicate.IdentityVerificationRequest

WalletAddressGT applies the GT predicate on the "wallet_address" field.

func WalletAddressGTE

func WalletAddressGTE(v string) predicate.IdentityVerificationRequest

WalletAddressGTE applies the GTE predicate on the "wallet_address" field.

func WalletAddressHasPrefix

func WalletAddressHasPrefix(v string) predicate.IdentityVerificationRequest

WalletAddressHasPrefix applies the HasPrefix predicate on the "wallet_address" field.

func WalletAddressHasSuffix

func WalletAddressHasSuffix(v string) predicate.IdentityVerificationRequest

WalletAddressHasSuffix applies the HasSuffix predicate on the "wallet_address" field.

func WalletAddressIn

func WalletAddressIn(vs ...string) predicate.IdentityVerificationRequest

WalletAddressIn applies the In predicate on the "wallet_address" field.

func WalletAddressLT

func WalletAddressLT(v string) predicate.IdentityVerificationRequest

WalletAddressLT applies the LT predicate on the "wallet_address" field.

func WalletAddressLTE

func WalletAddressLTE(v string) predicate.IdentityVerificationRequest

WalletAddressLTE applies the LTE predicate on the "wallet_address" field.

func WalletAddressNEQ

func WalletAddressNEQ(v string) predicate.IdentityVerificationRequest

WalletAddressNEQ applies the NEQ predicate on the "wallet_address" field.

func WalletAddressNotIn

func WalletAddressNotIn(vs ...string) predicate.IdentityVerificationRequest

WalletAddressNotIn applies the NotIn predicate on the "wallet_address" field.

func WalletSignature

func WalletSignature(v string) predicate.IdentityVerificationRequest

WalletSignature applies equality check predicate on the "wallet_signature" field. It's identical to WalletSignatureEQ.

func WalletSignatureContains

func WalletSignatureContains(v string) predicate.IdentityVerificationRequest

WalletSignatureContains applies the Contains predicate on the "wallet_signature" field.

func WalletSignatureContainsFold

func WalletSignatureContainsFold(v string) predicate.IdentityVerificationRequest

WalletSignatureContainsFold applies the ContainsFold predicate on the "wallet_signature" field.

func WalletSignatureEQ

func WalletSignatureEQ(v string) predicate.IdentityVerificationRequest

WalletSignatureEQ applies the EQ predicate on the "wallet_signature" field.

func WalletSignatureEqualFold

func WalletSignatureEqualFold(v string) predicate.IdentityVerificationRequest

WalletSignatureEqualFold applies the EqualFold predicate on the "wallet_signature" field.

func WalletSignatureGT

func WalletSignatureGT(v string) predicate.IdentityVerificationRequest

WalletSignatureGT applies the GT predicate on the "wallet_signature" field.

func WalletSignatureGTE

func WalletSignatureGTE(v string) predicate.IdentityVerificationRequest

WalletSignatureGTE applies the GTE predicate on the "wallet_signature" field.

func WalletSignatureHasPrefix

func WalletSignatureHasPrefix(v string) predicate.IdentityVerificationRequest

WalletSignatureHasPrefix applies the HasPrefix predicate on the "wallet_signature" field.

func WalletSignatureHasSuffix

func WalletSignatureHasSuffix(v string) predicate.IdentityVerificationRequest

WalletSignatureHasSuffix applies the HasSuffix predicate on the "wallet_signature" field.

func WalletSignatureIn

func WalletSignatureIn(vs ...string) predicate.IdentityVerificationRequest

WalletSignatureIn applies the In predicate on the "wallet_signature" field.

func WalletSignatureLT

func WalletSignatureLT(v string) predicate.IdentityVerificationRequest

WalletSignatureLT applies the LT predicate on the "wallet_signature" field.

func WalletSignatureLTE

func WalletSignatureLTE(v string) predicate.IdentityVerificationRequest

WalletSignatureLTE applies the LTE predicate on the "wallet_signature" field.

func WalletSignatureNEQ

func WalletSignatureNEQ(v string) predicate.IdentityVerificationRequest

WalletSignatureNEQ applies the NEQ predicate on the "wallet_signature" field.

func WalletSignatureNotIn

func WalletSignatureNotIn(vs ...string) predicate.IdentityVerificationRequest

WalletSignatureNotIn applies the NotIn predicate on the "wallet_signature" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the IdentityVerificationRequest queries.

func ByFeeReclaimed

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

ByFeeReclaimed orders the results by the fee_reclaimed field.

func ByID

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

ByID orders the results by the id field.

func ByLastURLCreatedAt

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

ByLastURLCreatedAt orders the results by the last_url_created_at field.

func ByPlatform

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

ByPlatform orders the results by the platform field.

func ByPlatformRef

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

ByPlatformRef orders the results by the platform_ref field.

func ByStatus

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

ByStatus orders the results by the status field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByVerificationURL

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

ByVerificationURL orders the results by the verification_url field.

func ByWalletAddress

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

ByWalletAddress orders the results by the wallet_address field.

func ByWalletSignature

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

ByWalletSignature orders the results by the wallet_signature field.

type Platform

type Platform string

Platform defines the type for the "platform" enum field.

const (
	PlatformSmileID Platform = "smile_id"
	PlatformMetamap Platform = "metamap"
	PlatformSumsub  Platform = "sumsub"
	PlatformSynaps  Platform = "synaps"
)

Platform values.

func (Platform) String

func (pl Platform) String() string

type Status

type Status string

Status defines the type for the "status" enum field.

const (
	StatusPending Status = "pending"
	StatusSuccess Status = "success"
	StatusFailed  Status = "failed"
)

Status values.

func (Status) String

func (s Status) String() string

Jump to

Keyboard shortcuts

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