ccmanrpc

package
v0.0.0-...-3ddb297 Latest Latest
Warning

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

Go to latest
Published: Jun 2, 2021 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthCcmanEntity        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCcmanEntity          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupCcmanEntity = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthCcmanService        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCcmanService          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupCcmanService = fmt.Errorf("proto: unexpected end of group")
)

Functions

func RegisterCCManagerServer

func RegisterCCManagerServer(s *grpc.Server, srv CCManagerServer)

Types

type CCManagerClient

type CCManagerClient interface {
	GetAllFromProjectID(ctx context.Context, in *GetAllFromProjectIDReq, opts ...grpc.CallOption) (*GetAllFromProjectIDResp, error)
	CreateCard(ctx context.Context, in *CreateCardReq, opts ...grpc.CallOption) (*CreateCardResp, error)
	GetCardByID(ctx context.Context, in *GetCardByIDReq, opts ...grpc.CallOption) (*GetCardByIDResp, error)
	GetCardsByDueDate(ctx context.Context, in *GetCardsByDueDateReq, opts ...grpc.CallOption) (*GetCardsByDueDateResp, error)
	GetCardsByAssignedToID(ctx context.Context, in *GetCardsByAssignedToIDReq, opts ...grpc.CallOption) (*GetCardsByAssignedToIDResp, error)
	GetCardsByCreatorID(ctx context.Context, in *GetCardsByCreatorIDReq, opts ...grpc.CallOption) (*GetCardsByCreatorIDResp, error)
	GetCardsByColumnID(ctx context.Context, in *GetCardsByColumnIDReq, opts ...grpc.CallOption) (*GetCardsByColumnIDResp, error)
	UpdateCardByID(ctx context.Context, in *UpdateCardByIDReq, opts ...grpc.CallOption) (*UpdateCardByIDResp, error)
	MoveCardToCol(ctx context.Context, in *MoveCardToColReq, opts ...grpc.CallOption) (*MoveCardToColResp, error)
	DeleteCardByID(ctx context.Context, in *DeleteCardByIDReq, opts ...grpc.CallOption) (*DeleteCardByIDResp, error)
	CreateColumn(ctx context.Context, in *CreateColumnReq, opts ...grpc.CallOption) (*CreateColumnResp, error)
	GetColumnByID(ctx context.Context, in *GetColumnByIDReq, opts ...grpc.CallOption) (*GetColumnByIDResp, error)
	GetColumnsByTitle(ctx context.Context, in *GetColumnsByTitleReq, opts ...grpc.CallOption) (*GetColumnsByTitleResp, error)
	GetColumnsByProjectID(ctx context.Context, in *GetColumnsByProjectIDReq, opts ...grpc.CallOption) (*GetColumnsByProjectIDResp, error)
	UpdateColumnByID(ctx context.Context, in *UpdateColumnByIDReq, opts ...grpc.CallOption) (*UpdateColumnByIDResp, error)
	ReorderCard(ctx context.Context, in *ReorderCardReq, opts ...grpc.CallOption) (*ReorderCardResp, error)
	ReorderColumn(ctx context.Context, in *ReorderColumnReq, opts ...grpc.CallOption) (*ReorderColumnResp, error)
	DeleteColumnAndAllCardByID(ctx context.Context, in *DeleteColumnByIDReq, opts ...grpc.CallOption) (*DeleteColumnByIDResp, error)
	DeleteColumnByIDAndMove(ctx context.Context, in *DeleteColumnByIDAndMoveReq, opts ...grpc.CallOption) (*DeleteColumnByIDAndMoveResp, error)
}

CCManagerClient is the client API for CCManager service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewCCManagerClient

func NewCCManagerClient(cc *grpc.ClientConn) CCManagerClient

type CCManagerServer

type CCManagerServer interface {
	GetAllFromProjectID(context.Context, *GetAllFromProjectIDReq) (*GetAllFromProjectIDResp, error)
	CreateCard(context.Context, *CreateCardReq) (*CreateCardResp, error)
	GetCardByID(context.Context, *GetCardByIDReq) (*GetCardByIDResp, error)
	GetCardsByDueDate(context.Context, *GetCardsByDueDateReq) (*GetCardsByDueDateResp, error)
	GetCardsByAssignedToID(context.Context, *GetCardsByAssignedToIDReq) (*GetCardsByAssignedToIDResp, error)
	GetCardsByCreatorID(context.Context, *GetCardsByCreatorIDReq) (*GetCardsByCreatorIDResp, error)
	GetCardsByColumnID(context.Context, *GetCardsByColumnIDReq) (*GetCardsByColumnIDResp, error)
	UpdateCardByID(context.Context, *UpdateCardByIDReq) (*UpdateCardByIDResp, error)
	MoveCardToCol(context.Context, *MoveCardToColReq) (*MoveCardToColResp, error)
	DeleteCardByID(context.Context, *DeleteCardByIDReq) (*DeleteCardByIDResp, error)
	CreateColumn(context.Context, *CreateColumnReq) (*CreateColumnResp, error)
	GetColumnByID(context.Context, *GetColumnByIDReq) (*GetColumnByIDResp, error)
	GetColumnsByTitle(context.Context, *GetColumnsByTitleReq) (*GetColumnsByTitleResp, error)
	GetColumnsByProjectID(context.Context, *GetColumnsByProjectIDReq) (*GetColumnsByProjectIDResp, error)
	UpdateColumnByID(context.Context, *UpdateColumnByIDReq) (*UpdateColumnByIDResp, error)
	ReorderCard(context.Context, *ReorderCardReq) (*ReorderCardResp, error)
	ReorderColumn(context.Context, *ReorderColumnReq) (*ReorderColumnResp, error)
	DeleteColumnAndAllCardByID(context.Context, *DeleteColumnByIDReq) (*DeleteColumnByIDResp, error)
	DeleteColumnByIDAndMove(context.Context, *DeleteColumnByIDAndMoveReq) (*DeleteColumnByIDAndMoveResp, error)
}

CCManagerServer is the server API for CCManager service.

type Card

type Card struct {
	ID          uint32        `protobuf:"varint,1,opt,name=ID,proto3" json:"id" gorm:"Column:id; Type:int; primaryKey; autoIncrement"`
	Title       string        `protobuf:"bytes,2,opt,name=Title,proto3" json:"title" gorm:"Column:title; Type:text"`
	Description string        `protobuf:"bytes,3,opt,name=Description,proto3" json:"description" gorm:"Column:description; Type:text"`
	ColumnID    uint32        `` /* 132-byte string literal not displayed */
	AssignedTo  uint32        `protobuf:"varint,5,opt,name=AssignedTo,proto3" json:"assigned_to" gorm:"Column:assigned_to; Type:bigint"`
	CreatedBy   uint32        `protobuf:"varint,6,opt,name=CreatedBy,proto3" json:"created_by" gorm:"Column:created_by; Type:bigint"`
	Index       uint32        `protobuf:"varint,7,opt,name=Index,proto3" json:"index" gorm:"Column:index; Type:int; index:col_idx_idx"`
	DueDate     *timerpc.Time `protobuf:"bytes,8,opt,name=DueDate,proto3" json:"due_date" gorm:"Column:due_date"`
	CreatedAt   *timerpc.Time `protobuf:"bytes,9,opt,name=CreatedAt,proto3" json:"created_at" gorm:"Column:created_at"`
	UpdatedAt   *timerpc.Time `protobuf:"bytes,10,opt,name=UpdatedAt,proto3" json:"updated_at" gorm:"Column:updated_at"`
	DeletedAt   *timerpc.Time `protobuf:"bytes,11,opt,name=DeletedAt,proto3" json:"deleted_at" gorm:"Column:deleted_at"`
}

card

func NewPopulatedCard

func NewPopulatedCard(r randyCcmanEntity, easy bool) *Card

func (*Card) Descriptor

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

func (*Card) Equal

func (this *Card) Equal(that interface{}) bool

func (*Card) GetAssignedTo

func (m *Card) GetAssignedTo() uint32

func (*Card) GetColumnID

func (m *Card) GetColumnID() uint32

func (*Card) GetCreatedAt

func (m *Card) GetCreatedAt() *timerpc.Time

func (*Card) GetCreatedBy

func (m *Card) GetCreatedBy() uint32

func (*Card) GetDeletedAt

func (m *Card) GetDeletedAt() *timerpc.Time

func (*Card) GetDescription

func (m *Card) GetDescription() string

func (*Card) GetDueDate

func (m *Card) GetDueDate() *timerpc.Time

func (*Card) GetID

func (m *Card) GetID() uint32

func (*Card) GetIndex

func (m *Card) GetIndex() uint32

func (*Card) GetTitle

func (m *Card) GetTitle() string

func (*Card) GetUpdatedAt

func (m *Card) GetUpdatedAt() *timerpc.Time

func (*Card) GoString

func (this *Card) GoString() string

func (*Card) Marshal

func (m *Card) Marshal() (dAtA []byte, err error)

func (*Card) MarshalTo

func (m *Card) MarshalTo(dAtA []byte) (int, error)

func (*Card) MarshalToSizedBuffer

func (m *Card) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Card) ProtoMessage

func (*Card) ProtoMessage()

func (*Card) Reset

func (m *Card) Reset()

func (*Card) Size

func (m *Card) Size() (n int)

func (*Card) String

func (m *Card) String() string

func (*Card) Unmarshal

func (m *Card) Unmarshal(dAtA []byte) error

func (*Card) VerboseEqual

func (this *Card) VerboseEqual(that interface{}) error

func (*Card) XXX_DiscardUnknown

func (m *Card) XXX_DiscardUnknown()

func (*Card) XXX_Marshal

func (m *Card) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Card) XXX_Merge

func (m *Card) XXX_Merge(src proto.Message)

func (*Card) XXX_Size

func (m *Card) XXX_Size() int

func (*Card) XXX_Unmarshal

func (m *Card) XXX_Unmarshal(b []byte) error

type Column

type Column struct {
	ID           uint32        `protobuf:"varint,1,opt,name=ID,proto3" json:"id" gorm:"Column:id; Type:int; primaryKey; autoIncrement"`
	Title        string        `protobuf:"bytes,2,opt,name=Title,proto3" json:"title" gorm:"Column:title; Type:text"`
	ProjectID    uint32        `protobuf:"varint,3,opt,name=ProjectID,proto3" json:"project_id" gorm:"Column:project_id; Type:bigint"`
	Cards        []*Card       `` /* 126-byte string literal not displayed */
	CreatedBy    uint32        `protobuf:"varint,5,opt,name=CreatedBy,proto3" json:"created_by" gorm:"Column:created_by; Type:bigint"`
	Index        string        `protobuf:"bytes,6,opt,name=Index,proto3" json:"index" gorm:"Column:index; Type:text"`
	MaxIndex     uint32        `protobuf:"varint,7,opt,name=MaxIndex,proto3" json:"maxIndex" gorm:"Column:max_index; Type:int; Default:0"`
	ProjectIndex uint32        `protobuf:"varint,8,opt,name=ProjectIndex,proto3" json:"projectIndex" gorm:"Column:project_index; Type:int; index"`
	CreatedAt    *timerpc.Time `protobuf:"bytes,9,opt,name=CreatedAt,proto3" json:"createdAt" gorm:"Column:created_at"`
	UpdatedAt    *timerpc.Time `protobuf:"bytes,10,opt,name=UpdatedAt,proto3" json:"updatedAt" gorm:"Column:updated_at"`
	DeletedAt    *timerpc.Time `protobuf:"bytes,11,opt,name=DeletedAt,proto3" json:"deletedAt" gorm:"Column:deleted_at"`
}

column

func NewPopulatedColumn

func NewPopulatedColumn(r randyCcmanEntity, easy bool) *Column

func (*Column) Descriptor

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

func (*Column) Equal

func (this *Column) Equal(that interface{}) bool

func (*Column) GetCards

func (m *Column) GetCards() []*Card

func (*Column) GetCreatedAt

func (m *Column) GetCreatedAt() *timerpc.Time

func (*Column) GetCreatedBy

func (m *Column) GetCreatedBy() uint32

func (*Column) GetDeletedAt

func (m *Column) GetDeletedAt() *timerpc.Time

func (*Column) GetID

func (m *Column) GetID() uint32

func (*Column) GetIndex

func (m *Column) GetIndex() string

func (*Column) GetMaxIndex

func (m *Column) GetMaxIndex() uint32

func (*Column) GetProjectID

func (m *Column) GetProjectID() uint32

func (*Column) GetProjectIndex

func (m *Column) GetProjectIndex() uint32

func (*Column) GetTitle

func (m *Column) GetTitle() string

func (*Column) GetUpdatedAt

func (m *Column) GetUpdatedAt() *timerpc.Time

func (*Column) GoString

func (this *Column) GoString() string

func (*Column) Marshal

func (m *Column) Marshal() (dAtA []byte, err error)

func (*Column) MarshalTo

func (m *Column) MarshalTo(dAtA []byte) (int, error)

func (*Column) MarshalToSizedBuffer

func (m *Column) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column) ProtoMessage

func (*Column) ProtoMessage()

func (*Column) Reset

func (m *Column) Reset()

func (*Column) Size

func (m *Column) Size() (n int)

func (*Column) String

func (m *Column) String() string

func (*Column) Unmarshal

func (m *Column) Unmarshal(dAtA []byte) error

func (*Column) VerboseEqual

func (this *Column) VerboseEqual(that interface{}) error

func (*Column) XXX_DiscardUnknown

func (m *Column) XXX_DiscardUnknown()

func (*Column) XXX_Marshal

func (m *Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Column) XXX_Merge

func (m *Column) XXX_Merge(src proto.Message)

func (*Column) XXX_Size

func (m *Column) XXX_Size() int

func (*Column) XXX_Unmarshal

func (m *Column) XXX_Unmarshal(b []byte) error

type CreateCardReq

type CreateCardReq struct {
	CreateCard *Card `protobuf:"bytes,1,opt,name=CreateCard,proto3" json:"CreateCard,omitempty"`
}

func NewPopulatedCreateCardReq

func NewPopulatedCreateCardReq(r randyCcmanService, easy bool) *CreateCardReq

func (*CreateCardReq) Descriptor

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

func (*CreateCardReq) Equal

func (this *CreateCardReq) Equal(that interface{}) bool

func (*CreateCardReq) GetCreateCard

func (m *CreateCardReq) GetCreateCard() *Card

func (*CreateCardReq) GoString

func (this *CreateCardReq) GoString() string

func (*CreateCardReq) Marshal

func (m *CreateCardReq) Marshal() (dAtA []byte, err error)

func (*CreateCardReq) MarshalTo

func (m *CreateCardReq) MarshalTo(dAtA []byte) (int, error)

func (*CreateCardReq) MarshalToSizedBuffer

func (m *CreateCardReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateCardReq) ProtoMessage

func (*CreateCardReq) ProtoMessage()

func (*CreateCardReq) Reset

func (m *CreateCardReq) Reset()

func (*CreateCardReq) Size

func (m *CreateCardReq) Size() (n int)

func (*CreateCardReq) String

func (m *CreateCardReq) String() string

func (*CreateCardReq) Unmarshal

func (m *CreateCardReq) Unmarshal(dAtA []byte) error

func (*CreateCardReq) VerboseEqual

func (this *CreateCardReq) VerboseEqual(that interface{}) error

func (*CreateCardReq) XXX_DiscardUnknown

func (m *CreateCardReq) XXX_DiscardUnknown()

func (*CreateCardReq) XXX_Marshal

func (m *CreateCardReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateCardReq) XXX_Merge

func (m *CreateCardReq) XXX_Merge(src proto.Message)

func (*CreateCardReq) XXX_Size

func (m *CreateCardReq) XXX_Size() int

func (*CreateCardReq) XXX_Unmarshal

func (m *CreateCardReq) XXX_Unmarshal(b []byte) error

type CreateCardResp

type CreateCardResp struct {
	Code      int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message   string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	CreatedID uint32 `protobuf:"varint,3,opt,name=CreatedID,proto3" json:"CreatedID,omitempty"`
}

func NewPopulatedCreateCardResp

func NewPopulatedCreateCardResp(r randyCcmanService, easy bool) *CreateCardResp

func (*CreateCardResp) Descriptor

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

func (*CreateCardResp) Equal

func (this *CreateCardResp) Equal(that interface{}) bool

func (*CreateCardResp) GetCode

func (m *CreateCardResp) GetCode() int32

func (*CreateCardResp) GetCreatedID

func (m *CreateCardResp) GetCreatedID() uint32

func (*CreateCardResp) GetMessage

func (m *CreateCardResp) GetMessage() string

func (*CreateCardResp) GoString

func (this *CreateCardResp) GoString() string

func (*CreateCardResp) Marshal

func (m *CreateCardResp) Marshal() (dAtA []byte, err error)

func (*CreateCardResp) MarshalTo

func (m *CreateCardResp) MarshalTo(dAtA []byte) (int, error)

func (*CreateCardResp) MarshalToSizedBuffer

func (m *CreateCardResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateCardResp) ProtoMessage

func (*CreateCardResp) ProtoMessage()

func (*CreateCardResp) Reset

func (m *CreateCardResp) Reset()

func (*CreateCardResp) Size

func (m *CreateCardResp) Size() (n int)

func (*CreateCardResp) String

func (m *CreateCardResp) String() string

func (*CreateCardResp) Unmarshal

func (m *CreateCardResp) Unmarshal(dAtA []byte) error

func (*CreateCardResp) VerboseEqual

func (this *CreateCardResp) VerboseEqual(that interface{}) error

func (*CreateCardResp) XXX_DiscardUnknown

func (m *CreateCardResp) XXX_DiscardUnknown()

func (*CreateCardResp) XXX_Marshal

func (m *CreateCardResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateCardResp) XXX_Merge

func (m *CreateCardResp) XXX_Merge(src proto.Message)

func (*CreateCardResp) XXX_Size

func (m *CreateCardResp) XXX_Size() int

func (*CreateCardResp) XXX_Unmarshal

func (m *CreateCardResp) XXX_Unmarshal(b []byte) error

type CreateColumnReq

type CreateColumnReq struct {
	CreateColumn *Column `protobuf:"bytes,1,opt,name=CreateColumn,proto3" json:"CreateColumn,omitempty"`
}

func NewPopulatedCreateColumnReq

func NewPopulatedCreateColumnReq(r randyCcmanService, easy bool) *CreateColumnReq

func (*CreateColumnReq) Descriptor

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

func (*CreateColumnReq) Equal

func (this *CreateColumnReq) Equal(that interface{}) bool

func (*CreateColumnReq) GetCreateColumn

func (m *CreateColumnReq) GetCreateColumn() *Column

func (*CreateColumnReq) GoString

func (this *CreateColumnReq) GoString() string

func (*CreateColumnReq) Marshal

func (m *CreateColumnReq) Marshal() (dAtA []byte, err error)

func (*CreateColumnReq) MarshalTo

func (m *CreateColumnReq) MarshalTo(dAtA []byte) (int, error)

func (*CreateColumnReq) MarshalToSizedBuffer

func (m *CreateColumnReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateColumnReq) ProtoMessage

func (*CreateColumnReq) ProtoMessage()

func (*CreateColumnReq) Reset

func (m *CreateColumnReq) Reset()

func (*CreateColumnReq) Size

func (m *CreateColumnReq) Size() (n int)

func (*CreateColumnReq) String

func (m *CreateColumnReq) String() string

func (*CreateColumnReq) Unmarshal

func (m *CreateColumnReq) Unmarshal(dAtA []byte) error

func (*CreateColumnReq) VerboseEqual

func (this *CreateColumnReq) VerboseEqual(that interface{}) error

func (*CreateColumnReq) XXX_DiscardUnknown

func (m *CreateColumnReq) XXX_DiscardUnknown()

func (*CreateColumnReq) XXX_Marshal

func (m *CreateColumnReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateColumnReq) XXX_Merge

func (m *CreateColumnReq) XXX_Merge(src proto.Message)

func (*CreateColumnReq) XXX_Size

func (m *CreateColumnReq) XXX_Size() int

func (*CreateColumnReq) XXX_Unmarshal

func (m *CreateColumnReq) XXX_Unmarshal(b []byte) error

type CreateColumnResp

type CreateColumnResp struct {
	Code      int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message   string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	CreatedID uint32 `protobuf:"varint,3,opt,name=CreatedID,proto3" json:"CreatedID,omitempty"`
}

func NewPopulatedCreateColumnResp

func NewPopulatedCreateColumnResp(r randyCcmanService, easy bool) *CreateColumnResp

func (*CreateColumnResp) Descriptor

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

func (*CreateColumnResp) Equal

func (this *CreateColumnResp) Equal(that interface{}) bool

func (*CreateColumnResp) GetCode

func (m *CreateColumnResp) GetCode() int32

func (*CreateColumnResp) GetCreatedID

func (m *CreateColumnResp) GetCreatedID() uint32

func (*CreateColumnResp) GetMessage

func (m *CreateColumnResp) GetMessage() string

func (*CreateColumnResp) GoString

func (this *CreateColumnResp) GoString() string

func (*CreateColumnResp) Marshal

func (m *CreateColumnResp) Marshal() (dAtA []byte, err error)

func (*CreateColumnResp) MarshalTo

func (m *CreateColumnResp) MarshalTo(dAtA []byte) (int, error)

func (*CreateColumnResp) MarshalToSizedBuffer

func (m *CreateColumnResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateColumnResp) ProtoMessage

func (*CreateColumnResp) ProtoMessage()

func (*CreateColumnResp) Reset

func (m *CreateColumnResp) Reset()

func (*CreateColumnResp) Size

func (m *CreateColumnResp) Size() (n int)

func (*CreateColumnResp) String

func (m *CreateColumnResp) String() string

func (*CreateColumnResp) Unmarshal

func (m *CreateColumnResp) Unmarshal(dAtA []byte) error

func (*CreateColumnResp) VerboseEqual

func (this *CreateColumnResp) VerboseEqual(that interface{}) error

func (*CreateColumnResp) XXX_DiscardUnknown

func (m *CreateColumnResp) XXX_DiscardUnknown()

func (*CreateColumnResp) XXX_Marshal

func (m *CreateColumnResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateColumnResp) XXX_Merge

func (m *CreateColumnResp) XXX_Merge(src proto.Message)

func (*CreateColumnResp) XXX_Size

func (m *CreateColumnResp) XXX_Size() int

func (*CreateColumnResp) XXX_Unmarshal

func (m *CreateColumnResp) XXX_Unmarshal(b []byte) error

type DeleteCardByIDReq

type DeleteCardByIDReq struct {
	CardID uint32 `protobuf:"varint,1,opt,name=CardID,proto3" json:"CardID,omitempty"`
}

func NewPopulatedDeleteCardByIDReq

func NewPopulatedDeleteCardByIDReq(r randyCcmanService, easy bool) *DeleteCardByIDReq

func (*DeleteCardByIDReq) Descriptor

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

func (*DeleteCardByIDReq) Equal

func (this *DeleteCardByIDReq) Equal(that interface{}) bool

func (*DeleteCardByIDReq) GetCardID

func (m *DeleteCardByIDReq) GetCardID() uint32

func (*DeleteCardByIDReq) GoString

func (this *DeleteCardByIDReq) GoString() string

func (*DeleteCardByIDReq) Marshal

func (m *DeleteCardByIDReq) Marshal() (dAtA []byte, err error)

func (*DeleteCardByIDReq) MarshalTo

func (m *DeleteCardByIDReq) MarshalTo(dAtA []byte) (int, error)

func (*DeleteCardByIDReq) MarshalToSizedBuffer

func (m *DeleteCardByIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeleteCardByIDReq) ProtoMessage

func (*DeleteCardByIDReq) ProtoMessage()

func (*DeleteCardByIDReq) Reset

func (m *DeleteCardByIDReq) Reset()

func (*DeleteCardByIDReq) Size

func (m *DeleteCardByIDReq) Size() (n int)

func (*DeleteCardByIDReq) String

func (m *DeleteCardByIDReq) String() string

func (*DeleteCardByIDReq) Unmarshal

func (m *DeleteCardByIDReq) Unmarshal(dAtA []byte) error

func (*DeleteCardByIDReq) VerboseEqual

func (this *DeleteCardByIDReq) VerboseEqual(that interface{}) error

func (*DeleteCardByIDReq) XXX_DiscardUnknown

func (m *DeleteCardByIDReq) XXX_DiscardUnknown()

func (*DeleteCardByIDReq) XXX_Marshal

func (m *DeleteCardByIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteCardByIDReq) XXX_Merge

func (m *DeleteCardByIDReq) XXX_Merge(src proto.Message)

func (*DeleteCardByIDReq) XXX_Size

func (m *DeleteCardByIDReq) XXX_Size() int

func (*DeleteCardByIDReq) XXX_Unmarshal

func (m *DeleteCardByIDReq) XXX_Unmarshal(b []byte) error

type DeleteCardByIDResp

type DeleteCardByIDResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedDeleteCardByIDResp

func NewPopulatedDeleteCardByIDResp(r randyCcmanService, easy bool) *DeleteCardByIDResp

func (*DeleteCardByIDResp) Descriptor

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

func (*DeleteCardByIDResp) Equal

func (this *DeleteCardByIDResp) Equal(that interface{}) bool

func (*DeleteCardByIDResp) GetCode

func (m *DeleteCardByIDResp) GetCode() int32

func (*DeleteCardByIDResp) GetMessage

func (m *DeleteCardByIDResp) GetMessage() string

func (*DeleteCardByIDResp) GoString

func (this *DeleteCardByIDResp) GoString() string

func (*DeleteCardByIDResp) Marshal

func (m *DeleteCardByIDResp) Marshal() (dAtA []byte, err error)

func (*DeleteCardByIDResp) MarshalTo

func (m *DeleteCardByIDResp) MarshalTo(dAtA []byte) (int, error)

func (*DeleteCardByIDResp) MarshalToSizedBuffer

func (m *DeleteCardByIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeleteCardByIDResp) ProtoMessage

func (*DeleteCardByIDResp) ProtoMessage()

func (*DeleteCardByIDResp) Reset

func (m *DeleteCardByIDResp) Reset()

func (*DeleteCardByIDResp) Size

func (m *DeleteCardByIDResp) Size() (n int)

func (*DeleteCardByIDResp) String

func (m *DeleteCardByIDResp) String() string

func (*DeleteCardByIDResp) Unmarshal

func (m *DeleteCardByIDResp) Unmarshal(dAtA []byte) error

func (*DeleteCardByIDResp) VerboseEqual

func (this *DeleteCardByIDResp) VerboseEqual(that interface{}) error

func (*DeleteCardByIDResp) XXX_DiscardUnknown

func (m *DeleteCardByIDResp) XXX_DiscardUnknown()

func (*DeleteCardByIDResp) XXX_Marshal

func (m *DeleteCardByIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteCardByIDResp) XXX_Merge

func (m *DeleteCardByIDResp) XXX_Merge(src proto.Message)

func (*DeleteCardByIDResp) XXX_Size

func (m *DeleteCardByIDResp) XXX_Size() int

func (*DeleteCardByIDResp) XXX_Unmarshal

func (m *DeleteCardByIDResp) XXX_Unmarshal(b []byte) error

type DeleteColumnByIDAndMoveReq

type DeleteColumnByIDAndMoveReq struct {
	ColumnID    uint32 `protobuf:"varint,1,opt,name=ColumnID,proto3" json:"ColumnID,omitempty"`
	NewColumnID uint32 `protobuf:"varint,2,opt,name=NewColumnID,proto3" json:"NewColumnID,omitempty"`
}

func NewPopulatedDeleteColumnByIDAndMoveReq

func NewPopulatedDeleteColumnByIDAndMoveReq(r randyCcmanService, easy bool) *DeleteColumnByIDAndMoveReq

func (*DeleteColumnByIDAndMoveReq) Descriptor

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

func (*DeleteColumnByIDAndMoveReq) Equal

func (this *DeleteColumnByIDAndMoveReq) Equal(that interface{}) bool

func (*DeleteColumnByIDAndMoveReq) GetColumnID

func (m *DeleteColumnByIDAndMoveReq) GetColumnID() uint32

func (*DeleteColumnByIDAndMoveReq) GetNewColumnID

func (m *DeleteColumnByIDAndMoveReq) GetNewColumnID() uint32

func (*DeleteColumnByIDAndMoveReq) GoString

func (this *DeleteColumnByIDAndMoveReq) GoString() string

func (*DeleteColumnByIDAndMoveReq) Marshal

func (m *DeleteColumnByIDAndMoveReq) Marshal() (dAtA []byte, err error)

func (*DeleteColumnByIDAndMoveReq) MarshalTo

func (m *DeleteColumnByIDAndMoveReq) MarshalTo(dAtA []byte) (int, error)

func (*DeleteColumnByIDAndMoveReq) MarshalToSizedBuffer

func (m *DeleteColumnByIDAndMoveReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeleteColumnByIDAndMoveReq) ProtoMessage

func (*DeleteColumnByIDAndMoveReq) ProtoMessage()

func (*DeleteColumnByIDAndMoveReq) Reset

func (m *DeleteColumnByIDAndMoveReq) Reset()

func (*DeleteColumnByIDAndMoveReq) Size

func (m *DeleteColumnByIDAndMoveReq) Size() (n int)

func (*DeleteColumnByIDAndMoveReq) String

func (m *DeleteColumnByIDAndMoveReq) String() string

func (*DeleteColumnByIDAndMoveReq) Unmarshal

func (m *DeleteColumnByIDAndMoveReq) Unmarshal(dAtA []byte) error

func (*DeleteColumnByIDAndMoveReq) VerboseEqual

func (this *DeleteColumnByIDAndMoveReq) VerboseEqual(that interface{}) error

func (*DeleteColumnByIDAndMoveReq) XXX_DiscardUnknown

func (m *DeleteColumnByIDAndMoveReq) XXX_DiscardUnknown()

func (*DeleteColumnByIDAndMoveReq) XXX_Marshal

func (m *DeleteColumnByIDAndMoveReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteColumnByIDAndMoveReq) XXX_Merge

func (m *DeleteColumnByIDAndMoveReq) XXX_Merge(src proto.Message)

func (*DeleteColumnByIDAndMoveReq) XXX_Size

func (m *DeleteColumnByIDAndMoveReq) XXX_Size() int

func (*DeleteColumnByIDAndMoveReq) XXX_Unmarshal

func (m *DeleteColumnByIDAndMoveReq) XXX_Unmarshal(b []byte) error

type DeleteColumnByIDAndMoveResp

type DeleteColumnByIDAndMoveResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedDeleteColumnByIDAndMoveResp

func NewPopulatedDeleteColumnByIDAndMoveResp(r randyCcmanService, easy bool) *DeleteColumnByIDAndMoveResp

func (*DeleteColumnByIDAndMoveResp) Descriptor

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

func (*DeleteColumnByIDAndMoveResp) Equal

func (this *DeleteColumnByIDAndMoveResp) Equal(that interface{}) bool

func (*DeleteColumnByIDAndMoveResp) GetCode

func (m *DeleteColumnByIDAndMoveResp) GetCode() int32

func (*DeleteColumnByIDAndMoveResp) GetMessage

func (m *DeleteColumnByIDAndMoveResp) GetMessage() string

func (*DeleteColumnByIDAndMoveResp) GoString

func (this *DeleteColumnByIDAndMoveResp) GoString() string

func (*DeleteColumnByIDAndMoveResp) Marshal

func (m *DeleteColumnByIDAndMoveResp) Marshal() (dAtA []byte, err error)

func (*DeleteColumnByIDAndMoveResp) MarshalTo

func (m *DeleteColumnByIDAndMoveResp) MarshalTo(dAtA []byte) (int, error)

func (*DeleteColumnByIDAndMoveResp) MarshalToSizedBuffer

func (m *DeleteColumnByIDAndMoveResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeleteColumnByIDAndMoveResp) ProtoMessage

func (*DeleteColumnByIDAndMoveResp) ProtoMessage()

func (*DeleteColumnByIDAndMoveResp) Reset

func (m *DeleteColumnByIDAndMoveResp) Reset()

func (*DeleteColumnByIDAndMoveResp) Size

func (m *DeleteColumnByIDAndMoveResp) Size() (n int)

func (*DeleteColumnByIDAndMoveResp) String

func (m *DeleteColumnByIDAndMoveResp) String() string

func (*DeleteColumnByIDAndMoveResp) Unmarshal

func (m *DeleteColumnByIDAndMoveResp) Unmarshal(dAtA []byte) error

func (*DeleteColumnByIDAndMoveResp) VerboseEqual

func (this *DeleteColumnByIDAndMoveResp) VerboseEqual(that interface{}) error

func (*DeleteColumnByIDAndMoveResp) XXX_DiscardUnknown

func (m *DeleteColumnByIDAndMoveResp) XXX_DiscardUnknown()

func (*DeleteColumnByIDAndMoveResp) XXX_Marshal

func (m *DeleteColumnByIDAndMoveResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteColumnByIDAndMoveResp) XXX_Merge

func (m *DeleteColumnByIDAndMoveResp) XXX_Merge(src proto.Message)

func (*DeleteColumnByIDAndMoveResp) XXX_Size

func (m *DeleteColumnByIDAndMoveResp) XXX_Size() int

func (*DeleteColumnByIDAndMoveResp) XXX_Unmarshal

func (m *DeleteColumnByIDAndMoveResp) XXX_Unmarshal(b []byte) error

type DeleteColumnByIDReq

type DeleteColumnByIDReq struct {
	ColumnID uint32 `protobuf:"varint,1,opt,name=ColumnID,proto3" json:"ColumnID,omitempty"`
}

func NewPopulatedDeleteColumnByIDReq

func NewPopulatedDeleteColumnByIDReq(r randyCcmanService, easy bool) *DeleteColumnByIDReq

func (*DeleteColumnByIDReq) Descriptor

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

func (*DeleteColumnByIDReq) Equal

func (this *DeleteColumnByIDReq) Equal(that interface{}) bool

func (*DeleteColumnByIDReq) GetColumnID

func (m *DeleteColumnByIDReq) GetColumnID() uint32

func (*DeleteColumnByIDReq) GoString

func (this *DeleteColumnByIDReq) GoString() string

func (*DeleteColumnByIDReq) Marshal

func (m *DeleteColumnByIDReq) Marshal() (dAtA []byte, err error)

func (*DeleteColumnByIDReq) MarshalTo

func (m *DeleteColumnByIDReq) MarshalTo(dAtA []byte) (int, error)

func (*DeleteColumnByIDReq) MarshalToSizedBuffer

func (m *DeleteColumnByIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeleteColumnByIDReq) ProtoMessage

func (*DeleteColumnByIDReq) ProtoMessage()

func (*DeleteColumnByIDReq) Reset

func (m *DeleteColumnByIDReq) Reset()

func (*DeleteColumnByIDReq) Size

func (m *DeleteColumnByIDReq) Size() (n int)

func (*DeleteColumnByIDReq) String

func (m *DeleteColumnByIDReq) String() string

func (*DeleteColumnByIDReq) Unmarshal

func (m *DeleteColumnByIDReq) Unmarshal(dAtA []byte) error

func (*DeleteColumnByIDReq) VerboseEqual

func (this *DeleteColumnByIDReq) VerboseEqual(that interface{}) error

func (*DeleteColumnByIDReq) XXX_DiscardUnknown

func (m *DeleteColumnByIDReq) XXX_DiscardUnknown()

func (*DeleteColumnByIDReq) XXX_Marshal

func (m *DeleteColumnByIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteColumnByIDReq) XXX_Merge

func (m *DeleteColumnByIDReq) XXX_Merge(src proto.Message)

func (*DeleteColumnByIDReq) XXX_Size

func (m *DeleteColumnByIDReq) XXX_Size() int

func (*DeleteColumnByIDReq) XXX_Unmarshal

func (m *DeleteColumnByIDReq) XXX_Unmarshal(b []byte) error

type DeleteColumnByIDResp

type DeleteColumnByIDResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedDeleteColumnByIDResp

func NewPopulatedDeleteColumnByIDResp(r randyCcmanService, easy bool) *DeleteColumnByIDResp

func (*DeleteColumnByIDResp) Descriptor

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

func (*DeleteColumnByIDResp) Equal

func (this *DeleteColumnByIDResp) Equal(that interface{}) bool

func (*DeleteColumnByIDResp) GetCode

func (m *DeleteColumnByIDResp) GetCode() int32

func (*DeleteColumnByIDResp) GetMessage

func (m *DeleteColumnByIDResp) GetMessage() string

func (*DeleteColumnByIDResp) GoString

func (this *DeleteColumnByIDResp) GoString() string

func (*DeleteColumnByIDResp) Marshal

func (m *DeleteColumnByIDResp) Marshal() (dAtA []byte, err error)

func (*DeleteColumnByIDResp) MarshalTo

func (m *DeleteColumnByIDResp) MarshalTo(dAtA []byte) (int, error)

func (*DeleteColumnByIDResp) MarshalToSizedBuffer

func (m *DeleteColumnByIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DeleteColumnByIDResp) ProtoMessage

func (*DeleteColumnByIDResp) ProtoMessage()

func (*DeleteColumnByIDResp) Reset

func (m *DeleteColumnByIDResp) Reset()

func (*DeleteColumnByIDResp) Size

func (m *DeleteColumnByIDResp) Size() (n int)

func (*DeleteColumnByIDResp) String

func (m *DeleteColumnByIDResp) String() string

func (*DeleteColumnByIDResp) Unmarshal

func (m *DeleteColumnByIDResp) Unmarshal(dAtA []byte) error

func (*DeleteColumnByIDResp) VerboseEqual

func (this *DeleteColumnByIDResp) VerboseEqual(that interface{}) error

func (*DeleteColumnByIDResp) XXX_DiscardUnknown

func (m *DeleteColumnByIDResp) XXX_DiscardUnknown()

func (*DeleteColumnByIDResp) XXX_Marshal

func (m *DeleteColumnByIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteColumnByIDResp) XXX_Merge

func (m *DeleteColumnByIDResp) XXX_Merge(src proto.Message)

func (*DeleteColumnByIDResp) XXX_Size

func (m *DeleteColumnByIDResp) XXX_Size() int

func (*DeleteColumnByIDResp) XXX_Unmarshal

func (m *DeleteColumnByIDResp) XXX_Unmarshal(b []byte) error

type GetAllFromProjectIDReq

type GetAllFromProjectIDReq struct {
	ProjectID uint32 `protobuf:"varint,1,opt,name=ProjectID,proto3" json:"ProjectID,omitempty"`
}

func NewPopulatedGetAllFromProjectIDReq

func NewPopulatedGetAllFromProjectIDReq(r randyCcmanService, easy bool) *GetAllFromProjectIDReq

func (*GetAllFromProjectIDReq) Descriptor

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

func (*GetAllFromProjectIDReq) Equal

func (this *GetAllFromProjectIDReq) Equal(that interface{}) bool

func (*GetAllFromProjectIDReq) GetProjectID

func (m *GetAllFromProjectIDReq) GetProjectID() uint32

func (*GetAllFromProjectIDReq) GoString

func (this *GetAllFromProjectIDReq) GoString() string

func (*GetAllFromProjectIDReq) Marshal

func (m *GetAllFromProjectIDReq) Marshal() (dAtA []byte, err error)

func (*GetAllFromProjectIDReq) MarshalTo

func (m *GetAllFromProjectIDReq) MarshalTo(dAtA []byte) (int, error)

func (*GetAllFromProjectIDReq) MarshalToSizedBuffer

func (m *GetAllFromProjectIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAllFromProjectIDReq) ProtoMessage

func (*GetAllFromProjectIDReq) ProtoMessage()

func (*GetAllFromProjectIDReq) Reset

func (m *GetAllFromProjectIDReq) Reset()

func (*GetAllFromProjectIDReq) Size

func (m *GetAllFromProjectIDReq) Size() (n int)

func (*GetAllFromProjectIDReq) String

func (m *GetAllFromProjectIDReq) String() string

func (*GetAllFromProjectIDReq) Unmarshal

func (m *GetAllFromProjectIDReq) Unmarshal(dAtA []byte) error

func (*GetAllFromProjectIDReq) VerboseEqual

func (this *GetAllFromProjectIDReq) VerboseEqual(that interface{}) error

func (*GetAllFromProjectIDReq) XXX_DiscardUnknown

func (m *GetAllFromProjectIDReq) XXX_DiscardUnknown()

func (*GetAllFromProjectIDReq) XXX_Marshal

func (m *GetAllFromProjectIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetAllFromProjectIDReq) XXX_Merge

func (m *GetAllFromProjectIDReq) XXX_Merge(src proto.Message)

func (*GetAllFromProjectIDReq) XXX_Size

func (m *GetAllFromProjectIDReq) XXX_Size() int

func (*GetAllFromProjectIDReq) XXX_Unmarshal

func (m *GetAllFromProjectIDReq) XXX_Unmarshal(b []byte) error

type GetAllFromProjectIDResp

type GetAllFromProjectIDResp struct {
	Code    int32     `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string    `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Columns []*Column `protobuf:"bytes,3,rep,name=Columns,proto3" json:"Columns,omitempty"`
}

func NewPopulatedGetAllFromProjectIDResp

func NewPopulatedGetAllFromProjectIDResp(r randyCcmanService, easy bool) *GetAllFromProjectIDResp

func (*GetAllFromProjectIDResp) Descriptor

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

func (*GetAllFromProjectIDResp) Equal

func (this *GetAllFromProjectIDResp) Equal(that interface{}) bool

func (*GetAllFromProjectIDResp) GetCode

func (m *GetAllFromProjectIDResp) GetCode() int32

func (*GetAllFromProjectIDResp) GetColumns

func (m *GetAllFromProjectIDResp) GetColumns() []*Column

func (*GetAllFromProjectIDResp) GetMessage

func (m *GetAllFromProjectIDResp) GetMessage() string

func (*GetAllFromProjectIDResp) GoString

func (this *GetAllFromProjectIDResp) GoString() string

func (*GetAllFromProjectIDResp) Marshal

func (m *GetAllFromProjectIDResp) Marshal() (dAtA []byte, err error)

func (*GetAllFromProjectIDResp) MarshalTo

func (m *GetAllFromProjectIDResp) MarshalTo(dAtA []byte) (int, error)

func (*GetAllFromProjectIDResp) MarshalToSizedBuffer

func (m *GetAllFromProjectIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAllFromProjectIDResp) ProtoMessage

func (*GetAllFromProjectIDResp) ProtoMessage()

func (*GetAllFromProjectIDResp) Reset

func (m *GetAllFromProjectIDResp) Reset()

func (*GetAllFromProjectIDResp) Size

func (m *GetAllFromProjectIDResp) Size() (n int)

func (*GetAllFromProjectIDResp) String

func (m *GetAllFromProjectIDResp) String() string

func (*GetAllFromProjectIDResp) Unmarshal

func (m *GetAllFromProjectIDResp) Unmarshal(dAtA []byte) error

func (*GetAllFromProjectIDResp) VerboseEqual

func (this *GetAllFromProjectIDResp) VerboseEqual(that interface{}) error

func (*GetAllFromProjectIDResp) XXX_DiscardUnknown

func (m *GetAllFromProjectIDResp) XXX_DiscardUnknown()

func (*GetAllFromProjectIDResp) XXX_Marshal

func (m *GetAllFromProjectIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetAllFromProjectIDResp) XXX_Merge

func (m *GetAllFromProjectIDResp) XXX_Merge(src proto.Message)

func (*GetAllFromProjectIDResp) XXX_Size

func (m *GetAllFromProjectIDResp) XXX_Size() int

func (*GetAllFromProjectIDResp) XXX_Unmarshal

func (m *GetAllFromProjectIDResp) XXX_Unmarshal(b []byte) error

type GetCardByIDReq

type GetCardByIDReq struct {
	CardID uint32 `protobuf:"varint,1,opt,name=CardID,proto3" json:"CardID,omitempty"`
}

func NewPopulatedGetCardByIDReq

func NewPopulatedGetCardByIDReq(r randyCcmanService, easy bool) *GetCardByIDReq

func (*GetCardByIDReq) Descriptor

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

func (*GetCardByIDReq) Equal

func (this *GetCardByIDReq) Equal(that interface{}) bool

func (*GetCardByIDReq) GetCardID

func (m *GetCardByIDReq) GetCardID() uint32

func (*GetCardByIDReq) GoString

func (this *GetCardByIDReq) GoString() string

func (*GetCardByIDReq) Marshal

func (m *GetCardByIDReq) Marshal() (dAtA []byte, err error)

func (*GetCardByIDReq) MarshalTo

func (m *GetCardByIDReq) MarshalTo(dAtA []byte) (int, error)

func (*GetCardByIDReq) MarshalToSizedBuffer

func (m *GetCardByIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardByIDReq) ProtoMessage

func (*GetCardByIDReq) ProtoMessage()

func (*GetCardByIDReq) Reset

func (m *GetCardByIDReq) Reset()

func (*GetCardByIDReq) Size

func (m *GetCardByIDReq) Size() (n int)

func (*GetCardByIDReq) String

func (m *GetCardByIDReq) String() string

func (*GetCardByIDReq) Unmarshal

func (m *GetCardByIDReq) Unmarshal(dAtA []byte) error

func (*GetCardByIDReq) VerboseEqual

func (this *GetCardByIDReq) VerboseEqual(that interface{}) error

func (*GetCardByIDReq) XXX_DiscardUnknown

func (m *GetCardByIDReq) XXX_DiscardUnknown()

func (*GetCardByIDReq) XXX_Marshal

func (m *GetCardByIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardByIDReq) XXX_Merge

func (m *GetCardByIDReq) XXX_Merge(src proto.Message)

func (*GetCardByIDReq) XXX_Size

func (m *GetCardByIDReq) XXX_Size() int

func (*GetCardByIDReq) XXX_Unmarshal

func (m *GetCardByIDReq) XXX_Unmarshal(b []byte) error

type GetCardByIDResp

type GetCardByIDResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	ResCard *Card  `protobuf:"bytes,3,opt,name=ResCard,proto3" json:"ResCard,omitempty"`
}

func NewPopulatedGetCardByIDResp

func NewPopulatedGetCardByIDResp(r randyCcmanService, easy bool) *GetCardByIDResp

func (*GetCardByIDResp) Descriptor

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

func (*GetCardByIDResp) Equal

func (this *GetCardByIDResp) Equal(that interface{}) bool

func (*GetCardByIDResp) GetCode

func (m *GetCardByIDResp) GetCode() int32

func (*GetCardByIDResp) GetMessage

func (m *GetCardByIDResp) GetMessage() string

func (*GetCardByIDResp) GetResCard

func (m *GetCardByIDResp) GetResCard() *Card

func (*GetCardByIDResp) GoString

func (this *GetCardByIDResp) GoString() string

func (*GetCardByIDResp) Marshal

func (m *GetCardByIDResp) Marshal() (dAtA []byte, err error)

func (*GetCardByIDResp) MarshalTo

func (m *GetCardByIDResp) MarshalTo(dAtA []byte) (int, error)

func (*GetCardByIDResp) MarshalToSizedBuffer

func (m *GetCardByIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardByIDResp) ProtoMessage

func (*GetCardByIDResp) ProtoMessage()

func (*GetCardByIDResp) Reset

func (m *GetCardByIDResp) Reset()

func (*GetCardByIDResp) Size

func (m *GetCardByIDResp) Size() (n int)

func (*GetCardByIDResp) String

func (m *GetCardByIDResp) String() string

func (*GetCardByIDResp) Unmarshal

func (m *GetCardByIDResp) Unmarshal(dAtA []byte) error

func (*GetCardByIDResp) VerboseEqual

func (this *GetCardByIDResp) VerboseEqual(that interface{}) error

func (*GetCardByIDResp) XXX_DiscardUnknown

func (m *GetCardByIDResp) XXX_DiscardUnknown()

func (*GetCardByIDResp) XXX_Marshal

func (m *GetCardByIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardByIDResp) XXX_Merge

func (m *GetCardByIDResp) XXX_Merge(src proto.Message)

func (*GetCardByIDResp) XXX_Size

func (m *GetCardByIDResp) XXX_Size() int

func (*GetCardByIDResp) XXX_Unmarshal

func (m *GetCardByIDResp) XXX_Unmarshal(b []byte) error

type GetCardsByAssignedToIDReq

type GetCardsByAssignedToIDReq struct {
	AssignedToID uint32 `protobuf:"varint,1,opt,name=AssignedToID,proto3" json:"AssignedToID,omitempty"`
}

func NewPopulatedGetCardsByAssignedToIDReq

func NewPopulatedGetCardsByAssignedToIDReq(r randyCcmanService, easy bool) *GetCardsByAssignedToIDReq

func (*GetCardsByAssignedToIDReq) Descriptor

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

func (*GetCardsByAssignedToIDReq) Equal

func (this *GetCardsByAssignedToIDReq) Equal(that interface{}) bool

func (*GetCardsByAssignedToIDReq) GetAssignedToID

func (m *GetCardsByAssignedToIDReq) GetAssignedToID() uint32

func (*GetCardsByAssignedToIDReq) GoString

func (this *GetCardsByAssignedToIDReq) GoString() string

func (*GetCardsByAssignedToIDReq) Marshal

func (m *GetCardsByAssignedToIDReq) Marshal() (dAtA []byte, err error)

func (*GetCardsByAssignedToIDReq) MarshalTo

func (m *GetCardsByAssignedToIDReq) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByAssignedToIDReq) MarshalToSizedBuffer

func (m *GetCardsByAssignedToIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByAssignedToIDReq) ProtoMessage

func (*GetCardsByAssignedToIDReq) ProtoMessage()

func (*GetCardsByAssignedToIDReq) Reset

func (m *GetCardsByAssignedToIDReq) Reset()

func (*GetCardsByAssignedToIDReq) Size

func (m *GetCardsByAssignedToIDReq) Size() (n int)

func (*GetCardsByAssignedToIDReq) String

func (m *GetCardsByAssignedToIDReq) String() string

func (*GetCardsByAssignedToIDReq) Unmarshal

func (m *GetCardsByAssignedToIDReq) Unmarshal(dAtA []byte) error

func (*GetCardsByAssignedToIDReq) VerboseEqual

func (this *GetCardsByAssignedToIDReq) VerboseEqual(that interface{}) error

func (*GetCardsByAssignedToIDReq) XXX_DiscardUnknown

func (m *GetCardsByAssignedToIDReq) XXX_DiscardUnknown()

func (*GetCardsByAssignedToIDReq) XXX_Marshal

func (m *GetCardsByAssignedToIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByAssignedToIDReq) XXX_Merge

func (m *GetCardsByAssignedToIDReq) XXX_Merge(src proto.Message)

func (*GetCardsByAssignedToIDReq) XXX_Size

func (m *GetCardsByAssignedToIDReq) XXX_Size() int

func (*GetCardsByAssignedToIDReq) XXX_Unmarshal

func (m *GetCardsByAssignedToIDReq) XXX_Unmarshal(b []byte) error

type GetCardsByAssignedToIDResp

type GetCardsByAssignedToIDResp struct {
	Code    int32   `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string  `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Cards   []*Card `protobuf:"bytes,3,rep,name=Cards,proto3" json:"Cards,omitempty"`
}

func NewPopulatedGetCardsByAssignedToIDResp

func NewPopulatedGetCardsByAssignedToIDResp(r randyCcmanService, easy bool) *GetCardsByAssignedToIDResp

func (*GetCardsByAssignedToIDResp) Descriptor

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

func (*GetCardsByAssignedToIDResp) Equal

func (this *GetCardsByAssignedToIDResp) Equal(that interface{}) bool

func (*GetCardsByAssignedToIDResp) GetCards

func (m *GetCardsByAssignedToIDResp) GetCards() []*Card

func (*GetCardsByAssignedToIDResp) GetCode

func (m *GetCardsByAssignedToIDResp) GetCode() int32

func (*GetCardsByAssignedToIDResp) GetMessage

func (m *GetCardsByAssignedToIDResp) GetMessage() string

func (*GetCardsByAssignedToIDResp) GoString

func (this *GetCardsByAssignedToIDResp) GoString() string

func (*GetCardsByAssignedToIDResp) Marshal

func (m *GetCardsByAssignedToIDResp) Marshal() (dAtA []byte, err error)

func (*GetCardsByAssignedToIDResp) MarshalTo

func (m *GetCardsByAssignedToIDResp) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByAssignedToIDResp) MarshalToSizedBuffer

func (m *GetCardsByAssignedToIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByAssignedToIDResp) ProtoMessage

func (*GetCardsByAssignedToIDResp) ProtoMessage()

func (*GetCardsByAssignedToIDResp) Reset

func (m *GetCardsByAssignedToIDResp) Reset()

func (*GetCardsByAssignedToIDResp) Size

func (m *GetCardsByAssignedToIDResp) Size() (n int)

func (*GetCardsByAssignedToIDResp) String

func (m *GetCardsByAssignedToIDResp) String() string

func (*GetCardsByAssignedToIDResp) Unmarshal

func (m *GetCardsByAssignedToIDResp) Unmarshal(dAtA []byte) error

func (*GetCardsByAssignedToIDResp) VerboseEqual

func (this *GetCardsByAssignedToIDResp) VerboseEqual(that interface{}) error

func (*GetCardsByAssignedToIDResp) XXX_DiscardUnknown

func (m *GetCardsByAssignedToIDResp) XXX_DiscardUnknown()

func (*GetCardsByAssignedToIDResp) XXX_Marshal

func (m *GetCardsByAssignedToIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByAssignedToIDResp) XXX_Merge

func (m *GetCardsByAssignedToIDResp) XXX_Merge(src proto.Message)

func (*GetCardsByAssignedToIDResp) XXX_Size

func (m *GetCardsByAssignedToIDResp) XXX_Size() int

func (*GetCardsByAssignedToIDResp) XXX_Unmarshal

func (m *GetCardsByAssignedToIDResp) XXX_Unmarshal(b []byte) error

type GetCardsByColumnIDReq

type GetCardsByColumnIDReq struct {
	ColumnID uint32 `protobuf:"varint,1,opt,name=ColumnID,proto3" json:"ColumnID,omitempty"`
}

func NewPopulatedGetCardsByColumnIDReq

func NewPopulatedGetCardsByColumnIDReq(r randyCcmanService, easy bool) *GetCardsByColumnIDReq

func (*GetCardsByColumnIDReq) Descriptor

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

func (*GetCardsByColumnIDReq) Equal

func (this *GetCardsByColumnIDReq) Equal(that interface{}) bool

func (*GetCardsByColumnIDReq) GetColumnID

func (m *GetCardsByColumnIDReq) GetColumnID() uint32

func (*GetCardsByColumnIDReq) GoString

func (this *GetCardsByColumnIDReq) GoString() string

func (*GetCardsByColumnIDReq) Marshal

func (m *GetCardsByColumnIDReq) Marshal() (dAtA []byte, err error)

func (*GetCardsByColumnIDReq) MarshalTo

func (m *GetCardsByColumnIDReq) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByColumnIDReq) MarshalToSizedBuffer

func (m *GetCardsByColumnIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByColumnIDReq) ProtoMessage

func (*GetCardsByColumnIDReq) ProtoMessage()

func (*GetCardsByColumnIDReq) Reset

func (m *GetCardsByColumnIDReq) Reset()

func (*GetCardsByColumnIDReq) Size

func (m *GetCardsByColumnIDReq) Size() (n int)

func (*GetCardsByColumnIDReq) String

func (m *GetCardsByColumnIDReq) String() string

func (*GetCardsByColumnIDReq) Unmarshal

func (m *GetCardsByColumnIDReq) Unmarshal(dAtA []byte) error

func (*GetCardsByColumnIDReq) VerboseEqual

func (this *GetCardsByColumnIDReq) VerboseEqual(that interface{}) error

func (*GetCardsByColumnIDReq) XXX_DiscardUnknown

func (m *GetCardsByColumnIDReq) XXX_DiscardUnknown()

func (*GetCardsByColumnIDReq) XXX_Marshal

func (m *GetCardsByColumnIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByColumnIDReq) XXX_Merge

func (m *GetCardsByColumnIDReq) XXX_Merge(src proto.Message)

func (*GetCardsByColumnIDReq) XXX_Size

func (m *GetCardsByColumnIDReq) XXX_Size() int

func (*GetCardsByColumnIDReq) XXX_Unmarshal

func (m *GetCardsByColumnIDReq) XXX_Unmarshal(b []byte) error

type GetCardsByColumnIDResp

type GetCardsByColumnIDResp struct {
	Code    int32   `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string  `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Cards   []*Card `protobuf:"bytes,3,rep,name=Cards,proto3" json:"Cards,omitempty"`
}

func NewPopulatedGetCardsByColumnIDResp

func NewPopulatedGetCardsByColumnIDResp(r randyCcmanService, easy bool) *GetCardsByColumnIDResp

func (*GetCardsByColumnIDResp) Descriptor

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

func (*GetCardsByColumnIDResp) Equal

func (this *GetCardsByColumnIDResp) Equal(that interface{}) bool

func (*GetCardsByColumnIDResp) GetCards

func (m *GetCardsByColumnIDResp) GetCards() []*Card

func (*GetCardsByColumnIDResp) GetCode

func (m *GetCardsByColumnIDResp) GetCode() int32

func (*GetCardsByColumnIDResp) GetMessage

func (m *GetCardsByColumnIDResp) GetMessage() string

func (*GetCardsByColumnIDResp) GoString

func (this *GetCardsByColumnIDResp) GoString() string

func (*GetCardsByColumnIDResp) Marshal

func (m *GetCardsByColumnIDResp) Marshal() (dAtA []byte, err error)

func (*GetCardsByColumnIDResp) MarshalTo

func (m *GetCardsByColumnIDResp) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByColumnIDResp) MarshalToSizedBuffer

func (m *GetCardsByColumnIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByColumnIDResp) ProtoMessage

func (*GetCardsByColumnIDResp) ProtoMessage()

func (*GetCardsByColumnIDResp) Reset

func (m *GetCardsByColumnIDResp) Reset()

func (*GetCardsByColumnIDResp) Size

func (m *GetCardsByColumnIDResp) Size() (n int)

func (*GetCardsByColumnIDResp) String

func (m *GetCardsByColumnIDResp) String() string

func (*GetCardsByColumnIDResp) Unmarshal

func (m *GetCardsByColumnIDResp) Unmarshal(dAtA []byte) error

func (*GetCardsByColumnIDResp) VerboseEqual

func (this *GetCardsByColumnIDResp) VerboseEqual(that interface{}) error

func (*GetCardsByColumnIDResp) XXX_DiscardUnknown

func (m *GetCardsByColumnIDResp) XXX_DiscardUnknown()

func (*GetCardsByColumnIDResp) XXX_Marshal

func (m *GetCardsByColumnIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByColumnIDResp) XXX_Merge

func (m *GetCardsByColumnIDResp) XXX_Merge(src proto.Message)

func (*GetCardsByColumnIDResp) XXX_Size

func (m *GetCardsByColumnIDResp) XXX_Size() int

func (*GetCardsByColumnIDResp) XXX_Unmarshal

func (m *GetCardsByColumnIDResp) XXX_Unmarshal(b []byte) error

type GetCardsByCreatorIDReq

type GetCardsByCreatorIDReq struct {
	CreatorID uint32 `protobuf:"varint,1,opt,name=CreatorID,proto3" json:"CreatorID,omitempty"`
}

func NewPopulatedGetCardsByCreatorIDReq

func NewPopulatedGetCardsByCreatorIDReq(r randyCcmanService, easy bool) *GetCardsByCreatorIDReq

func (*GetCardsByCreatorIDReq) Descriptor

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

func (*GetCardsByCreatorIDReq) Equal

func (this *GetCardsByCreatorIDReq) Equal(that interface{}) bool

func (*GetCardsByCreatorIDReq) GetCreatorID

func (m *GetCardsByCreatorIDReq) GetCreatorID() uint32

func (*GetCardsByCreatorIDReq) GoString

func (this *GetCardsByCreatorIDReq) GoString() string

func (*GetCardsByCreatorIDReq) Marshal

func (m *GetCardsByCreatorIDReq) Marshal() (dAtA []byte, err error)

func (*GetCardsByCreatorIDReq) MarshalTo

func (m *GetCardsByCreatorIDReq) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByCreatorIDReq) MarshalToSizedBuffer

func (m *GetCardsByCreatorIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByCreatorIDReq) ProtoMessage

func (*GetCardsByCreatorIDReq) ProtoMessage()

func (*GetCardsByCreatorIDReq) Reset

func (m *GetCardsByCreatorIDReq) Reset()

func (*GetCardsByCreatorIDReq) Size

func (m *GetCardsByCreatorIDReq) Size() (n int)

func (*GetCardsByCreatorIDReq) String

func (m *GetCardsByCreatorIDReq) String() string

func (*GetCardsByCreatorIDReq) Unmarshal

func (m *GetCardsByCreatorIDReq) Unmarshal(dAtA []byte) error

func (*GetCardsByCreatorIDReq) VerboseEqual

func (this *GetCardsByCreatorIDReq) VerboseEqual(that interface{}) error

func (*GetCardsByCreatorIDReq) XXX_DiscardUnknown

func (m *GetCardsByCreatorIDReq) XXX_DiscardUnknown()

func (*GetCardsByCreatorIDReq) XXX_Marshal

func (m *GetCardsByCreatorIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByCreatorIDReq) XXX_Merge

func (m *GetCardsByCreatorIDReq) XXX_Merge(src proto.Message)

func (*GetCardsByCreatorIDReq) XXX_Size

func (m *GetCardsByCreatorIDReq) XXX_Size() int

func (*GetCardsByCreatorIDReq) XXX_Unmarshal

func (m *GetCardsByCreatorIDReq) XXX_Unmarshal(b []byte) error

type GetCardsByCreatorIDResp

type GetCardsByCreatorIDResp struct {
	Code    int32   `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string  `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Cards   []*Card `protobuf:"bytes,3,rep,name=Cards,proto3" json:"Cards,omitempty"`
}

func NewPopulatedGetCardsByCreatorIDResp

func NewPopulatedGetCardsByCreatorIDResp(r randyCcmanService, easy bool) *GetCardsByCreatorIDResp

func (*GetCardsByCreatorIDResp) Descriptor

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

func (*GetCardsByCreatorIDResp) Equal

func (this *GetCardsByCreatorIDResp) Equal(that interface{}) bool

func (*GetCardsByCreatorIDResp) GetCards

func (m *GetCardsByCreatorIDResp) GetCards() []*Card

func (*GetCardsByCreatorIDResp) GetCode

func (m *GetCardsByCreatorIDResp) GetCode() int32

func (*GetCardsByCreatorIDResp) GetMessage

func (m *GetCardsByCreatorIDResp) GetMessage() string

func (*GetCardsByCreatorIDResp) GoString

func (this *GetCardsByCreatorIDResp) GoString() string

func (*GetCardsByCreatorIDResp) Marshal

func (m *GetCardsByCreatorIDResp) Marshal() (dAtA []byte, err error)

func (*GetCardsByCreatorIDResp) MarshalTo

func (m *GetCardsByCreatorIDResp) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByCreatorIDResp) MarshalToSizedBuffer

func (m *GetCardsByCreatorIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByCreatorIDResp) ProtoMessage

func (*GetCardsByCreatorIDResp) ProtoMessage()

func (*GetCardsByCreatorIDResp) Reset

func (m *GetCardsByCreatorIDResp) Reset()

func (*GetCardsByCreatorIDResp) Size

func (m *GetCardsByCreatorIDResp) Size() (n int)

func (*GetCardsByCreatorIDResp) String

func (m *GetCardsByCreatorIDResp) String() string

func (*GetCardsByCreatorIDResp) Unmarshal

func (m *GetCardsByCreatorIDResp) Unmarshal(dAtA []byte) error

func (*GetCardsByCreatorIDResp) VerboseEqual

func (this *GetCardsByCreatorIDResp) VerboseEqual(that interface{}) error

func (*GetCardsByCreatorIDResp) XXX_DiscardUnknown

func (m *GetCardsByCreatorIDResp) XXX_DiscardUnknown()

func (*GetCardsByCreatorIDResp) XXX_Marshal

func (m *GetCardsByCreatorIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByCreatorIDResp) XXX_Merge

func (m *GetCardsByCreatorIDResp) XXX_Merge(src proto.Message)

func (*GetCardsByCreatorIDResp) XXX_Size

func (m *GetCardsByCreatorIDResp) XXX_Size() int

func (*GetCardsByCreatorIDResp) XXX_Unmarshal

func (m *GetCardsByCreatorIDResp) XXX_Unmarshal(b []byte) error

type GetCardsByDueDateReq

type GetCardsByDueDateReq struct {
	DueDate *timerpc.Time `protobuf:"bytes,1,opt,name=DueDate,proto3" json:"DueDate,omitempty"`
}

func NewPopulatedGetCardsByDueDateReq

func NewPopulatedGetCardsByDueDateReq(r randyCcmanService, easy bool) *GetCardsByDueDateReq

func (*GetCardsByDueDateReq) Descriptor

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

func (*GetCardsByDueDateReq) Equal

func (this *GetCardsByDueDateReq) Equal(that interface{}) bool

func (*GetCardsByDueDateReq) GetDueDate

func (m *GetCardsByDueDateReq) GetDueDate() *timerpc.Time

func (*GetCardsByDueDateReq) GoString

func (this *GetCardsByDueDateReq) GoString() string

func (*GetCardsByDueDateReq) Marshal

func (m *GetCardsByDueDateReq) Marshal() (dAtA []byte, err error)

func (*GetCardsByDueDateReq) MarshalTo

func (m *GetCardsByDueDateReq) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByDueDateReq) MarshalToSizedBuffer

func (m *GetCardsByDueDateReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByDueDateReq) ProtoMessage

func (*GetCardsByDueDateReq) ProtoMessage()

func (*GetCardsByDueDateReq) Reset

func (m *GetCardsByDueDateReq) Reset()

func (*GetCardsByDueDateReq) Size

func (m *GetCardsByDueDateReq) Size() (n int)

func (*GetCardsByDueDateReq) String

func (m *GetCardsByDueDateReq) String() string

func (*GetCardsByDueDateReq) Unmarshal

func (m *GetCardsByDueDateReq) Unmarshal(dAtA []byte) error

func (*GetCardsByDueDateReq) VerboseEqual

func (this *GetCardsByDueDateReq) VerboseEqual(that interface{}) error

func (*GetCardsByDueDateReq) XXX_DiscardUnknown

func (m *GetCardsByDueDateReq) XXX_DiscardUnknown()

func (*GetCardsByDueDateReq) XXX_Marshal

func (m *GetCardsByDueDateReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByDueDateReq) XXX_Merge

func (m *GetCardsByDueDateReq) XXX_Merge(src proto.Message)

func (*GetCardsByDueDateReq) XXX_Size

func (m *GetCardsByDueDateReq) XXX_Size() int

func (*GetCardsByDueDateReq) XXX_Unmarshal

func (m *GetCardsByDueDateReq) XXX_Unmarshal(b []byte) error

type GetCardsByDueDateResp

type GetCardsByDueDateResp struct {
	Code    int32   `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string  `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Cards   []*Card `protobuf:"bytes,3,rep,name=Cards,proto3" json:"Cards,omitempty"`
}

func NewPopulatedGetCardsByDueDateResp

func NewPopulatedGetCardsByDueDateResp(r randyCcmanService, easy bool) *GetCardsByDueDateResp

func (*GetCardsByDueDateResp) Descriptor

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

func (*GetCardsByDueDateResp) Equal

func (this *GetCardsByDueDateResp) Equal(that interface{}) bool

func (*GetCardsByDueDateResp) GetCards

func (m *GetCardsByDueDateResp) GetCards() []*Card

func (*GetCardsByDueDateResp) GetCode

func (m *GetCardsByDueDateResp) GetCode() int32

func (*GetCardsByDueDateResp) GetMessage

func (m *GetCardsByDueDateResp) GetMessage() string

func (*GetCardsByDueDateResp) GoString

func (this *GetCardsByDueDateResp) GoString() string

func (*GetCardsByDueDateResp) Marshal

func (m *GetCardsByDueDateResp) Marshal() (dAtA []byte, err error)

func (*GetCardsByDueDateResp) MarshalTo

func (m *GetCardsByDueDateResp) MarshalTo(dAtA []byte) (int, error)

func (*GetCardsByDueDateResp) MarshalToSizedBuffer

func (m *GetCardsByDueDateResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCardsByDueDateResp) ProtoMessage

func (*GetCardsByDueDateResp) ProtoMessage()

func (*GetCardsByDueDateResp) Reset

func (m *GetCardsByDueDateResp) Reset()

func (*GetCardsByDueDateResp) Size

func (m *GetCardsByDueDateResp) Size() (n int)

func (*GetCardsByDueDateResp) String

func (m *GetCardsByDueDateResp) String() string

func (*GetCardsByDueDateResp) Unmarshal

func (m *GetCardsByDueDateResp) Unmarshal(dAtA []byte) error

func (*GetCardsByDueDateResp) VerboseEqual

func (this *GetCardsByDueDateResp) VerboseEqual(that interface{}) error

func (*GetCardsByDueDateResp) XXX_DiscardUnknown

func (m *GetCardsByDueDateResp) XXX_DiscardUnknown()

func (*GetCardsByDueDateResp) XXX_Marshal

func (m *GetCardsByDueDateResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCardsByDueDateResp) XXX_Merge

func (m *GetCardsByDueDateResp) XXX_Merge(src proto.Message)

func (*GetCardsByDueDateResp) XXX_Size

func (m *GetCardsByDueDateResp) XXX_Size() int

func (*GetCardsByDueDateResp) XXX_Unmarshal

func (m *GetCardsByDueDateResp) XXX_Unmarshal(b []byte) error

type GetColumnByIDReq

type GetColumnByIDReq struct {
	ColumnID uint32 `protobuf:"varint,1,opt,name=ColumnID,proto3" json:"ColumnID,omitempty"`
}

func NewPopulatedGetColumnByIDReq

func NewPopulatedGetColumnByIDReq(r randyCcmanService, easy bool) *GetColumnByIDReq

func (*GetColumnByIDReq) Descriptor

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

func (*GetColumnByIDReq) Equal

func (this *GetColumnByIDReq) Equal(that interface{}) bool

func (*GetColumnByIDReq) GetColumnID

func (m *GetColumnByIDReq) GetColumnID() uint32

func (*GetColumnByIDReq) GoString

func (this *GetColumnByIDReq) GoString() string

func (*GetColumnByIDReq) Marshal

func (m *GetColumnByIDReq) Marshal() (dAtA []byte, err error)

func (*GetColumnByIDReq) MarshalTo

func (m *GetColumnByIDReq) MarshalTo(dAtA []byte) (int, error)

func (*GetColumnByIDReq) MarshalToSizedBuffer

func (m *GetColumnByIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetColumnByIDReq) ProtoMessage

func (*GetColumnByIDReq) ProtoMessage()

func (*GetColumnByIDReq) Reset

func (m *GetColumnByIDReq) Reset()

func (*GetColumnByIDReq) Size

func (m *GetColumnByIDReq) Size() (n int)

func (*GetColumnByIDReq) String

func (m *GetColumnByIDReq) String() string

func (*GetColumnByIDReq) Unmarshal

func (m *GetColumnByIDReq) Unmarshal(dAtA []byte) error

func (*GetColumnByIDReq) VerboseEqual

func (this *GetColumnByIDReq) VerboseEqual(that interface{}) error

func (*GetColumnByIDReq) XXX_DiscardUnknown

func (m *GetColumnByIDReq) XXX_DiscardUnknown()

func (*GetColumnByIDReq) XXX_Marshal

func (m *GetColumnByIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetColumnByIDReq) XXX_Merge

func (m *GetColumnByIDReq) XXX_Merge(src proto.Message)

func (*GetColumnByIDReq) XXX_Size

func (m *GetColumnByIDReq) XXX_Size() int

func (*GetColumnByIDReq) XXX_Unmarshal

func (m *GetColumnByIDReq) XXX_Unmarshal(b []byte) error

type GetColumnByIDResp

type GetColumnByIDResp struct {
	Code    int32   `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string  `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Column  *Column `protobuf:"bytes,3,opt,name=Column,proto3" json:"Column,omitempty"`
}

func NewPopulatedGetColumnByIDResp

func NewPopulatedGetColumnByIDResp(r randyCcmanService, easy bool) *GetColumnByIDResp

func (*GetColumnByIDResp) Descriptor

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

func (*GetColumnByIDResp) Equal

func (this *GetColumnByIDResp) Equal(that interface{}) bool

func (*GetColumnByIDResp) GetCode

func (m *GetColumnByIDResp) GetCode() int32

func (*GetColumnByIDResp) GetColumn

func (m *GetColumnByIDResp) GetColumn() *Column

func (*GetColumnByIDResp) GetMessage

func (m *GetColumnByIDResp) GetMessage() string

func (*GetColumnByIDResp) GoString

func (this *GetColumnByIDResp) GoString() string

func (*GetColumnByIDResp) Marshal

func (m *GetColumnByIDResp) Marshal() (dAtA []byte, err error)

func (*GetColumnByIDResp) MarshalTo

func (m *GetColumnByIDResp) MarshalTo(dAtA []byte) (int, error)

func (*GetColumnByIDResp) MarshalToSizedBuffer

func (m *GetColumnByIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetColumnByIDResp) ProtoMessage

func (*GetColumnByIDResp) ProtoMessage()

func (*GetColumnByIDResp) Reset

func (m *GetColumnByIDResp) Reset()

func (*GetColumnByIDResp) Size

func (m *GetColumnByIDResp) Size() (n int)

func (*GetColumnByIDResp) String

func (m *GetColumnByIDResp) String() string

func (*GetColumnByIDResp) Unmarshal

func (m *GetColumnByIDResp) Unmarshal(dAtA []byte) error

func (*GetColumnByIDResp) VerboseEqual

func (this *GetColumnByIDResp) VerboseEqual(that interface{}) error

func (*GetColumnByIDResp) XXX_DiscardUnknown

func (m *GetColumnByIDResp) XXX_DiscardUnknown()

func (*GetColumnByIDResp) XXX_Marshal

func (m *GetColumnByIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetColumnByIDResp) XXX_Merge

func (m *GetColumnByIDResp) XXX_Merge(src proto.Message)

func (*GetColumnByIDResp) XXX_Size

func (m *GetColumnByIDResp) XXX_Size() int

func (*GetColumnByIDResp) XXX_Unmarshal

func (m *GetColumnByIDResp) XXX_Unmarshal(b []byte) error

type GetColumnsByProjectIDReq

type GetColumnsByProjectIDReq struct {
	ProjectID uint32 `protobuf:"varint,1,opt,name=ProjectID,proto3" json:"ProjectID,omitempty"`
}

func NewPopulatedGetColumnsByProjectIDReq

func NewPopulatedGetColumnsByProjectIDReq(r randyCcmanService, easy bool) *GetColumnsByProjectIDReq

func (*GetColumnsByProjectIDReq) Descriptor

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

func (*GetColumnsByProjectIDReq) Equal

func (this *GetColumnsByProjectIDReq) Equal(that interface{}) bool

func (*GetColumnsByProjectIDReq) GetProjectID

func (m *GetColumnsByProjectIDReq) GetProjectID() uint32

func (*GetColumnsByProjectIDReq) GoString

func (this *GetColumnsByProjectIDReq) GoString() string

func (*GetColumnsByProjectIDReq) Marshal

func (m *GetColumnsByProjectIDReq) Marshal() (dAtA []byte, err error)

func (*GetColumnsByProjectIDReq) MarshalTo

func (m *GetColumnsByProjectIDReq) MarshalTo(dAtA []byte) (int, error)

func (*GetColumnsByProjectIDReq) MarshalToSizedBuffer

func (m *GetColumnsByProjectIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetColumnsByProjectIDReq) ProtoMessage

func (*GetColumnsByProjectIDReq) ProtoMessage()

func (*GetColumnsByProjectIDReq) Reset

func (m *GetColumnsByProjectIDReq) Reset()

func (*GetColumnsByProjectIDReq) Size

func (m *GetColumnsByProjectIDReq) Size() (n int)

func (*GetColumnsByProjectIDReq) String

func (m *GetColumnsByProjectIDReq) String() string

func (*GetColumnsByProjectIDReq) Unmarshal

func (m *GetColumnsByProjectIDReq) Unmarshal(dAtA []byte) error

func (*GetColumnsByProjectIDReq) VerboseEqual

func (this *GetColumnsByProjectIDReq) VerboseEqual(that interface{}) error

func (*GetColumnsByProjectIDReq) XXX_DiscardUnknown

func (m *GetColumnsByProjectIDReq) XXX_DiscardUnknown()

func (*GetColumnsByProjectIDReq) XXX_Marshal

func (m *GetColumnsByProjectIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetColumnsByProjectIDReq) XXX_Merge

func (m *GetColumnsByProjectIDReq) XXX_Merge(src proto.Message)

func (*GetColumnsByProjectIDReq) XXX_Size

func (m *GetColumnsByProjectIDReq) XXX_Size() int

func (*GetColumnsByProjectIDReq) XXX_Unmarshal

func (m *GetColumnsByProjectIDReq) XXX_Unmarshal(b []byte) error

type GetColumnsByProjectIDResp

type GetColumnsByProjectIDResp struct {
	Code    int32     `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string    `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Columns []*Column `protobuf:"bytes,3,rep,name=Columns,proto3" json:"Columns,omitempty"`
}

func NewPopulatedGetColumnsByProjectIDResp

func NewPopulatedGetColumnsByProjectIDResp(r randyCcmanService, easy bool) *GetColumnsByProjectIDResp

func (*GetColumnsByProjectIDResp) Descriptor

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

func (*GetColumnsByProjectIDResp) Equal

func (this *GetColumnsByProjectIDResp) Equal(that interface{}) bool

func (*GetColumnsByProjectIDResp) GetCode

func (m *GetColumnsByProjectIDResp) GetCode() int32

func (*GetColumnsByProjectIDResp) GetColumns

func (m *GetColumnsByProjectIDResp) GetColumns() []*Column

func (*GetColumnsByProjectIDResp) GetMessage

func (m *GetColumnsByProjectIDResp) GetMessage() string

func (*GetColumnsByProjectIDResp) GoString

func (this *GetColumnsByProjectIDResp) GoString() string

func (*GetColumnsByProjectIDResp) Marshal

func (m *GetColumnsByProjectIDResp) Marshal() (dAtA []byte, err error)

func (*GetColumnsByProjectIDResp) MarshalTo

func (m *GetColumnsByProjectIDResp) MarshalTo(dAtA []byte) (int, error)

func (*GetColumnsByProjectIDResp) MarshalToSizedBuffer

func (m *GetColumnsByProjectIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetColumnsByProjectIDResp) ProtoMessage

func (*GetColumnsByProjectIDResp) ProtoMessage()

func (*GetColumnsByProjectIDResp) Reset

func (m *GetColumnsByProjectIDResp) Reset()

func (*GetColumnsByProjectIDResp) Size

func (m *GetColumnsByProjectIDResp) Size() (n int)

func (*GetColumnsByProjectIDResp) String

func (m *GetColumnsByProjectIDResp) String() string

func (*GetColumnsByProjectIDResp) Unmarshal

func (m *GetColumnsByProjectIDResp) Unmarshal(dAtA []byte) error

func (*GetColumnsByProjectIDResp) VerboseEqual

func (this *GetColumnsByProjectIDResp) VerboseEqual(that interface{}) error

func (*GetColumnsByProjectIDResp) XXX_DiscardUnknown

func (m *GetColumnsByProjectIDResp) XXX_DiscardUnknown()

func (*GetColumnsByProjectIDResp) XXX_Marshal

func (m *GetColumnsByProjectIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetColumnsByProjectIDResp) XXX_Merge

func (m *GetColumnsByProjectIDResp) XXX_Merge(src proto.Message)

func (*GetColumnsByProjectIDResp) XXX_Size

func (m *GetColumnsByProjectIDResp) XXX_Size() int

func (*GetColumnsByProjectIDResp) XXX_Unmarshal

func (m *GetColumnsByProjectIDResp) XXX_Unmarshal(b []byte) error

type GetColumnsByTitleReq

type GetColumnsByTitleReq struct {
	Title string `protobuf:"bytes,1,opt,name=Title,proto3" json:"Title,omitempty"`
}

func NewPopulatedGetColumnsByTitleReq

func NewPopulatedGetColumnsByTitleReq(r randyCcmanService, easy bool) *GetColumnsByTitleReq

func (*GetColumnsByTitleReq) Descriptor

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

func (*GetColumnsByTitleReq) Equal

func (this *GetColumnsByTitleReq) Equal(that interface{}) bool

func (*GetColumnsByTitleReq) GetTitle

func (m *GetColumnsByTitleReq) GetTitle() string

func (*GetColumnsByTitleReq) GoString

func (this *GetColumnsByTitleReq) GoString() string

func (*GetColumnsByTitleReq) Marshal

func (m *GetColumnsByTitleReq) Marshal() (dAtA []byte, err error)

func (*GetColumnsByTitleReq) MarshalTo

func (m *GetColumnsByTitleReq) MarshalTo(dAtA []byte) (int, error)

func (*GetColumnsByTitleReq) MarshalToSizedBuffer

func (m *GetColumnsByTitleReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetColumnsByTitleReq) ProtoMessage

func (*GetColumnsByTitleReq) ProtoMessage()

func (*GetColumnsByTitleReq) Reset

func (m *GetColumnsByTitleReq) Reset()

func (*GetColumnsByTitleReq) Size

func (m *GetColumnsByTitleReq) Size() (n int)

func (*GetColumnsByTitleReq) String

func (m *GetColumnsByTitleReq) String() string

func (*GetColumnsByTitleReq) Unmarshal

func (m *GetColumnsByTitleReq) Unmarshal(dAtA []byte) error

func (*GetColumnsByTitleReq) VerboseEqual

func (this *GetColumnsByTitleReq) VerboseEqual(that interface{}) error

func (*GetColumnsByTitleReq) XXX_DiscardUnknown

func (m *GetColumnsByTitleReq) XXX_DiscardUnknown()

func (*GetColumnsByTitleReq) XXX_Marshal

func (m *GetColumnsByTitleReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetColumnsByTitleReq) XXX_Merge

func (m *GetColumnsByTitleReq) XXX_Merge(src proto.Message)

func (*GetColumnsByTitleReq) XXX_Size

func (m *GetColumnsByTitleReq) XXX_Size() int

func (*GetColumnsByTitleReq) XXX_Unmarshal

func (m *GetColumnsByTitleReq) XXX_Unmarshal(b []byte) error

type GetColumnsByTitleResp

type GetColumnsByTitleResp struct {
	Code    int32     `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string    `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Columns []*Column `protobuf:"bytes,3,rep,name=Columns,proto3" json:"Columns,omitempty"`
}

func NewPopulatedGetColumnsByTitleResp

func NewPopulatedGetColumnsByTitleResp(r randyCcmanService, easy bool) *GetColumnsByTitleResp

func (*GetColumnsByTitleResp) Descriptor

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

func (*GetColumnsByTitleResp) Equal

func (this *GetColumnsByTitleResp) Equal(that interface{}) bool

func (*GetColumnsByTitleResp) GetCode

func (m *GetColumnsByTitleResp) GetCode() int32

func (*GetColumnsByTitleResp) GetColumns

func (m *GetColumnsByTitleResp) GetColumns() []*Column

func (*GetColumnsByTitleResp) GetMessage

func (m *GetColumnsByTitleResp) GetMessage() string

func (*GetColumnsByTitleResp) GoString

func (this *GetColumnsByTitleResp) GoString() string

func (*GetColumnsByTitleResp) Marshal

func (m *GetColumnsByTitleResp) Marshal() (dAtA []byte, err error)

func (*GetColumnsByTitleResp) MarshalTo

func (m *GetColumnsByTitleResp) MarshalTo(dAtA []byte) (int, error)

func (*GetColumnsByTitleResp) MarshalToSizedBuffer

func (m *GetColumnsByTitleResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetColumnsByTitleResp) ProtoMessage

func (*GetColumnsByTitleResp) ProtoMessage()

func (*GetColumnsByTitleResp) Reset

func (m *GetColumnsByTitleResp) Reset()

func (*GetColumnsByTitleResp) Size

func (m *GetColumnsByTitleResp) Size() (n int)

func (*GetColumnsByTitleResp) String

func (m *GetColumnsByTitleResp) String() string

func (*GetColumnsByTitleResp) Unmarshal

func (m *GetColumnsByTitleResp) Unmarshal(dAtA []byte) error

func (*GetColumnsByTitleResp) VerboseEqual

func (this *GetColumnsByTitleResp) VerboseEqual(that interface{}) error

func (*GetColumnsByTitleResp) XXX_DiscardUnknown

func (m *GetColumnsByTitleResp) XXX_DiscardUnknown()

func (*GetColumnsByTitleResp) XXX_Marshal

func (m *GetColumnsByTitleResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetColumnsByTitleResp) XXX_Merge

func (m *GetColumnsByTitleResp) XXX_Merge(src proto.Message)

func (*GetColumnsByTitleResp) XXX_Size

func (m *GetColumnsByTitleResp) XXX_Size() int

func (*GetColumnsByTitleResp) XXX_Unmarshal

func (m *GetColumnsByTitleResp) XXX_Unmarshal(b []byte) error

type MoveCardToColReq

type MoveCardToColReq struct {
	CardID   uint32 `protobuf:"varint,1,opt,name=CardID,proto3" json:"CardID,omitempty"`
	NewColID uint32 `protobuf:"varint,2,opt,name=NewColID,proto3" json:"NewColID,omitempty"`
	AboveOf  uint32 `protobuf:"varint,3,opt,name=AboveOf,proto3" json:"AboveOf,omitempty"`
}

func NewPopulatedMoveCardToColReq

func NewPopulatedMoveCardToColReq(r randyCcmanService, easy bool) *MoveCardToColReq

func (*MoveCardToColReq) Descriptor

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

func (*MoveCardToColReq) Equal

func (this *MoveCardToColReq) Equal(that interface{}) bool

func (*MoveCardToColReq) GetAboveOf

func (m *MoveCardToColReq) GetAboveOf() uint32

func (*MoveCardToColReq) GetCardID

func (m *MoveCardToColReq) GetCardID() uint32

func (*MoveCardToColReq) GetNewColID

func (m *MoveCardToColReq) GetNewColID() uint32

func (*MoveCardToColReq) GoString

func (this *MoveCardToColReq) GoString() string

func (*MoveCardToColReq) Marshal

func (m *MoveCardToColReq) Marshal() (dAtA []byte, err error)

func (*MoveCardToColReq) MarshalTo

func (m *MoveCardToColReq) MarshalTo(dAtA []byte) (int, error)

func (*MoveCardToColReq) MarshalToSizedBuffer

func (m *MoveCardToColReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MoveCardToColReq) ProtoMessage

func (*MoveCardToColReq) ProtoMessage()

func (*MoveCardToColReq) Reset

func (m *MoveCardToColReq) Reset()

func (*MoveCardToColReq) Size

func (m *MoveCardToColReq) Size() (n int)

func (*MoveCardToColReq) String

func (m *MoveCardToColReq) String() string

func (*MoveCardToColReq) Unmarshal

func (m *MoveCardToColReq) Unmarshal(dAtA []byte) error

func (*MoveCardToColReq) VerboseEqual

func (this *MoveCardToColReq) VerboseEqual(that interface{}) error

func (*MoveCardToColReq) XXX_DiscardUnknown

func (m *MoveCardToColReq) XXX_DiscardUnknown()

func (*MoveCardToColReq) XXX_Marshal

func (m *MoveCardToColReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MoveCardToColReq) XXX_Merge

func (m *MoveCardToColReq) XXX_Merge(src proto.Message)

func (*MoveCardToColReq) XXX_Size

func (m *MoveCardToColReq) XXX_Size() int

func (*MoveCardToColReq) XXX_Unmarshal

func (m *MoveCardToColReq) XXX_Unmarshal(b []byte) error

type MoveCardToColResp

type MoveCardToColResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedMoveCardToColResp

func NewPopulatedMoveCardToColResp(r randyCcmanService, easy bool) *MoveCardToColResp

func (*MoveCardToColResp) Descriptor

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

func (*MoveCardToColResp) Equal

func (this *MoveCardToColResp) Equal(that interface{}) bool

func (*MoveCardToColResp) GetCode

func (m *MoveCardToColResp) GetCode() int32

func (*MoveCardToColResp) GetMessage

func (m *MoveCardToColResp) GetMessage() string

func (*MoveCardToColResp) GoString

func (this *MoveCardToColResp) GoString() string

func (*MoveCardToColResp) Marshal

func (m *MoveCardToColResp) Marshal() (dAtA []byte, err error)

func (*MoveCardToColResp) MarshalTo

func (m *MoveCardToColResp) MarshalTo(dAtA []byte) (int, error)

func (*MoveCardToColResp) MarshalToSizedBuffer

func (m *MoveCardToColResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MoveCardToColResp) ProtoMessage

func (*MoveCardToColResp) ProtoMessage()

func (*MoveCardToColResp) Reset

func (m *MoveCardToColResp) Reset()

func (*MoveCardToColResp) Size

func (m *MoveCardToColResp) Size() (n int)

func (*MoveCardToColResp) String

func (m *MoveCardToColResp) String() string

func (*MoveCardToColResp) Unmarshal

func (m *MoveCardToColResp) Unmarshal(dAtA []byte) error

func (*MoveCardToColResp) VerboseEqual

func (this *MoveCardToColResp) VerboseEqual(that interface{}) error

func (*MoveCardToColResp) XXX_DiscardUnknown

func (m *MoveCardToColResp) XXX_DiscardUnknown()

func (*MoveCardToColResp) XXX_Marshal

func (m *MoveCardToColResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MoveCardToColResp) XXX_Merge

func (m *MoveCardToColResp) XXX_Merge(src proto.Message)

func (*MoveCardToColResp) XXX_Size

func (m *MoveCardToColResp) XXX_Size() int

func (*MoveCardToColResp) XXX_Unmarshal

func (m *MoveCardToColResp) XXX_Unmarshal(b []byte) error

type ReorderCardReq

type ReorderCardReq struct {
	CardID   uint32 `protobuf:"varint,1,opt,name=CardID,proto3" json:"CardID,omitempty"`
	AboveIdx uint32 `protobuf:"varint,2,opt,name=AboveIdx,proto3" json:"AboveIdx,omitempty"`
}

func NewPopulatedReorderCardReq

func NewPopulatedReorderCardReq(r randyCcmanService, easy bool) *ReorderCardReq

func (*ReorderCardReq) Descriptor

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

func (*ReorderCardReq) Equal

func (this *ReorderCardReq) Equal(that interface{}) bool

func (*ReorderCardReq) GetAboveIdx

func (m *ReorderCardReq) GetAboveIdx() uint32

func (*ReorderCardReq) GetCardID

func (m *ReorderCardReq) GetCardID() uint32

func (*ReorderCardReq) GoString

func (this *ReorderCardReq) GoString() string

func (*ReorderCardReq) Marshal

func (m *ReorderCardReq) Marshal() (dAtA []byte, err error)

func (*ReorderCardReq) MarshalTo

func (m *ReorderCardReq) MarshalTo(dAtA []byte) (int, error)

func (*ReorderCardReq) MarshalToSizedBuffer

func (m *ReorderCardReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReorderCardReq) ProtoMessage

func (*ReorderCardReq) ProtoMessage()

func (*ReorderCardReq) Reset

func (m *ReorderCardReq) Reset()

func (*ReorderCardReq) Size

func (m *ReorderCardReq) Size() (n int)

func (*ReorderCardReq) String

func (m *ReorderCardReq) String() string

func (*ReorderCardReq) Unmarshal

func (m *ReorderCardReq) Unmarshal(dAtA []byte) error

func (*ReorderCardReq) VerboseEqual

func (this *ReorderCardReq) VerboseEqual(that interface{}) error

func (*ReorderCardReq) XXX_DiscardUnknown

func (m *ReorderCardReq) XXX_DiscardUnknown()

func (*ReorderCardReq) XXX_Marshal

func (m *ReorderCardReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReorderCardReq) XXX_Merge

func (m *ReorderCardReq) XXX_Merge(src proto.Message)

func (*ReorderCardReq) XXX_Size

func (m *ReorderCardReq) XXX_Size() int

func (*ReorderCardReq) XXX_Unmarshal

func (m *ReorderCardReq) XXX_Unmarshal(b []byte) error

type ReorderCardResp

type ReorderCardResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedReorderCardResp

func NewPopulatedReorderCardResp(r randyCcmanService, easy bool) *ReorderCardResp

func (*ReorderCardResp) Descriptor

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

func (*ReorderCardResp) Equal

func (this *ReorderCardResp) Equal(that interface{}) bool

func (*ReorderCardResp) GetCode

func (m *ReorderCardResp) GetCode() int32

func (*ReorderCardResp) GetMessage

func (m *ReorderCardResp) GetMessage() string

func (*ReorderCardResp) GoString

func (this *ReorderCardResp) GoString() string

func (*ReorderCardResp) Marshal

func (m *ReorderCardResp) Marshal() (dAtA []byte, err error)

func (*ReorderCardResp) MarshalTo

func (m *ReorderCardResp) MarshalTo(dAtA []byte) (int, error)

func (*ReorderCardResp) MarshalToSizedBuffer

func (m *ReorderCardResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReorderCardResp) ProtoMessage

func (*ReorderCardResp) ProtoMessage()

func (*ReorderCardResp) Reset

func (m *ReorderCardResp) Reset()

func (*ReorderCardResp) Size

func (m *ReorderCardResp) Size() (n int)

func (*ReorderCardResp) String

func (m *ReorderCardResp) String() string

func (*ReorderCardResp) Unmarshal

func (m *ReorderCardResp) Unmarshal(dAtA []byte) error

func (*ReorderCardResp) VerboseEqual

func (this *ReorderCardResp) VerboseEqual(that interface{}) error

func (*ReorderCardResp) XXX_DiscardUnknown

func (m *ReorderCardResp) XXX_DiscardUnknown()

func (*ReorderCardResp) XXX_Marshal

func (m *ReorderCardResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReorderCardResp) XXX_Merge

func (m *ReorderCardResp) XXX_Merge(src proto.Message)

func (*ReorderCardResp) XXX_Size

func (m *ReorderCardResp) XXX_Size() int

func (*ReorderCardResp) XXX_Unmarshal

func (m *ReorderCardResp) XXX_Unmarshal(b []byte) error

type ReorderColumnReq

type ReorderColumnReq struct {
	ColumnID  uint32 `protobuf:"varint,1,opt,name=ColumnID,proto3" json:"ColumnID,omitempty"`
	NextOfIdx uint32 `protobuf:"varint,2,opt,name=NextOfIdx,proto3" json:"NextOfIdx,omitempty"`
}

func NewPopulatedReorderColumnReq

func NewPopulatedReorderColumnReq(r randyCcmanService, easy bool) *ReorderColumnReq

func (*ReorderColumnReq) Descriptor

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

func (*ReorderColumnReq) Equal

func (this *ReorderColumnReq) Equal(that interface{}) bool

func (*ReorderColumnReq) GetColumnID

func (m *ReorderColumnReq) GetColumnID() uint32

func (*ReorderColumnReq) GetNextOfIdx

func (m *ReorderColumnReq) GetNextOfIdx() uint32

func (*ReorderColumnReq) GoString

func (this *ReorderColumnReq) GoString() string

func (*ReorderColumnReq) Marshal

func (m *ReorderColumnReq) Marshal() (dAtA []byte, err error)

func (*ReorderColumnReq) MarshalTo

func (m *ReorderColumnReq) MarshalTo(dAtA []byte) (int, error)

func (*ReorderColumnReq) MarshalToSizedBuffer

func (m *ReorderColumnReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReorderColumnReq) ProtoMessage

func (*ReorderColumnReq) ProtoMessage()

func (*ReorderColumnReq) Reset

func (m *ReorderColumnReq) Reset()

func (*ReorderColumnReq) Size

func (m *ReorderColumnReq) Size() (n int)

func (*ReorderColumnReq) String

func (m *ReorderColumnReq) String() string

func (*ReorderColumnReq) Unmarshal

func (m *ReorderColumnReq) Unmarshal(dAtA []byte) error

func (*ReorderColumnReq) VerboseEqual

func (this *ReorderColumnReq) VerboseEqual(that interface{}) error

func (*ReorderColumnReq) XXX_DiscardUnknown

func (m *ReorderColumnReq) XXX_DiscardUnknown()

func (*ReorderColumnReq) XXX_Marshal

func (m *ReorderColumnReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReorderColumnReq) XXX_Merge

func (m *ReorderColumnReq) XXX_Merge(src proto.Message)

func (*ReorderColumnReq) XXX_Size

func (m *ReorderColumnReq) XXX_Size() int

func (*ReorderColumnReq) XXX_Unmarshal

func (m *ReorderColumnReq) XXX_Unmarshal(b []byte) error

type ReorderColumnResp

type ReorderColumnResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedReorderColumnResp

func NewPopulatedReorderColumnResp(r randyCcmanService, easy bool) *ReorderColumnResp

func (*ReorderColumnResp) Descriptor

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

func (*ReorderColumnResp) Equal

func (this *ReorderColumnResp) Equal(that interface{}) bool

func (*ReorderColumnResp) GetCode

func (m *ReorderColumnResp) GetCode() int32

func (*ReorderColumnResp) GetMessage

func (m *ReorderColumnResp) GetMessage() string

func (*ReorderColumnResp) GoString

func (this *ReorderColumnResp) GoString() string

func (*ReorderColumnResp) Marshal

func (m *ReorderColumnResp) Marshal() (dAtA []byte, err error)

func (*ReorderColumnResp) MarshalTo

func (m *ReorderColumnResp) MarshalTo(dAtA []byte) (int, error)

func (*ReorderColumnResp) MarshalToSizedBuffer

func (m *ReorderColumnResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReorderColumnResp) ProtoMessage

func (*ReorderColumnResp) ProtoMessage()

func (*ReorderColumnResp) Reset

func (m *ReorderColumnResp) Reset()

func (*ReorderColumnResp) Size

func (m *ReorderColumnResp) Size() (n int)

func (*ReorderColumnResp) String

func (m *ReorderColumnResp) String() string

func (*ReorderColumnResp) Unmarshal

func (m *ReorderColumnResp) Unmarshal(dAtA []byte) error

func (*ReorderColumnResp) VerboseEqual

func (this *ReorderColumnResp) VerboseEqual(that interface{}) error

func (*ReorderColumnResp) XXX_DiscardUnknown

func (m *ReorderColumnResp) XXX_DiscardUnknown()

func (*ReorderColumnResp) XXX_Marshal

func (m *ReorderColumnResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReorderColumnResp) XXX_Merge

func (m *ReorderColumnResp) XXX_Merge(src proto.Message)

func (*ReorderColumnResp) XXX_Size

func (m *ReorderColumnResp) XXX_Size() int

func (*ReorderColumnResp) XXX_Unmarshal

func (m *ReorderColumnResp) XXX_Unmarshal(b []byte) error

type UnimplementedCCManagerServer

type UnimplementedCCManagerServer struct {
}

UnimplementedCCManagerServer can be embedded to have forward compatible implementations.

func (*UnimplementedCCManagerServer) CreateCard

func (*UnimplementedCCManagerServer) CreateColumn

func (*UnimplementedCCManagerServer) DeleteCardByID

func (*UnimplementedCCManagerServer) DeleteColumnAndAllCardByID

func (*UnimplementedCCManagerServer) DeleteColumnByIDAndMove

func (*UnimplementedCCManagerServer) GetAllFromProjectID

func (*UnimplementedCCManagerServer) GetCardByID

func (*UnimplementedCCManagerServer) GetCardsByAssignedToID

func (*UnimplementedCCManagerServer) GetCardsByColumnID

func (*UnimplementedCCManagerServer) GetCardsByCreatorID

func (*UnimplementedCCManagerServer) GetCardsByDueDate

func (*UnimplementedCCManagerServer) GetColumnByID

func (*UnimplementedCCManagerServer) GetColumnsByProjectID

func (*UnimplementedCCManagerServer) GetColumnsByTitle

func (*UnimplementedCCManagerServer) MoveCardToCol

func (*UnimplementedCCManagerServer) ReorderCard

func (*UnimplementedCCManagerServer) ReorderColumn

func (*UnimplementedCCManagerServer) UpdateCardByID

func (*UnimplementedCCManagerServer) UpdateColumnByID

type UpdateCardByIDReq

type UpdateCardByIDReq struct {
	CardID     uint32 `protobuf:"varint,1,opt,name=CardID,proto3" json:"CardID,omitempty"`
	UpdateCard *Card  `protobuf:"bytes,2,opt,name=UpdateCard,proto3" json:"UpdateCard,omitempty"`
}

func NewPopulatedUpdateCardByIDReq

func NewPopulatedUpdateCardByIDReq(r randyCcmanService, easy bool) *UpdateCardByIDReq

func (*UpdateCardByIDReq) Descriptor

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

func (*UpdateCardByIDReq) Equal

func (this *UpdateCardByIDReq) Equal(that interface{}) bool

func (*UpdateCardByIDReq) GetCardID

func (m *UpdateCardByIDReq) GetCardID() uint32

func (*UpdateCardByIDReq) GetUpdateCard

func (m *UpdateCardByIDReq) GetUpdateCard() *Card

func (*UpdateCardByIDReq) GoString

func (this *UpdateCardByIDReq) GoString() string

func (*UpdateCardByIDReq) Marshal

func (m *UpdateCardByIDReq) Marshal() (dAtA []byte, err error)

func (*UpdateCardByIDReq) MarshalTo

func (m *UpdateCardByIDReq) MarshalTo(dAtA []byte) (int, error)

func (*UpdateCardByIDReq) MarshalToSizedBuffer

func (m *UpdateCardByIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateCardByIDReq) ProtoMessage

func (*UpdateCardByIDReq) ProtoMessage()

func (*UpdateCardByIDReq) Reset

func (m *UpdateCardByIDReq) Reset()

func (*UpdateCardByIDReq) Size

func (m *UpdateCardByIDReq) Size() (n int)

func (*UpdateCardByIDReq) String

func (m *UpdateCardByIDReq) String() string

func (*UpdateCardByIDReq) Unmarshal

func (m *UpdateCardByIDReq) Unmarshal(dAtA []byte) error

func (*UpdateCardByIDReq) VerboseEqual

func (this *UpdateCardByIDReq) VerboseEqual(that interface{}) error

func (*UpdateCardByIDReq) XXX_DiscardUnknown

func (m *UpdateCardByIDReq) XXX_DiscardUnknown()

func (*UpdateCardByIDReq) XXX_Marshal

func (m *UpdateCardByIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateCardByIDReq) XXX_Merge

func (m *UpdateCardByIDReq) XXX_Merge(src proto.Message)

func (*UpdateCardByIDReq) XXX_Size

func (m *UpdateCardByIDReq) XXX_Size() int

func (*UpdateCardByIDReq) XXX_Unmarshal

func (m *UpdateCardByIDReq) XXX_Unmarshal(b []byte) error

type UpdateCardByIDResp

type UpdateCardByIDResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedUpdateCardByIDResp

func NewPopulatedUpdateCardByIDResp(r randyCcmanService, easy bool) *UpdateCardByIDResp

func (*UpdateCardByIDResp) Descriptor

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

func (*UpdateCardByIDResp) Equal

func (this *UpdateCardByIDResp) Equal(that interface{}) bool

func (*UpdateCardByIDResp) GetCode

func (m *UpdateCardByIDResp) GetCode() int32

func (*UpdateCardByIDResp) GetMessage

func (m *UpdateCardByIDResp) GetMessage() string

func (*UpdateCardByIDResp) GoString

func (this *UpdateCardByIDResp) GoString() string

func (*UpdateCardByIDResp) Marshal

func (m *UpdateCardByIDResp) Marshal() (dAtA []byte, err error)

func (*UpdateCardByIDResp) MarshalTo

func (m *UpdateCardByIDResp) MarshalTo(dAtA []byte) (int, error)

func (*UpdateCardByIDResp) MarshalToSizedBuffer

func (m *UpdateCardByIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateCardByIDResp) ProtoMessage

func (*UpdateCardByIDResp) ProtoMessage()

func (*UpdateCardByIDResp) Reset

func (m *UpdateCardByIDResp) Reset()

func (*UpdateCardByIDResp) Size

func (m *UpdateCardByIDResp) Size() (n int)

func (*UpdateCardByIDResp) String

func (m *UpdateCardByIDResp) String() string

func (*UpdateCardByIDResp) Unmarshal

func (m *UpdateCardByIDResp) Unmarshal(dAtA []byte) error

func (*UpdateCardByIDResp) VerboseEqual

func (this *UpdateCardByIDResp) VerboseEqual(that interface{}) error

func (*UpdateCardByIDResp) XXX_DiscardUnknown

func (m *UpdateCardByIDResp) XXX_DiscardUnknown()

func (*UpdateCardByIDResp) XXX_Marshal

func (m *UpdateCardByIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateCardByIDResp) XXX_Merge

func (m *UpdateCardByIDResp) XXX_Merge(src proto.Message)

func (*UpdateCardByIDResp) XXX_Size

func (m *UpdateCardByIDResp) XXX_Size() int

func (*UpdateCardByIDResp) XXX_Unmarshal

func (m *UpdateCardByIDResp) XXX_Unmarshal(b []byte) error

type UpdateColumnByIDReq

type UpdateColumnByIDReq struct {
	ColumnID uint32  `protobuf:"varint,1,opt,name=ColumnID,proto3" json:"ColumnID,omitempty"`
	Column   *Column `protobuf:"bytes,2,opt,name=Column,proto3" json:"Column,omitempty"`
}

func NewPopulatedUpdateColumnByIDReq

func NewPopulatedUpdateColumnByIDReq(r randyCcmanService, easy bool) *UpdateColumnByIDReq

func (*UpdateColumnByIDReq) Descriptor

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

func (*UpdateColumnByIDReq) Equal

func (this *UpdateColumnByIDReq) Equal(that interface{}) bool

func (*UpdateColumnByIDReq) GetColumn

func (m *UpdateColumnByIDReq) GetColumn() *Column

func (*UpdateColumnByIDReq) GetColumnID

func (m *UpdateColumnByIDReq) GetColumnID() uint32

func (*UpdateColumnByIDReq) GoString

func (this *UpdateColumnByIDReq) GoString() string

func (*UpdateColumnByIDReq) Marshal

func (m *UpdateColumnByIDReq) Marshal() (dAtA []byte, err error)

func (*UpdateColumnByIDReq) MarshalTo

func (m *UpdateColumnByIDReq) MarshalTo(dAtA []byte) (int, error)

func (*UpdateColumnByIDReq) MarshalToSizedBuffer

func (m *UpdateColumnByIDReq) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateColumnByIDReq) ProtoMessage

func (*UpdateColumnByIDReq) ProtoMessage()

func (*UpdateColumnByIDReq) Reset

func (m *UpdateColumnByIDReq) Reset()

func (*UpdateColumnByIDReq) Size

func (m *UpdateColumnByIDReq) Size() (n int)

func (*UpdateColumnByIDReq) String

func (m *UpdateColumnByIDReq) String() string

func (*UpdateColumnByIDReq) Unmarshal

func (m *UpdateColumnByIDReq) Unmarshal(dAtA []byte) error

func (*UpdateColumnByIDReq) VerboseEqual

func (this *UpdateColumnByIDReq) VerboseEqual(that interface{}) error

func (*UpdateColumnByIDReq) XXX_DiscardUnknown

func (m *UpdateColumnByIDReq) XXX_DiscardUnknown()

func (*UpdateColumnByIDReq) XXX_Marshal

func (m *UpdateColumnByIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateColumnByIDReq) XXX_Merge

func (m *UpdateColumnByIDReq) XXX_Merge(src proto.Message)

func (*UpdateColumnByIDReq) XXX_Size

func (m *UpdateColumnByIDReq) XXX_Size() int

func (*UpdateColumnByIDReq) XXX_Unmarshal

func (m *UpdateColumnByIDReq) XXX_Unmarshal(b []byte) error

type UpdateColumnByIDResp

type UpdateColumnByIDResp struct {
	Code    int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
}

func NewPopulatedUpdateColumnByIDResp

func NewPopulatedUpdateColumnByIDResp(r randyCcmanService, easy bool) *UpdateColumnByIDResp

func (*UpdateColumnByIDResp) Descriptor

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

func (*UpdateColumnByIDResp) Equal

func (this *UpdateColumnByIDResp) Equal(that interface{}) bool

func (*UpdateColumnByIDResp) GetCode

func (m *UpdateColumnByIDResp) GetCode() int32

func (*UpdateColumnByIDResp) GetMessage

func (m *UpdateColumnByIDResp) GetMessage() string

func (*UpdateColumnByIDResp) GoString

func (this *UpdateColumnByIDResp) GoString() string

func (*UpdateColumnByIDResp) Marshal

func (m *UpdateColumnByIDResp) Marshal() (dAtA []byte, err error)

func (*UpdateColumnByIDResp) MarshalTo

func (m *UpdateColumnByIDResp) MarshalTo(dAtA []byte) (int, error)

func (*UpdateColumnByIDResp) MarshalToSizedBuffer

func (m *UpdateColumnByIDResp) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateColumnByIDResp) ProtoMessage

func (*UpdateColumnByIDResp) ProtoMessage()

func (*UpdateColumnByIDResp) Reset

func (m *UpdateColumnByIDResp) Reset()

func (*UpdateColumnByIDResp) Size

func (m *UpdateColumnByIDResp) Size() (n int)

func (*UpdateColumnByIDResp) String

func (m *UpdateColumnByIDResp) String() string

func (*UpdateColumnByIDResp) Unmarshal

func (m *UpdateColumnByIDResp) Unmarshal(dAtA []byte) error

func (*UpdateColumnByIDResp) VerboseEqual

func (this *UpdateColumnByIDResp) VerboseEqual(that interface{}) error

func (*UpdateColumnByIDResp) XXX_DiscardUnknown

func (m *UpdateColumnByIDResp) XXX_DiscardUnknown()

func (*UpdateColumnByIDResp) XXX_Marshal

func (m *UpdateColumnByIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateColumnByIDResp) XXX_Merge

func (m *UpdateColumnByIDResp) XXX_Merge(src proto.Message)

func (*UpdateColumnByIDResp) XXX_Size

func (m *UpdateColumnByIDResp) XXX_Size() int

func (*UpdateColumnByIDResp) XXX_Unmarshal

func (m *UpdateColumnByIDResp) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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