user

package
v0.20.2 Latest Latest
Warning

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

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

Documentation

Overview

Package user is a generated protocol buffer package.

It is generated from these files:

example/user/user.proto

It has these top-level messages:

User
Email
Address
Language
CreditCard
Task

Package user is a generated protocol buffer package.

It is generated from these files:

example/user/user.proto

It has these top-level messages:

User
Email
Address
Language
CreditCard
Task

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DefaultDeleteAddress

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

func DefaultDeleteAddressSet

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

func DefaultDeleteCreditCard

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

func DefaultDeleteCreditCardSet

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

func DefaultDeleteEmail

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

func DefaultDeleteEmailSet

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

func DefaultDeleteLanguage

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

func DefaultDeleteLanguageSet

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

func DefaultDeleteUser

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

func DefaultDeleteUserSet

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

Types

type Address

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

func DefaultApplyFieldMaskAddress

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

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

func DefaultCreateAddress

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

DefaultCreateAddress executes a basic gorm create call

func DefaultListAddress

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

DefaultListAddress executes a gorm list call

func DefaultPatchAddress

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

DefaultPatchAddress executes a basic gorm update call with patch behavior

func DefaultPatchSetAddress

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

DefaultPatchSetAddress executes a bulk gorm update call with patch behavior

func DefaultReadAddress

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

DefaultReadAddress executes a basic gorm read call

func DefaultStrictUpdateAddress

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

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

func (*Address) Descriptor

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

func (*Address) GetAddress_1

func (m *Address) GetAddress_1() string

func (*Address) GetAddress_2

func (m *Address) GetAddress_2() string

func (*Address) GetExternal

func (m *Address) GetExternal() *atlas_rpc.Identifier

func (*Address) GetId

func (m *Address) GetId() *atlas_rpc.Identifier

func (*Address) GetImplicitFk

func (m *Address) GetImplicitFk() *atlas_rpc.Identifier

func (*Address) GetPost

func (m *Address) GetPost() string

func (*Address) ProtoMessage

func (*Address) ProtoMessage()

func (*Address) Reset

func (m *Address) Reset()

func (*Address) String

func (m *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_

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

type AddressORMWithAfterDeleteSet

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

type AddressORMWithAfterDelete_

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

type AddressORMWithAfterListFind

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

type AddressORMWithAfterReadFind

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

type AddressORMWithAfterStrictUpdateSave

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

type AddressORMWithBeforeCreate_

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

type AddressORMWithBeforeDeleteSet

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

type AddressORMWithBeforeDelete_

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

type AddressORMWithBeforeListApplyQuery

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

type AddressORMWithBeforeListFind

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

type AddressORMWithBeforeReadApplyQuery

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

type AddressORMWithBeforeReadFind

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

type AddressORMWithBeforeStrictUpdateCleanup

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

type AddressORMWithBeforeStrictUpdateSave

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

type AddressWithAfterPatchSave

type AddressWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *Address, *field_mask1.FieldMask, *gorm1.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

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

type AddressWithBeforePatchRead

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

type AddressWithBeforePatchSave

type AddressWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *Address, *field_mask1.FieldMask, *gorm1.DB) (*gorm1.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        *atlas_rpc.Identifier       `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
	CreatedAt *google_protobuf1.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt" json:"created_at,omitempty"`
	UpdatedAt *google_protobuf1.Timestamp `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt" json:"updated_at,omitempty"`
	Number    string                      `protobuf:"bytes,4,opt,name=number" json:"number,omitempty"`
	UserId    *atlas_rpc.Identifier       `protobuf:"bytes,5,opt,name=user_id,json=userId" json:"user_id,omitempty"`
}

func DefaultApplyFieldMaskCreditCard

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

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

func DefaultCreateCreditCard

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

DefaultCreateCreditCard executes a basic gorm create call

func DefaultListCreditCard

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

DefaultListCreditCard executes a gorm list call

func DefaultPatchCreditCard

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

DefaultPatchCreditCard executes a basic gorm update call with patch behavior

func DefaultPatchSetCreditCard

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

DefaultPatchSetCreditCard executes a bulk gorm update call with patch behavior

func DefaultReadCreditCard

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

DefaultReadCreditCard executes a basic gorm read call

func DefaultStrictUpdateCreditCard

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

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

func (*CreditCard) Descriptor

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

func (*CreditCard) GetCreatedAt

func (m *CreditCard) GetCreatedAt() *google_protobuf1.Timestamp

func (*CreditCard) GetId

func (m *CreditCard) GetId() *atlas_rpc.Identifier

func (*CreditCard) GetNumber

func (m *CreditCard) GetNumber() string

func (*CreditCard) GetUpdatedAt

func (m *CreditCard) GetUpdatedAt() *google_protobuf1.Timestamp

func (*CreditCard) GetUserId

func (m *CreditCard) GetUserId() *atlas_rpc.Identifier

func (*CreditCard) ProtoMessage

func (*CreditCard) ProtoMessage()

func (*CreditCard) Reset

func (m *CreditCard) Reset()

func (*CreditCard) String

func (m *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_

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

type CreditCardORMWithAfterDeleteSet

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

type CreditCardORMWithAfterDelete_

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

type CreditCardORMWithAfterListFind

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

type CreditCardORMWithAfterReadFind

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

type CreditCardORMWithAfterStrictUpdateSave

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

type CreditCardORMWithBeforeCreate_

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

type CreditCardORMWithBeforeDeleteSet

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

type CreditCardORMWithBeforeDelete_

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

type CreditCardORMWithBeforeListApplyQuery

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

type CreditCardORMWithBeforeListFind

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

type CreditCardORMWithBeforeReadApplyQuery

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

type CreditCardORMWithBeforeReadFind

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

type CreditCardORMWithBeforeStrictUpdateCleanup

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

type CreditCardORMWithBeforeStrictUpdateSave

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

type CreditCardWithAfterPatchSave

type CreditCardWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *CreditCard, *field_mask1.FieldMask, *gorm1.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

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

type CreditCardWithBeforePatchRead

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

type CreditCardWithBeforePatchSave

type CreditCardWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *CreditCard, *field_mask1.FieldMask, *gorm1.DB) (*gorm1.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              *atlas_rpc.Identifier `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
	Email           string                `protobuf:"bytes,2,opt,name=email" json:"email,omitempty"`
	Subscribed      bool                  `protobuf:"varint,3,opt,name=subscribed" json:"subscribed,omitempty"`
	UserId          *atlas_rpc.Identifier `protobuf:"bytes,4,opt,name=user_id,json=userId" json:"user_id,omitempty"`
	ExternalNotNull *atlas_rpc.Identifier `protobuf:"bytes,5,opt,name=external_not_null,json=externalNotNull" json:"external_not_null,omitempty"`
}

func DefaultApplyFieldMaskEmail

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

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

func DefaultCreateEmail

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

DefaultCreateEmail executes a basic gorm create call

func DefaultListEmail

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

DefaultListEmail executes a gorm list call

func DefaultPatchEmail

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

DefaultPatchEmail executes a basic gorm update call with patch behavior

func DefaultPatchSetEmail

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

DefaultPatchSetEmail executes a bulk gorm update call with patch behavior

func DefaultReadEmail

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

DefaultReadEmail executes a basic gorm read call

func DefaultStrictUpdateEmail

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

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

func (*Email) Descriptor

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

func (*Email) GetEmail

func (m *Email) GetEmail() string

func (*Email) GetExternalNotNull

func (m *Email) GetExternalNotNull() *atlas_rpc.Identifier

func (*Email) GetId

func (m *Email) GetId() *atlas_rpc.Identifier

func (*Email) GetSubscribed

func (m *Email) GetSubscribed() bool

func (*Email) GetUserId

func (m *Email) GetUserId() *atlas_rpc.Identifier

func (*Email) ProtoMessage

func (*Email) ProtoMessage()

func (*Email) Reset

func (m *Email) Reset()

func (*Email) String

func (m *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_

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

type EmailORMWithAfterDeleteSet

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

type EmailORMWithAfterDelete_

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

type EmailORMWithAfterListFind

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

type EmailORMWithAfterReadFind

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

type EmailORMWithAfterStrictUpdateSave

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

type EmailORMWithBeforeCreate_

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

type EmailORMWithBeforeDeleteSet

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

type EmailORMWithBeforeDelete_

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

type EmailORMWithBeforeListApplyQuery

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

type EmailORMWithBeforeListFind

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

type EmailORMWithBeforeReadApplyQuery

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

type EmailORMWithBeforeReadFind

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

type EmailORMWithBeforeStrictUpdateCleanup

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

type EmailORMWithBeforeStrictUpdateSave

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

type EmailWithAfterPatchSave

type EmailWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *Email, *field_mask1.FieldMask, *gorm1.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

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

type EmailWithBeforePatchRead

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

type EmailWithBeforePatchSave

type EmailWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *Email, *field_mask1.FieldMask, *gorm1.DB) (*gorm1.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          *atlas_rpc.Identifier `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
	Name        string                `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
	Code        string                `protobuf:"bytes,3,opt,name=code" json:"code,omitempty"`
	ExternalInt *atlas_rpc.Identifier `protobuf:"bytes,4,opt,name=external_int,json=externalInt" json:"external_int,omitempty"`
}

func DefaultApplyFieldMaskLanguage

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

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

func DefaultCreateLanguage

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

DefaultCreateLanguage executes a basic gorm create call

func DefaultListLanguage

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

DefaultListLanguage executes a gorm list call

func DefaultPatchLanguage

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

DefaultPatchLanguage executes a basic gorm update call with patch behavior

func DefaultPatchSetLanguage

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

DefaultPatchSetLanguage executes a bulk gorm update call with patch behavior

func DefaultReadLanguage

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

DefaultReadLanguage executes a basic gorm read call

func DefaultStrictUpdateLanguage

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

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

func (*Language) Descriptor

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

func (*Language) GetCode

func (m *Language) GetCode() string

func (*Language) GetExternalInt

func (m *Language) GetExternalInt() *atlas_rpc.Identifier

func (*Language) GetId

func (m *Language) GetId() *atlas_rpc.Identifier

func (*Language) GetName

func (m *Language) GetName() string

func (*Language) ProtoMessage

func (*Language) ProtoMessage()

func (*Language) Reset

func (m *Language) Reset()

func (*Language) String

func (m *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_

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

type LanguageORMWithAfterDeleteSet

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

type LanguageORMWithAfterDelete_

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

type LanguageORMWithAfterListFind

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

type LanguageORMWithAfterReadFind

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

type LanguageORMWithAfterStrictUpdateSave

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

type LanguageORMWithBeforeCreate_

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

type LanguageORMWithBeforeDeleteSet

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

type LanguageORMWithBeforeDelete_

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

type LanguageORMWithBeforeListApplyQuery

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

type LanguageORMWithBeforeListFind

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

type LanguageORMWithBeforeReadApplyQuery

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

type LanguageORMWithBeforeReadFind

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

type LanguageORMWithBeforeStrictUpdateCleanup

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

type LanguageORMWithBeforeStrictUpdateSave

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

type LanguageWithAfterPatchSave

type LanguageWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *Language, *field_mask1.FieldMask, *gorm1.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

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

type LanguageWithBeforePatchRead

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

type LanguageWithBeforePatchSave

type LanguageWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *Language, *field_mask1.FieldMask, *gorm1.DB) (*gorm1.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" json:"name,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description" json:"description,omitempty"`
	Priority    int64  `protobuf:"varint,3,opt,name=priority" json:"priority,omitempty"`
}

func DefaultApplyFieldMaskTask

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

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

func DefaultCreateTask

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

DefaultCreateTask executes a basic gorm create call

func DefaultListTask

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

DefaultListTask executes a gorm list call

func (*Task) Descriptor

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

func (*Task) GetDescription

func (m *Task) GetDescription() string

func (*Task) GetName

func (m *Task) GetName() string

func (*Task) GetPriority

func (m *Task) GetPriority() int64

func (*Task) ProtoMessage

func (*Task) ProtoMessage()

func (*Task) Reset

func (m *Task) Reset()

func (*Task) String

func (m *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_

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

type TaskORMWithAfterListFind

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

type TaskORMWithBeforeCreate_

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

type TaskORMWithBeforeListApplyQuery

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

type TaskORMWithBeforeListFind

type TaskORMWithBeforeListFind interface {
	BeforeListFind(context.Context, *gorm1.DB) (*gorm1.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                *atlas_rpc.Identifier       `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
	CreatedAt         *google_protobuf1.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt" json:"created_at,omitempty"`
	UpdatedAt         *google_protobuf1.Timestamp `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt" json:"updated_at,omitempty"`
	Birthday          *google_protobuf1.Timestamp `protobuf:"bytes,4,opt,name=birthday" json:"birthday,omitempty"`
	Age               uint32                      `protobuf:"varint,5,opt,name=age" json:"age,omitempty"`
	Num               uint32                      `protobuf:"varint,6,opt,name=num" json:"num,omitempty"`
	CreditCard        *CreditCard                 `protobuf:"bytes,7,opt,name=credit_card,json=creditCard" json:"credit_card,omitempty"`
	Emails            []*Email                    `protobuf:"bytes,8,rep,name=emails" json:"emails,omitempty"`
	Tasks             []*Task                     `protobuf:"bytes,9,rep,name=tasks" json:"tasks,omitempty"`
	BillingAddress    *Address                    `protobuf:"bytes,10,opt,name=billing_address,json=billingAddress" json:"billing_address,omitempty"`
	ShippingAddress   *Address                    `protobuf:"bytes,11,opt,name=shipping_address,json=shippingAddress" json:"shipping_address,omitempty"`
	Languages         []*Language                 `protobuf:"bytes,12,rep,name=languages" json:"languages,omitempty"`
	Friends           []*User                     `protobuf:"bytes,13,rep,name=friends" json:"friends,omitempty"`
	ShippingAddressId *atlas_rpc.Identifier       `protobuf:"bytes,14,opt,name=shipping_address_id,json=shippingAddressId" json:"shipping_address_id,omitempty"`
	ExternalUuid      *atlas_rpc.Identifier       `protobuf:"bytes,15,opt,name=external_uuid,json=externalUuid" json:"external_uuid,omitempty"`
}

func DefaultApplyFieldMaskUser

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

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

func DefaultCreateUser

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

DefaultCreateUser executes a basic gorm create call

func DefaultListUser

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

DefaultListUser executes a gorm list call

func DefaultPatchSetUser

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

DefaultPatchSetUser executes a bulk gorm update call with patch behavior

func DefaultPatchUser

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

DefaultPatchUser executes a basic gorm update call with patch behavior

func DefaultReadUser

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

DefaultReadUser executes a basic gorm read call

func DefaultStrictUpdateUser

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

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

func (*User) Descriptor

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

func (*User) GetAge

func (m *User) GetAge() uint32

func (*User) GetBillingAddress

func (m *User) GetBillingAddress() *Address

func (*User) GetBirthday

func (m *User) GetBirthday() *google_protobuf1.Timestamp

func (*User) GetCreatedAt

func (m *User) GetCreatedAt() *google_protobuf1.Timestamp

func (*User) GetCreditCard

func (m *User) GetCreditCard() *CreditCard

func (*User) GetEmails

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

func (*User) GetExternalUuid

func (m *User) GetExternalUuid() *atlas_rpc.Identifier

func (*User) GetFriends

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

func (*User) GetId

func (m *User) GetId() *atlas_rpc.Identifier

func (*User) GetLanguages

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

func (*User) GetNum

func (m *User) GetNum() uint32

func (*User) GetShippingAddress

func (m *User) GetShippingAddress() *Address

func (*User) GetShippingAddressId

func (m *User) GetShippingAddressId() *atlas_rpc.Identifier

func (*User) GetTasks

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

func (*User) GetUpdatedAt

func (m *User) GetUpdatedAt() *google_protobuf1.Timestamp

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) Reset

func (m *User) Reset()

func (*User) String

func (m *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_

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

type UserORMWithAfterDeleteSet

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

type UserORMWithAfterDelete_

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

type UserORMWithAfterListFind

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

type UserORMWithAfterReadFind

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

type UserORMWithAfterStrictUpdateSave

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

type UserORMWithBeforeCreate_

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

type UserORMWithBeforeDeleteSet

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

type UserORMWithBeforeDelete_

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

type UserORMWithBeforeListApplyQuery

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

type UserORMWithBeforeListFind

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

type UserORMWithBeforeReadApplyQuery

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

type UserORMWithBeforeReadFind

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

type UserORMWithBeforeStrictUpdateCleanup

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

type UserORMWithBeforeStrictUpdateSave

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

type UserWithAfterPatchSave

type UserWithAfterPatchSave interface {
	AfterPatchSave(context.Context, *User, *field_mask1.FieldMask, *gorm1.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

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

type UserWithBeforePatchRead

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

type UserWithBeforePatchSave

type UserWithBeforePatchSave interface {
	BeforePatchSave(context.Context, *User, *field_mask1.FieldMask, *gorm1.DB) (*gorm1.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