user

package
v1.0.5 Latest Latest
Warning

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

Go to latest
Published: Apr 2, 2021 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_example_user_user_proto protoreflect.FileDescriptor

Functions

func DefaultDeleteAddress

func DefaultDeleteAddress(ctx context.Context, in *Address, db *gorm.DB) error

func DefaultDeleteAddressSet added in v0.15.0

func DefaultDeleteAddressSet(ctx context.Context, in []*Address, db *gorm.DB) error

func DefaultDeleteCreditCard

func DefaultDeleteCreditCard(ctx context.Context, in *CreditCard, db *gorm.DB) error

func DefaultDeleteCreditCardSet added in v0.15.0

func DefaultDeleteCreditCardSet(ctx context.Context, in []*CreditCard, db *gorm.DB) error

func DefaultDeleteEmail

func DefaultDeleteEmail(ctx context.Context, in *Email, db *gorm.DB) error

func DefaultDeleteEmailSet added in v0.15.0

func DefaultDeleteEmailSet(ctx context.Context, in []*Email, db *gorm.DB) error

func DefaultDeleteLanguage

func DefaultDeleteLanguage(ctx context.Context, in *Language, db *gorm.DB) error

func DefaultDeleteLanguageSet added in v0.15.0

func DefaultDeleteLanguageSet(ctx context.Context, in []*Language, db *gorm.DB) error

func DefaultDeleteUser

func DefaultDeleteUser(ctx context.Context, in *User, db *gorm.DB) error

func DefaultDeleteUserSet added in v0.15.0

func DefaultDeleteUserSet(ctx context.Context, in []*User, db *gorm.DB) error

Types

type Address

type Address struct {
	Id         *resource.Identifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Address_1  string               `protobuf:"bytes,2,opt,name=address_1,json=address1,proto3" json:"address_1,omitempty"`
	Address_2  string               `protobuf:"bytes,3,opt,name=address_2,json=address2,proto3" json:"address_2,omitempty"`
	Post       string               `protobuf:"bytes,4,opt,name=post,proto3" json:"post,omitempty"`
	External   *resource.Identifier `protobuf:"bytes,5,opt,name=external,proto3" json:"external,omitempty"`
	ImplicitFk *resource.Identifier `protobuf:"bytes,6,opt,name=implicit_fk,json=implicitFk,proto3" json:"implicit_fk,omitempty"`
	// contains filtered or unexported fields
}

func DefaultApplyFieldMaskAddress added in v0.9.0

func DefaultApplyFieldMaskAddress(ctx context.Context, patchee *Address, patcher *Address, updateMask *field_mask.FieldMask, prefix string, db *gorm.DB) (*Address, error)

DefaultApplyFieldMaskAddress patches an pbObject with patcher according to a field mask.

func DefaultCreateAddress

func DefaultCreateAddress(ctx context.Context, in *Address, db *gorm.DB) (*Address, error)

DefaultCreateAddress executes a basic gorm create call

func DefaultListAddress

func DefaultListAddress(ctx context.Context, db *gorm.DB) ([]*Address, error)

DefaultListAddress executes a gorm list call

func DefaultPatchAddress added in v0.9.0

func DefaultPatchAddress(ctx context.Context, in *Address, updateMask *field_mask.FieldMask, db *gorm.DB) (*Address, error)

DefaultPatchAddress executes a basic gorm update call with patch behavior

func DefaultPatchSetAddress added in v1.0.0

func DefaultPatchSetAddress(ctx context.Context, objects []*Address, updateMasks []*field_mask.FieldMask, db *gorm.DB) ([]*Address, error)

DefaultPatchSetAddress executes a bulk gorm update call with patch behavior

func DefaultReadAddress

func DefaultReadAddress(ctx context.Context, in *Address, db *gorm.DB) (*Address, error)

DefaultReadAddress executes a basic gorm read call

func DefaultStrictUpdateAddress

func DefaultStrictUpdateAddress(ctx context.Context, in *Address, db *gorm.DB) (*Address, error)

DefaultStrictUpdateAddress clears / replaces / appends first level 1:many children and then executes a gorm update call

func (*Address) Descriptor deprecated

func (*Address) Descriptor() ([]byte, []int)

Deprecated: Use Address.ProtoReflect.Descriptor instead.

func (*Address) GetAddress_1

func (x *Address) GetAddress_1() string

func (*Address) GetAddress_2

func (x *Address) GetAddress_2() string

func (*Address) GetExternal added in v0.6.0

func (x *Address) GetExternal() *resource.Identifier

func (*Address) GetId

func (x *Address) GetId() *resource.Identifier

func (*Address) GetImplicitFk added in v0.8.0

func (x *Address) GetImplicitFk() *resource.Identifier

func (*Address) GetPost

func (x *Address) GetPost() string

func (*Address) ProtoMessage

func (*Address) ProtoMessage()

func (*Address) ProtoReflect added in v1.0.0

func (x *Address) ProtoReflect() protoreflect.Message

func (*Address) Reset

func (x *Address) Reset()

func (*Address) String

func (x *Address) String() string

func (*Address) ToORM

func (m *Address) ToORM(ctx context.Context) (AddressORM, error)

ToORM runs the BeforeToORM hook if present, converts the fields of this object to ORM format, runs the AfterToORM hook, then returns the ORM object

type AddressORM

type AddressORM struct {
	AccountID  string
	Address_1  string
	Address_2  string
	External   []byte  `gorm:"type:jsonb"`
	Id         int64   `gorm:"type:integer;primary_key"`
	ImplicitFk *string `gorm:"type:text"`
	Post       string
}

func (AddressORM) TableName

func (AddressORM) TableName() string

TableName overrides the default tablename generated by GORM

func (*AddressORM) ToPB

func (m *AddressORM) ToPB(ctx context.Context) (Address, error)

ToPB runs the BeforeToPB hook if present, converts the fields of this object to PB format, runs the AfterToPB hook, then returns the PB object

type AddressORMWithAfterCreate_ added in v1.0.0

type AddressORMWithAfterCreate_ interface {
	AfterCreate_(context.Context, *gorm.DB) error
}

type AddressORMWithAfterDeleteSet added in v0.15.0

type AddressORMWithAfterDeleteSet interface {
	AfterDeleteSet(context.Context, []*Address, *gorm.DB) error
}

type AddressORMWithAfterDelete_ added in v1.0.0

type AddressORMWithAfterDelete_ interface {
	AfterDelete_(context.Context, *gorm.DB) error
}

type AddressORMWithAfterListFind added in v0.12.0

type AddressORMWithAfterListFind interface {
	AfterListFind(context.Context, *gorm.DB, *[]AddressORM) error
}

type AddressORMWithAfterReadFind added in v0.12.0

type AddressORMWithAfterReadFind interface {
	AfterReadFind(context.Context, *gorm.DB) error
}

type AddressORMWithAfterStrictUpdateSave added in v0.12.0

type AddressORMWithAfterStrictUpdateSave interface {
	AfterStrictUpdateSave(context.Context, *gorm.DB) error
}

type AddressORMWithBeforeCreate_ added in v1.0.0

type AddressORMWithBeforeCreate_ interface {
	BeforeCreate_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeDeleteSet added in v0.15.0

type AddressORMWithBeforeDeleteSet interface {
	BeforeDeleteSet(context.Context, []*Address, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeDelete_ added in v1.0.0

type AddressORMWithBeforeDelete_ interface {
	BeforeDelete_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeListApplyQuery added in v0.12.0

type AddressORMWithBeforeListApplyQuery interface {
	BeforeListApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeListFind added in v0.12.0

type AddressORMWithBeforeListFind interface {
	BeforeListFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeReadApplyQuery added in v0.12.0

type AddressORMWithBeforeReadApplyQuery interface {
	BeforeReadApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeReadFind added in v0.12.0

type AddressORMWithBeforeReadFind interface {
	BeforeReadFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeStrictUpdateCleanup added in v0.12.0

type AddressORMWithBeforeStrictUpdateCleanup interface {
	BeforeStrictUpdateCleanup(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressORMWithBeforeStrictUpdateSave added in v0.12.0

type AddressORMWithBeforeStrictUpdateSave interface {
	BeforeStrictUpdateSave(context.Context, *gorm.DB) (*gorm.DB, error)
}

type AddressWithAfterPatchSave added in v0.12.0

type AddressWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *Address, *field_mask.FieldMask, *gorm.DB) error
}

type AddressWithAfterToORM

type AddressWithAfterToORM interface {
	AfterToORM(context.Context, *AddressORM) error
}

AddressAfterToORM called after default ToORM code

type AddressWithAfterToPB

type AddressWithAfterToPB interface {
	AfterToPB(context.Context, *Address) error
}

AddressAfterToPB called after default ToPB code

type AddressWithBeforePatchApplyFieldMask added in v0.12.0

type AddressWithBeforePatchApplyFieldMask interface {
	BeforePatchApplyFieldMask(context.Context, *Address, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type AddressWithBeforePatchRead added in v0.12.0

type AddressWithBeforePatchRead interface {
	BeforePatchRead(context.Context, *Address, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type AddressWithBeforePatchSave added in v0.9.1

type AddressWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *Address, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type AddressWithBeforeToORM

type AddressWithBeforeToORM interface {
	BeforeToORM(context.Context, *AddressORM) error
}

AddressBeforeToORM called before default ToORM code

type AddressWithBeforeToPB

type AddressWithBeforeToPB interface {
	BeforeToPB(context.Context, *Address) error
}

AddressBeforeToPB called before default ToPB code

type CreditCard

type CreditCard struct {
	Id        *resource.Identifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt *timestamp.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamp.Timestamp `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Number    string               `protobuf:"bytes,4,opt,name=number,proto3" json:"number,omitempty"`
	UserId    *resource.Identifier `protobuf:"bytes,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func DefaultApplyFieldMaskCreditCard added in v0.9.0

func DefaultApplyFieldMaskCreditCard(ctx context.Context, patchee *CreditCard, patcher *CreditCard, updateMask *field_mask.FieldMask, prefix string, db *gorm.DB) (*CreditCard, error)

DefaultApplyFieldMaskCreditCard patches an pbObject with patcher according to a field mask.

func DefaultCreateCreditCard

func DefaultCreateCreditCard(ctx context.Context, in *CreditCard, db *gorm.DB) (*CreditCard, error)

DefaultCreateCreditCard executes a basic gorm create call

func DefaultListCreditCard

func DefaultListCreditCard(ctx context.Context, db *gorm.DB) ([]*CreditCard, error)

DefaultListCreditCard executes a gorm list call

func DefaultPatchCreditCard added in v0.9.0

func DefaultPatchCreditCard(ctx context.Context, in *CreditCard, updateMask *field_mask.FieldMask, db *gorm.DB) (*CreditCard, error)

DefaultPatchCreditCard executes a basic gorm update call with patch behavior

func DefaultPatchSetCreditCard added in v1.0.0

func DefaultPatchSetCreditCard(ctx context.Context, objects []*CreditCard, updateMasks []*field_mask.FieldMask, db *gorm.DB) ([]*CreditCard, error)

DefaultPatchSetCreditCard executes a bulk gorm update call with patch behavior

func DefaultReadCreditCard

func DefaultReadCreditCard(ctx context.Context, in *CreditCard, db *gorm.DB) (*CreditCard, error)

DefaultReadCreditCard executes a basic gorm read call

func DefaultStrictUpdateCreditCard

func DefaultStrictUpdateCreditCard(ctx context.Context, in *CreditCard, db *gorm.DB) (*CreditCard, error)

DefaultStrictUpdateCreditCard clears / replaces / appends first level 1:many children and then executes a gorm update call

func (*CreditCard) Descriptor deprecated

func (*CreditCard) Descriptor() ([]byte, []int)

Deprecated: Use CreditCard.ProtoReflect.Descriptor instead.

func (*CreditCard) GetCreatedAt

func (x *CreditCard) GetCreatedAt() *timestamp.Timestamp

func (*CreditCard) GetId

func (x *CreditCard) GetId() *resource.Identifier

func (*CreditCard) GetNumber

func (x *CreditCard) GetNumber() string

func (*CreditCard) GetUpdatedAt

func (x *CreditCard) GetUpdatedAt() *timestamp.Timestamp

func (*CreditCard) GetUserId added in v0.6.0

func (x *CreditCard) GetUserId() *resource.Identifier

func (*CreditCard) ProtoMessage

func (*CreditCard) ProtoMessage()

func (*CreditCard) ProtoReflect added in v1.0.0

func (x *CreditCard) ProtoReflect() protoreflect.Message

func (*CreditCard) Reset

func (x *CreditCard) Reset()

func (*CreditCard) String

func (x *CreditCard) String() string

func (*CreditCard) ToORM

func (m *CreditCard) ToORM(ctx context.Context) (CreditCardORM, error)

ToORM runs the BeforeToORM hook if present, converts the fields of this object to ORM format, runs the AfterToORM hook, then returns the ORM object

type CreditCardORM

type CreditCardORM struct {
	AccountID string
	CreatedAt *time.Time
	Id        int64 `gorm:"type:integer;primary_key"`
	Number    string
	UpdatedAt *time.Time
	UserId    *string
}

func (CreditCardORM) TableName

func (CreditCardORM) TableName() string

TableName overrides the default tablename generated by GORM

func (*CreditCardORM) ToPB

func (m *CreditCardORM) ToPB(ctx context.Context) (CreditCard, error)

ToPB runs the BeforeToPB hook if present, converts the fields of this object to PB format, runs the AfterToPB hook, then returns the PB object

type CreditCardORMWithAfterCreate_ added in v1.0.0

type CreditCardORMWithAfterCreate_ interface {
	AfterCreate_(context.Context, *gorm.DB) error
}

type CreditCardORMWithAfterDeleteSet added in v0.15.0

type CreditCardORMWithAfterDeleteSet interface {
	AfterDeleteSet(context.Context, []*CreditCard, *gorm.DB) error
}

type CreditCardORMWithAfterDelete_ added in v1.0.0

type CreditCardORMWithAfterDelete_ interface {
	AfterDelete_(context.Context, *gorm.DB) error
}

type CreditCardORMWithAfterListFind added in v0.12.0

type CreditCardORMWithAfterListFind interface {
	AfterListFind(context.Context, *gorm.DB, *[]CreditCardORM) error
}

type CreditCardORMWithAfterReadFind added in v0.12.0

type CreditCardORMWithAfterReadFind interface {
	AfterReadFind(context.Context, *gorm.DB) error
}

type CreditCardORMWithAfterStrictUpdateSave added in v0.12.0

type CreditCardORMWithAfterStrictUpdateSave interface {
	AfterStrictUpdateSave(context.Context, *gorm.DB) error
}

type CreditCardORMWithBeforeCreate_ added in v1.0.0

type CreditCardORMWithBeforeCreate_ interface {
	BeforeCreate_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeDeleteSet added in v0.15.0

type CreditCardORMWithBeforeDeleteSet interface {
	BeforeDeleteSet(context.Context, []*CreditCard, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeDelete_ added in v1.0.0

type CreditCardORMWithBeforeDelete_ interface {
	BeforeDelete_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeListApplyQuery added in v0.12.0

type CreditCardORMWithBeforeListApplyQuery interface {
	BeforeListApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeListFind added in v0.12.0

type CreditCardORMWithBeforeListFind interface {
	BeforeListFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeReadApplyQuery added in v0.12.0

type CreditCardORMWithBeforeReadApplyQuery interface {
	BeforeReadApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeReadFind added in v0.12.0

type CreditCardORMWithBeforeReadFind interface {
	BeforeReadFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeStrictUpdateCleanup added in v0.12.0

type CreditCardORMWithBeforeStrictUpdateCleanup interface {
	BeforeStrictUpdateCleanup(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardORMWithBeforeStrictUpdateSave added in v0.12.0

type CreditCardORMWithBeforeStrictUpdateSave interface {
	BeforeStrictUpdateSave(context.Context, *gorm.DB) (*gorm.DB, error)
}

type CreditCardWithAfterPatchSave added in v0.12.0

type CreditCardWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *CreditCard, *field_mask.FieldMask, *gorm.DB) error
}

type CreditCardWithAfterToORM

type CreditCardWithAfterToORM interface {
	AfterToORM(context.Context, *CreditCardORM) error
}

CreditCardAfterToORM called after default ToORM code

type CreditCardWithAfterToPB

type CreditCardWithAfterToPB interface {
	AfterToPB(context.Context, *CreditCard) error
}

CreditCardAfterToPB called after default ToPB code

type CreditCardWithBeforePatchApplyFieldMask added in v0.12.0

type CreditCardWithBeforePatchApplyFieldMask interface {
	BeforePatchApplyFieldMask(context.Context, *CreditCard, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type CreditCardWithBeforePatchRead added in v0.12.0

type CreditCardWithBeforePatchRead interface {
	BeforePatchRead(context.Context, *CreditCard, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type CreditCardWithBeforePatchSave added in v0.9.1

type CreditCardWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *CreditCard, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type CreditCardWithBeforeToORM

type CreditCardWithBeforeToORM interface {
	BeforeToORM(context.Context, *CreditCardORM) error
}

CreditCardBeforeToORM called before default ToORM code

type CreditCardWithBeforeToPB

type CreditCardWithBeforeToPB interface {
	BeforeToPB(context.Context, *CreditCard) error
}

CreditCardBeforeToPB called before default ToPB code

type Email

type Email struct {
	Id              *resource.Identifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Email           string               `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	Subscribed      bool                 `protobuf:"varint,3,opt,name=subscribed,proto3" json:"subscribed,omitempty"`
	UserId          *resource.Identifier `protobuf:"bytes,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	ExternalNotNull *resource.Identifier `protobuf:"bytes,5,opt,name=external_not_null,json=externalNotNull,proto3" json:"external_not_null,omitempty"`
	// contains filtered or unexported fields
}

func DefaultApplyFieldMaskEmail added in v0.9.0

func DefaultApplyFieldMaskEmail(ctx context.Context, patchee *Email, patcher *Email, updateMask *field_mask.FieldMask, prefix string, db *gorm.DB) (*Email, error)

DefaultApplyFieldMaskEmail patches an pbObject with patcher according to a field mask.

func DefaultCreateEmail

func DefaultCreateEmail(ctx context.Context, in *Email, db *gorm.DB) (*Email, error)

DefaultCreateEmail executes a basic gorm create call

func DefaultListEmail

func DefaultListEmail(ctx context.Context, db *gorm.DB) ([]*Email, error)

DefaultListEmail executes a gorm list call

func DefaultPatchEmail added in v0.9.0

func DefaultPatchEmail(ctx context.Context, in *Email, updateMask *field_mask.FieldMask, db *gorm.DB) (*Email, error)

DefaultPatchEmail executes a basic gorm update call with patch behavior

func DefaultPatchSetEmail added in v1.0.0

func DefaultPatchSetEmail(ctx context.Context, objects []*Email, updateMasks []*field_mask.FieldMask, db *gorm.DB) ([]*Email, error)

DefaultPatchSetEmail executes a bulk gorm update call with patch behavior

func DefaultReadEmail

func DefaultReadEmail(ctx context.Context, in *Email, db *gorm.DB) (*Email, error)

DefaultReadEmail executes a basic gorm read call

func DefaultStrictUpdateEmail

func DefaultStrictUpdateEmail(ctx context.Context, in *Email, db *gorm.DB) (*Email, error)

DefaultStrictUpdateEmail clears / replaces / appends first level 1:many children and then executes a gorm update call

func (*Email) Descriptor deprecated

func (*Email) Descriptor() ([]byte, []int)

Deprecated: Use Email.ProtoReflect.Descriptor instead.

func (*Email) GetEmail

func (x *Email) GetEmail() string

func (*Email) GetExternalNotNull added in v0.7.0

func (x *Email) GetExternalNotNull() *resource.Identifier

func (*Email) GetId

func (x *Email) GetId() *resource.Identifier

func (*Email) GetSubscribed

func (x *Email) GetSubscribed() bool

func (*Email) GetUserId added in v0.6.0

func (x *Email) GetUserId() *resource.Identifier

func (*Email) ProtoMessage

func (*Email) ProtoMessage()

func (*Email) ProtoReflect added in v1.0.0

func (x *Email) ProtoReflect() protoreflect.Message

func (*Email) Reset

func (x *Email) Reset()

func (*Email) String

func (x *Email) String() string

func (*Email) ToORM

func (m *Email) ToORM(ctx context.Context) (EmailORM, error)

ToORM runs the BeforeToORM hook if present, converts the fields of this object to ORM format, runs the AfterToORM hook, then returns the ORM object

type EmailORM

type EmailORM struct {
	AccountID       string
	Email           string
	ExternalNotNull string `gorm:"type:uuid;not null"`
	Id              string `gorm:"type:uuid;primary_key"`
	Subscribed      bool
	UserId          *string
}

func (EmailORM) TableName

func (EmailORM) TableName() string

TableName overrides the default tablename generated by GORM

func (*EmailORM) ToPB

func (m *EmailORM) ToPB(ctx context.Context) (Email, error)

ToPB runs the BeforeToPB hook if present, converts the fields of this object to PB format, runs the AfterToPB hook, then returns the PB object

type EmailORMWithAfterCreate_ added in v1.0.0

type EmailORMWithAfterCreate_ interface {
	AfterCreate_(context.Context, *gorm.DB) error
}

type EmailORMWithAfterDeleteSet added in v0.15.0

type EmailORMWithAfterDeleteSet interface {
	AfterDeleteSet(context.Context, []*Email, *gorm.DB) error
}

type EmailORMWithAfterDelete_ added in v1.0.0

type EmailORMWithAfterDelete_ interface {
	AfterDelete_(context.Context, *gorm.DB) error
}

type EmailORMWithAfterListFind added in v0.12.0

type EmailORMWithAfterListFind interface {
	AfterListFind(context.Context, *gorm.DB, *[]EmailORM) error
}

type EmailORMWithAfterReadFind added in v0.12.0

type EmailORMWithAfterReadFind interface {
	AfterReadFind(context.Context, *gorm.DB) error
}

type EmailORMWithAfterStrictUpdateSave added in v0.12.0

type EmailORMWithAfterStrictUpdateSave interface {
	AfterStrictUpdateSave(context.Context, *gorm.DB) error
}

type EmailORMWithBeforeCreate_ added in v1.0.0

type EmailORMWithBeforeCreate_ interface {
	BeforeCreate_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeDeleteSet added in v0.15.0

type EmailORMWithBeforeDeleteSet interface {
	BeforeDeleteSet(context.Context, []*Email, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeDelete_ added in v1.0.0

type EmailORMWithBeforeDelete_ interface {
	BeforeDelete_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeListApplyQuery added in v0.12.0

type EmailORMWithBeforeListApplyQuery interface {
	BeforeListApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeListFind added in v0.12.0

type EmailORMWithBeforeListFind interface {
	BeforeListFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeReadApplyQuery added in v0.12.0

type EmailORMWithBeforeReadApplyQuery interface {
	BeforeReadApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeReadFind added in v0.12.0

type EmailORMWithBeforeReadFind interface {
	BeforeReadFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeStrictUpdateCleanup added in v0.12.0

type EmailORMWithBeforeStrictUpdateCleanup interface {
	BeforeStrictUpdateCleanup(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailORMWithBeforeStrictUpdateSave added in v0.12.0

type EmailORMWithBeforeStrictUpdateSave interface {
	BeforeStrictUpdateSave(context.Context, *gorm.DB) (*gorm.DB, error)
}

type EmailWithAfterPatchSave added in v0.12.0

type EmailWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *Email, *field_mask.FieldMask, *gorm.DB) error
}

type EmailWithAfterToORM

type EmailWithAfterToORM interface {
	AfterToORM(context.Context, *EmailORM) error
}

EmailAfterToORM called after default ToORM code

type EmailWithAfterToPB

type EmailWithAfterToPB interface {
	AfterToPB(context.Context, *Email) error
}

EmailAfterToPB called after default ToPB code

type EmailWithBeforePatchApplyFieldMask added in v0.12.0

type EmailWithBeforePatchApplyFieldMask interface {
	BeforePatchApplyFieldMask(context.Context, *Email, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type EmailWithBeforePatchRead added in v0.12.0

type EmailWithBeforePatchRead interface {
	BeforePatchRead(context.Context, *Email, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type EmailWithBeforePatchSave added in v0.9.1

type EmailWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *Email, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type EmailWithBeforeToORM

type EmailWithBeforeToORM interface {
	BeforeToORM(context.Context, *EmailORM) error
}

EmailBeforeToORM called before default ToORM code

type EmailWithBeforeToPB

type EmailWithBeforeToPB interface {
	BeforeToPB(context.Context, *Email) error
}

EmailBeforeToPB called before default ToPB code

type Language

type Language struct {
	Id          *resource.Identifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string               `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Code        string               `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"`
	ExternalInt *resource.Identifier `protobuf:"bytes,4,opt,name=external_int,json=externalInt,proto3" json:"external_int,omitempty"`
	// contains filtered or unexported fields
}

func DefaultApplyFieldMaskLanguage added in v0.9.0

func DefaultApplyFieldMaskLanguage(ctx context.Context, patchee *Language, patcher *Language, updateMask *field_mask.FieldMask, prefix string, db *gorm.DB) (*Language, error)

DefaultApplyFieldMaskLanguage patches an pbObject with patcher according to a field mask.

func DefaultCreateLanguage

func DefaultCreateLanguage(ctx context.Context, in *Language, db *gorm.DB) (*Language, error)

DefaultCreateLanguage executes a basic gorm create call

func DefaultListLanguage

func DefaultListLanguage(ctx context.Context, db *gorm.DB) ([]*Language, error)

DefaultListLanguage executes a gorm list call

func DefaultPatchLanguage added in v0.9.0

func DefaultPatchLanguage(ctx context.Context, in *Language, updateMask *field_mask.FieldMask, db *gorm.DB) (*Language, error)

DefaultPatchLanguage executes a basic gorm update call with patch behavior

func DefaultPatchSetLanguage added in v1.0.0

func DefaultPatchSetLanguage(ctx context.Context, objects []*Language, updateMasks []*field_mask.FieldMask, db *gorm.DB) ([]*Language, error)

DefaultPatchSetLanguage executes a bulk gorm update call with patch behavior

func DefaultReadLanguage

func DefaultReadLanguage(ctx context.Context, in *Language, db *gorm.DB) (*Language, error)

DefaultReadLanguage executes a basic gorm read call

func DefaultStrictUpdateLanguage

func DefaultStrictUpdateLanguage(ctx context.Context, in *Language, db *gorm.DB) (*Language, error)

DefaultStrictUpdateLanguage clears / replaces / appends first level 1:many children and then executes a gorm update call

func (*Language) Descriptor deprecated

func (*Language) Descriptor() ([]byte, []int)

Deprecated: Use Language.ProtoReflect.Descriptor instead.

func (*Language) GetCode

func (x *Language) GetCode() string

func (*Language) GetExternalInt added in v0.7.0

func (x *Language) GetExternalInt() *resource.Identifier

func (*Language) GetId

func (x *Language) GetId() *resource.Identifier

func (*Language) GetName

func (x *Language) GetName() string

func (*Language) ProtoMessage

func (*Language) ProtoMessage()

func (*Language) ProtoReflect added in v1.0.0

func (x *Language) ProtoReflect() protoreflect.Message

func (*Language) Reset

func (x *Language) Reset()

func (*Language) String

func (x *Language) String() string

func (*Language) ToORM

func (m *Language) ToORM(ctx context.Context) (LanguageORM, error)

ToORM runs the BeforeToORM hook if present, converts the fields of this object to ORM format, runs the AfterToORM hook, then returns the ORM object

type LanguageORM

type LanguageORM struct {
	AccountID   string
	Code        string
	ExternalInt *int64 `gorm:"type:integer"`
	Id          int64  `gorm:"type:integer;primary_key"`
	Name        string
}

func (LanguageORM) TableName

func (LanguageORM) TableName() string

TableName overrides the default tablename generated by GORM

func (*LanguageORM) ToPB

func (m *LanguageORM) ToPB(ctx context.Context) (Language, error)

ToPB runs the BeforeToPB hook if present, converts the fields of this object to PB format, runs the AfterToPB hook, then returns the PB object

type LanguageORMWithAfterCreate_ added in v1.0.0

type LanguageORMWithAfterCreate_ interface {
	AfterCreate_(context.Context, *gorm.DB) error
}

type LanguageORMWithAfterDeleteSet added in v0.15.0

type LanguageORMWithAfterDeleteSet interface {
	AfterDeleteSet(context.Context, []*Language, *gorm.DB) error
}

type LanguageORMWithAfterDelete_ added in v1.0.0

type LanguageORMWithAfterDelete_ interface {
	AfterDelete_(context.Context, *gorm.DB) error
}

type LanguageORMWithAfterListFind added in v0.12.0

type LanguageORMWithAfterListFind interface {
	AfterListFind(context.Context, *gorm.DB, *[]LanguageORM) error
}

type LanguageORMWithAfterReadFind added in v0.12.0

type LanguageORMWithAfterReadFind interface {
	AfterReadFind(context.Context, *gorm.DB) error
}

type LanguageORMWithAfterStrictUpdateSave added in v0.12.0

type LanguageORMWithAfterStrictUpdateSave interface {
	AfterStrictUpdateSave(context.Context, *gorm.DB) error
}

type LanguageORMWithBeforeCreate_ added in v1.0.0

type LanguageORMWithBeforeCreate_ interface {
	BeforeCreate_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeDeleteSet added in v0.15.0

type LanguageORMWithBeforeDeleteSet interface {
	BeforeDeleteSet(context.Context, []*Language, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeDelete_ added in v1.0.0

type LanguageORMWithBeforeDelete_ interface {
	BeforeDelete_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeListApplyQuery added in v0.12.0

type LanguageORMWithBeforeListApplyQuery interface {
	BeforeListApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeListFind added in v0.12.0

type LanguageORMWithBeforeListFind interface {
	BeforeListFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeReadApplyQuery added in v0.12.0

type LanguageORMWithBeforeReadApplyQuery interface {
	BeforeReadApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeReadFind added in v0.12.0

type LanguageORMWithBeforeReadFind interface {
	BeforeReadFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeStrictUpdateCleanup added in v0.12.0

type LanguageORMWithBeforeStrictUpdateCleanup interface {
	BeforeStrictUpdateCleanup(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageORMWithBeforeStrictUpdateSave added in v0.12.0

type LanguageORMWithBeforeStrictUpdateSave interface {
	BeforeStrictUpdateSave(context.Context, *gorm.DB) (*gorm.DB, error)
}

type LanguageWithAfterPatchSave added in v0.12.0

type LanguageWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *Language, *field_mask.FieldMask, *gorm.DB) error
}

type LanguageWithAfterToORM

type LanguageWithAfterToORM interface {
	AfterToORM(context.Context, *LanguageORM) error
}

LanguageAfterToORM called after default ToORM code

type LanguageWithAfterToPB

type LanguageWithAfterToPB interface {
	AfterToPB(context.Context, *Language) error
}

LanguageAfterToPB called after default ToPB code

type LanguageWithBeforePatchApplyFieldMask added in v0.12.0

type LanguageWithBeforePatchApplyFieldMask interface {
	BeforePatchApplyFieldMask(context.Context, *Language, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type LanguageWithBeforePatchRead added in v0.12.0

type LanguageWithBeforePatchRead interface {
	BeforePatchRead(context.Context, *Language, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type LanguageWithBeforePatchSave added in v0.9.1

type LanguageWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *Language, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type LanguageWithBeforeToORM

type LanguageWithBeforeToORM interface {
	BeforeToORM(context.Context, *LanguageORM) error
}

LanguageBeforeToORM called before default ToORM code

type LanguageWithBeforeToPB

type LanguageWithBeforeToPB interface {
	BeforeToPB(context.Context, *Language) error
}

LanguageBeforeToPB called before default ToPB code

type Task

type Task struct {
	Name        string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Priority    int64  `protobuf:"varint,3,opt,name=priority,proto3" json:"priority,omitempty"`
	// contains filtered or unexported fields
}

func DefaultApplyFieldMaskTask added in v0.10.0

func DefaultApplyFieldMaskTask(ctx context.Context, patchee *Task, patcher *Task, updateMask *field_mask.FieldMask, prefix string, db *gorm.DB) (*Task, error)

DefaultApplyFieldMaskTask patches an pbObject with patcher according to a field mask.

func DefaultCreateTask

func DefaultCreateTask(ctx context.Context, in *Task, db *gorm.DB) (*Task, error)

DefaultCreateTask executes a basic gorm create call

func DefaultListTask

func DefaultListTask(ctx context.Context, db *gorm.DB) ([]*Task, error)

DefaultListTask executes a gorm list call

func (*Task) Descriptor deprecated

func (*Task) Descriptor() ([]byte, []int)

Deprecated: Use Task.ProtoReflect.Descriptor instead.

func (*Task) GetDescription

func (x *Task) GetDescription() string

func (*Task) GetName

func (x *Task) GetName() string

func (*Task) GetPriority added in v0.6.0

func (x *Task) GetPriority() int64

func (*Task) ProtoMessage

func (*Task) ProtoMessage()

func (*Task) ProtoReflect added in v1.0.0

func (x *Task) ProtoReflect() protoreflect.Message

func (*Task) Reset

func (x *Task) Reset()

func (*Task) String

func (x *Task) String() string

func (*Task) ToORM

func (m *Task) ToORM(ctx context.Context) (TaskORM, error)

ToORM runs the BeforeToORM hook if present, converts the fields of this object to ORM format, runs the AfterToORM hook, then returns the ORM object

type TaskORM

type TaskORM struct {
	AccountID   string
	Description string
	Name        string
	Priority    int64
	UserId      string `gorm:"not null"`
}

func (TaskORM) TableName

func (TaskORM) TableName() string

TableName overrides the default tablename generated by GORM

func (*TaskORM) ToPB

func (m *TaskORM) ToPB(ctx context.Context) (Task, error)

ToPB runs the BeforeToPB hook if present, converts the fields of this object to PB format, runs the AfterToPB hook, then returns the PB object

type TaskORMWithAfterCreate_ added in v1.0.0

type TaskORMWithAfterCreate_ interface {
	AfterCreate_(context.Context, *gorm.DB) error
}

type TaskORMWithAfterListFind added in v0.12.0

type TaskORMWithAfterListFind interface {
	AfterListFind(context.Context, *gorm.DB, *[]TaskORM) error
}

type TaskORMWithBeforeCreate_ added in v1.0.0

type TaskORMWithBeforeCreate_ interface {
	BeforeCreate_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type TaskORMWithBeforeListApplyQuery added in v0.12.0

type TaskORMWithBeforeListApplyQuery interface {
	BeforeListApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type TaskORMWithBeforeListFind added in v0.12.0

type TaskORMWithBeforeListFind interface {
	BeforeListFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type TaskWithAfterToORM

type TaskWithAfterToORM interface {
	AfterToORM(context.Context, *TaskORM) error
}

TaskAfterToORM called after default ToORM code

type TaskWithAfterToPB

type TaskWithAfterToPB interface {
	AfterToPB(context.Context, *Task) error
}

TaskAfterToPB called after default ToPB code

type TaskWithBeforeToORM

type TaskWithBeforeToORM interface {
	BeforeToORM(context.Context, *TaskORM) error
}

TaskBeforeToORM called before default ToORM code

type TaskWithBeforeToPB

type TaskWithBeforeToPB interface {
	BeforeToPB(context.Context, *Task) error
}

TaskBeforeToPB called before default ToPB code

type User

type User struct {
	Id                *resource.Identifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt         *timestamp.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt         *timestamp.Timestamp `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Birthday          *timestamp.Timestamp `protobuf:"bytes,4,opt,name=birthday,proto3" json:"birthday,omitempty"`
	Age               uint32               `protobuf:"varint,5,opt,name=age,proto3" json:"age,omitempty"` // synthetic field
	Num               uint32               `protobuf:"varint,6,opt,name=num,proto3" json:"num,omitempty"`
	CreditCard        *CreditCard          `protobuf:"bytes,7,opt,name=credit_card,json=creditCard,proto3" json:"credit_card,omitempty"` // has one
	Emails            []*Email             `protobuf:"bytes,8,rep,name=emails,proto3" json:"emails,omitempty"`                           // has many
	Tasks             []*Task              `protobuf:"bytes,9,rep,name=tasks,proto3" json:"tasks,omitempty"`
	BillingAddress    *Address             `protobuf:"bytes,10,opt,name=billing_address,json=billingAddress,proto3" json:"billing_address,omitempty"`
	ShippingAddress   *Address             `protobuf:"bytes,11,opt,name=shipping_address,json=shippingAddress,proto3" json:"shipping_address,omitempty"`
	Languages         []*Language          `protobuf:"bytes,12,rep,name=languages,proto3" json:"languages,omitempty"`
	Friends           []*User              `protobuf:"bytes,13,rep,name=friends,proto3" json:"friends,omitempty"`
	ShippingAddressId *resource.Identifier `protobuf:"bytes,14,opt,name=shipping_address_id,json=shippingAddressId,proto3" json:"shipping_address_id,omitempty"`
	ExternalUuid      *resource.Identifier `protobuf:"bytes,15,opt,name=external_uuid,json=externalUuid,proto3" json:"external_uuid,omitempty"`
	// contains filtered or unexported fields
}

func DefaultApplyFieldMaskUser added in v0.9.0

func DefaultApplyFieldMaskUser(ctx context.Context, patchee *User, patcher *User, updateMask *field_mask.FieldMask, prefix string, db *gorm.DB) (*User, error)

DefaultApplyFieldMaskUser patches an pbObject with patcher according to a field mask.

func DefaultCreateUser

func DefaultCreateUser(ctx context.Context, in *User, db *gorm.DB) (*User, error)

DefaultCreateUser executes a basic gorm create call

func DefaultListUser

func DefaultListUser(ctx context.Context, db *gorm.DB) ([]*User, error)

DefaultListUser executes a gorm list call

func DefaultPatchSetUser added in v1.0.0

func DefaultPatchSetUser(ctx context.Context, objects []*User, updateMasks []*field_mask.FieldMask, db *gorm.DB) ([]*User, error)

DefaultPatchSetUser executes a bulk gorm update call with patch behavior

func DefaultPatchUser added in v0.9.0

func DefaultPatchUser(ctx context.Context, in *User, updateMask *field_mask.FieldMask, db *gorm.DB) (*User, error)

DefaultPatchUser executes a basic gorm update call with patch behavior

func DefaultReadUser

func DefaultReadUser(ctx context.Context, in *User, db *gorm.DB) (*User, error)

DefaultReadUser executes a basic gorm read call

func DefaultStrictUpdateUser

func DefaultStrictUpdateUser(ctx context.Context, in *User, db *gorm.DB) (*User, error)

DefaultStrictUpdateUser clears / replaces / appends first level 1:many children and then executes a gorm update call

func (*User) Descriptor deprecated

func (*User) Descriptor() ([]byte, []int)

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetAge

func (x *User) GetAge() uint32

func (*User) GetBillingAddress

func (x *User) GetBillingAddress() *Address

func (*User) GetBirthday

func (x *User) GetBirthday() *timestamp.Timestamp

func (*User) GetCreatedAt

func (x *User) GetCreatedAt() *timestamp.Timestamp

func (*User) GetCreditCard

func (x *User) GetCreditCard() *CreditCard

func (*User) GetEmails

func (x *User) GetEmails() []*Email

func (*User) GetExternalUuid added in v0.7.0

func (x *User) GetExternalUuid() *resource.Identifier

func (*User) GetFriends

func (x *User) GetFriends() []*User

func (*User) GetId

func (x *User) GetId() *resource.Identifier

func (*User) GetLanguages

func (x *User) GetLanguages() []*Language

func (*User) GetNum

func (x *User) GetNum() uint32

func (*User) GetShippingAddress

func (x *User) GetShippingAddress() *Address

func (*User) GetShippingAddressId added in v0.6.0

func (x *User) GetShippingAddressId() *resource.Identifier

func (*User) GetTasks

func (x *User) GetTasks() []*Task

func (*User) GetUpdatedAt

func (x *User) GetUpdatedAt() *timestamp.Timestamp

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect added in v1.0.0

func (x *User) ProtoReflect() protoreflect.Message

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

func (*User) ToORM

func (m *User) ToORM(ctx context.Context) (UserORM, error)

ToORM runs the BeforeToORM hook if present, converts the fields of this object to ORM format, runs the AfterToORM hook, then returns the ORM object

type UserORM

type UserORM struct {
	AccountID         string
	BillingAddress    *AddressORM `gorm:"foreignkey:BillingAddressId;association_foreignkey:Id"`
	BillingAddressId  *int64
	Birthday          *time.Time
	CreatedAt         *time.Time
	CreditCard        *CreditCardORM `gorm:"foreignkey:UserId;association_foreignkey:Id"`
	Emails            []*EmailORM    `gorm:"foreignkey:UserId;association_foreignkey:Id"`
	ExternalUuid      *string        `gorm:"type:uuid"`
	Friends           []*UserORM     `` /* 141-byte string literal not displayed */
	Id                string         `gorm:"type:uuid;primary_key"`
	Languages         []*LanguageORM `` /* 145-byte string literal not displayed */
	Num               uint32
	ShippingAddress   *AddressORM `gorm:"foreignkey:ShippingAddressId;association_foreignkey:Id"`
	ShippingAddressId *int64
	Tasks             []*TaskORM `gorm:"foreignkey:UserId;association_foreignkey:Id" atlas:"position:Priority"`
	UpdatedAt         *time.Time
}

func (*UserORM) AfterToPB

func (m *UserORM) AfterToPB(ctx context.Context, user *User) error

AfterToPB implements the posthook interface for the User type. This allows us to customize conversion behavior. In this example, we set the User's Age based on the Birthday, instead of storing it separately in the DB

func (UserORM) TableName

func (UserORM) TableName() string

TableName overrides the default tablename generated by GORM

func (*UserORM) ToPB

func (m *UserORM) ToPB(ctx context.Context) (User, error)

ToPB runs the BeforeToPB hook if present, converts the fields of this object to PB format, runs the AfterToPB hook, then returns the PB object

type UserORMWithAfterCreate_ added in v1.0.0

type UserORMWithAfterCreate_ interface {
	AfterCreate_(context.Context, *gorm.DB) error
}

type UserORMWithAfterDeleteSet added in v0.15.0

type UserORMWithAfterDeleteSet interface {
	AfterDeleteSet(context.Context, []*User, *gorm.DB) error
}

type UserORMWithAfterDelete_ added in v1.0.0

type UserORMWithAfterDelete_ interface {
	AfterDelete_(context.Context, *gorm.DB) error
}

type UserORMWithAfterListFind added in v0.12.0

type UserORMWithAfterListFind interface {
	AfterListFind(context.Context, *gorm.DB, *[]UserORM) error
}

type UserORMWithAfterReadFind added in v0.12.0

type UserORMWithAfterReadFind interface {
	AfterReadFind(context.Context, *gorm.DB) error
}

type UserORMWithAfterStrictUpdateSave added in v0.12.0

type UserORMWithAfterStrictUpdateSave interface {
	AfterStrictUpdateSave(context.Context, *gorm.DB) error
}

type UserORMWithBeforeCreate_ added in v1.0.0

type UserORMWithBeforeCreate_ interface {
	BeforeCreate_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeDeleteSet added in v0.15.0

type UserORMWithBeforeDeleteSet interface {
	BeforeDeleteSet(context.Context, []*User, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeDelete_ added in v1.0.0

type UserORMWithBeforeDelete_ interface {
	BeforeDelete_(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeListApplyQuery added in v0.12.0

type UserORMWithBeforeListApplyQuery interface {
	BeforeListApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeListFind added in v0.12.0

type UserORMWithBeforeListFind interface {
	BeforeListFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeReadApplyQuery added in v0.12.0

type UserORMWithBeforeReadApplyQuery interface {
	BeforeReadApplyQuery(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeReadFind added in v0.12.0

type UserORMWithBeforeReadFind interface {
	BeforeReadFind(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeStrictUpdateCleanup added in v0.12.0

type UserORMWithBeforeStrictUpdateCleanup interface {
	BeforeStrictUpdateCleanup(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserORMWithBeforeStrictUpdateSave added in v0.12.0

type UserORMWithBeforeStrictUpdateSave interface {
	BeforeStrictUpdateSave(context.Context, *gorm.DB) (*gorm.DB, error)
}

type UserWithAfterPatchSave added in v0.12.0

type UserWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *User, *field_mask.FieldMask, *gorm.DB) error
}

type UserWithAfterToORM

type UserWithAfterToORM interface {
	AfterToORM(context.Context, *UserORM) error
}

UserAfterToORM called after default ToORM code

type UserWithAfterToPB

type UserWithAfterToPB interface {
	AfterToPB(context.Context, *User) error
}

UserAfterToPB called after default ToPB code

type UserWithBeforePatchApplyFieldMask added in v0.12.0

type UserWithBeforePatchApplyFieldMask interface {
	BeforePatchApplyFieldMask(context.Context, *User, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type UserWithBeforePatchRead added in v0.12.0

type UserWithBeforePatchRead interface {
	BeforePatchRead(context.Context, *User, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type UserWithBeforePatchSave added in v0.9.1

type UserWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *User, *field_mask.FieldMask, *gorm.DB) (*gorm.DB, error)
}

type UserWithBeforeToORM

type UserWithBeforeToORM interface {
	BeforeToORM(context.Context, *UserORM) error
}

UserBeforeToORM called before default ToORM code

type UserWithBeforeToPB

type UserWithBeforeToPB interface {
	BeforeToPB(context.Context, *User) error
}

UserBeforeToPB called before default ToPB code

Jump to

Keyboard shortcuts

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