Documentation ¶
Index ¶
- Variables
- type Date
- type IdentityKind
- func (IdentityKind) Descriptor() protoreflect.EnumDescriptor
- func (x IdentityKind) Enum() *IdentityKind
- func (IdentityKind) EnumDescriptor() ([]byte, []int)deprecated
- func (x IdentityKind) Number() protoreflect.EnumNumber
- func (x IdentityKind) String() string
- func (IdentityKind) Type() protoreflect.EnumType
- type Month
- type PageCursor
- func (*PageCursor) Descriptor() ([]byte, []int)deprecated
- func (x *PageCursor) GetDir() PageDir
- func (x *PageCursor) GetLastId() string
- func (x *PageCursor) GetLimit() uint32
- func (*PageCursor) ProtoMessage()
- func (x *PageCursor) ProtoReflect() protoreflect.Message
- func (x *PageCursor) Reset()
- func (x *PageCursor) String() string
- type PageDir
- type PageInfo
- func (*PageInfo) Descriptor() ([]byte, []int)deprecated
- func (x *PageInfo) GetFirstId() string
- func (x *PageInfo) GetHasNext() bool
- func (x *PageInfo) GetHasPrev() bool
- func (x *PageInfo) GetLastId() string
- func (x *PageInfo) GetLength() uint32
- func (*PageInfo) ProtoMessage()
- func (x *PageInfo) ProtoReflect() protoreflect.Message
- func (x *PageInfo) Reset()
- func (x *PageInfo) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var ( PageDir_name = map[int32]string{ 0: "PAGE_DIR_FORWARD", 1: "PAGE_DIR_BACKWARD", } PageDir_value = map[string]int32{ "PAGE_DIR_FORWARD": 0, "PAGE_DIR_BACKWARD": 1, } )
Enum value maps for PageDir.
View Source
var ( Month_name = map[int32]string{ 0: "MONTH_UNSPECIFIED", 1: "MONTH_JANUARY", 2: "MONTH_FEBRUARY", 3: "MONTH_MARCH", 4: "MONTH_APRIL", 5: "MONTH_MAY", 6: "MONTH_JUNE", 7: "MONTH_JULY", 8: "MONTH_AUGUST", 9: "MONTH_SEPTEMBER", 10: "MONTH_OCTOBER", 11: "MONTH_NOVEMBER", 12: "MONTH_DECEMBER", } Month_value = map[string]int32{ "MONTH_UNSPECIFIED": 0, "MONTH_JANUARY": 1, "MONTH_FEBRUARY": 2, "MONTH_MARCH": 3, "MONTH_APRIL": 4, "MONTH_MAY": 5, "MONTH_JUNE": 6, "MONTH_JULY": 7, "MONTH_AUGUST": 8, "MONTH_SEPTEMBER": 9, "MONTH_OCTOBER": 10, "MONTH_NOVEMBER": 11, "MONTH_DECEMBER": 12, } )
Enum value maps for Month.
View Source
var ( IdentityKind_name = map[int32]string{ 0: "IDENTITY_KIND_USER", 1: "IDENTITY_KIND_APP", } IdentityKind_value = map[string]int32{ "IDENTITY_KIND_USER": 0, "IDENTITY_KIND_APP": 1, } )
Enum value maps for IdentityKind.
View Source
var File_picnic_protobuf_cursor_proto protoreflect.FileDescriptor
View Source
var File_picnic_protobuf_date_proto protoreflect.FileDescriptor
View Source
var File_picnic_protobuf_identity_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Date ¶ added in v0.2.179
type Date struct { Year int32 `protobuf:"varint,1,opt,name=year,proto3" json:"year,omitempty"` Month Month `protobuf:"varint,2,opt,name=month,proto3,enum=picnic.protobuf.Month" json:"month,omitempty"` Day int32 `protobuf:"varint,3,opt,name=day,proto3" json:"day,omitempty"` // contains filtered or unexported fields }
func (*Date) Descriptor
deprecated
added in
v0.2.179
func (*Date) ProtoMessage ¶ added in v0.2.179
func (*Date) ProtoMessage()
func (*Date) ProtoReflect ¶ added in v0.2.179
func (x *Date) ProtoReflect() protoreflect.Message
type IdentityKind ¶
type IdentityKind int32
buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX
const ( IdentityKind_IDENTITY_KIND_USER IdentityKind = 0 IdentityKind_IDENTITY_KIND_APP IdentityKind = 1 )
func (IdentityKind) Descriptor ¶
func (IdentityKind) Descriptor() protoreflect.EnumDescriptor
func (IdentityKind) Enum ¶
func (x IdentityKind) Enum() *IdentityKind
func (IdentityKind) EnumDescriptor
deprecated
func (IdentityKind) EnumDescriptor() ([]byte, []int)
Deprecated: Use IdentityKind.Descriptor instead.
func (IdentityKind) Number ¶
func (x IdentityKind) Number() protoreflect.EnumNumber
func (IdentityKind) String ¶
func (x IdentityKind) String() string
func (IdentityKind) Type ¶
func (IdentityKind) Type() protoreflect.EnumType
type Month ¶ added in v0.2.179
type Month int32
const ( Month_MONTH_UNSPECIFIED Month = 0 Month_MONTH_JANUARY Month = 1 Month_MONTH_FEBRUARY Month = 2 Month_MONTH_MARCH Month = 3 Month_MONTH_APRIL Month = 4 Month_MONTH_MAY Month = 5 Month_MONTH_JUNE Month = 6 Month_MONTH_JULY Month = 7 Month_MONTH_AUGUST Month = 8 Month_MONTH_SEPTEMBER Month = 9 Month_MONTH_OCTOBER Month = 10 Month_MONTH_NOVEMBER Month = 11 Month_MONTH_DECEMBER Month = 12 )
func (Month) Descriptor ¶ added in v0.2.179
func (Month) Descriptor() protoreflect.EnumDescriptor
func (Month) EnumDescriptor
deprecated
added in
v0.2.179
func (Month) Number ¶ added in v0.2.179
func (x Month) Number() protoreflect.EnumNumber
func (Month) Type ¶ added in v0.2.179
func (Month) Type() protoreflect.EnumType
type PageCursor ¶
type PageCursor struct { LastId string `protobuf:"bytes,1,opt,name=last_id,json=lastId,proto3" json:"last_id,omitempty"` Limit uint32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"` Dir PageDir `protobuf:"varint,3,opt,name=dir,proto3,enum=picnic.protobuf.PageDir" json:"dir,omitempty"` // contains filtered or unexported fields }
func (*PageCursor) Descriptor
deprecated
func (*PageCursor) Descriptor() ([]byte, []int)
Deprecated: Use PageCursor.ProtoReflect.Descriptor instead.
func (*PageCursor) GetDir ¶
func (x *PageCursor) GetDir() PageDir
func (*PageCursor) GetLastId ¶
func (x *PageCursor) GetLastId() string
func (*PageCursor) GetLimit ¶
func (x *PageCursor) GetLimit() uint32
func (*PageCursor) ProtoMessage ¶
func (*PageCursor) ProtoMessage()
func (*PageCursor) ProtoReflect ¶
func (x *PageCursor) ProtoReflect() protoreflect.Message
func (*PageCursor) Reset ¶
func (x *PageCursor) Reset()
func (*PageCursor) String ¶
func (x *PageCursor) String() string
type PageDir ¶
type PageDir int32
buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX
func (PageDir) Descriptor ¶
func (PageDir) Descriptor() protoreflect.EnumDescriptor
func (PageDir) EnumDescriptor
deprecated
func (PageDir) Number ¶
func (x PageDir) Number() protoreflect.EnumNumber
func (PageDir) Type ¶
func (PageDir) Type() protoreflect.EnumType
type PageInfo ¶
type PageInfo struct { FirstId *string `protobuf:"bytes,1,opt,name=first_id,json=firstId,proto3,oneof" json:"first_id,omitempty"` LastId *string `protobuf:"bytes,2,opt,name=last_id,json=lastId,proto3,oneof" json:"last_id,omitempty"` HasPrev bool `protobuf:"varint,3,opt,name=has_prev,json=hasPrev,proto3" json:"has_prev,omitempty"` HasNext bool `protobuf:"varint,4,opt,name=has_next,json=hasNext,proto3" json:"has_next,omitempty"` Length uint32 `protobuf:"varint,5,opt,name=length,proto3" json:"length,omitempty"` // contains filtered or unexported fields }
func (*PageInfo) Descriptor
deprecated
func (*PageInfo) GetFirstId ¶
func (*PageInfo) GetHasNext ¶
func (*PageInfo) GetHasPrev ¶
func (*PageInfo) ProtoMessage ¶
func (*PageInfo) ProtoMessage()
func (*PageInfo) ProtoReflect ¶
func (x *PageInfo) ProtoReflect() protoreflect.Message
Click to show internal directories.
Click to hide internal directories.