181 lines
6.8 KiB
Go
181 lines
6.8 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: emoji_reaction.proto
|
|
|
|
package protobuf
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type EmojiReaction_Type int32
|
|
|
|
const (
|
|
EmojiReaction_UNKNOWN_EMOJI_REACTION_TYPE EmojiReaction_Type = 0
|
|
EmojiReaction_LOVE EmojiReaction_Type = 1
|
|
EmojiReaction_THUMBS_UP EmojiReaction_Type = 2
|
|
EmojiReaction_THUMBS_DOWN EmojiReaction_Type = 3
|
|
EmojiReaction_LAUGH EmojiReaction_Type = 4
|
|
EmojiReaction_SAD EmojiReaction_Type = 5
|
|
EmojiReaction_ANGRY EmojiReaction_Type = 6
|
|
)
|
|
|
|
var EmojiReaction_Type_name = map[int32]string{
|
|
0: "UNKNOWN_EMOJI_REACTION_TYPE",
|
|
1: "LOVE",
|
|
2: "THUMBS_UP",
|
|
3: "THUMBS_DOWN",
|
|
4: "LAUGH",
|
|
5: "SAD",
|
|
6: "ANGRY",
|
|
}
|
|
|
|
var EmojiReaction_Type_value = map[string]int32{
|
|
"UNKNOWN_EMOJI_REACTION_TYPE": 0,
|
|
"LOVE": 1,
|
|
"THUMBS_UP": 2,
|
|
"THUMBS_DOWN": 3,
|
|
"LAUGH": 4,
|
|
"SAD": 5,
|
|
"ANGRY": 6,
|
|
}
|
|
|
|
func (x EmojiReaction_Type) String() string {
|
|
return proto.EnumName(EmojiReaction_Type_name, int32(x))
|
|
}
|
|
|
|
func (EmojiReaction_Type) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_0a088c907bbc7ed6, []int{0, 0}
|
|
}
|
|
|
|
type EmojiReaction struct {
|
|
// clock Lamport timestamp of the chat message
|
|
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
|
|
// chat_id the ID of the chat the message belongs to, for query efficiency the chat_id is stored in the db even though the
|
|
// target message also stores the chat_id
|
|
ChatId string `protobuf:"bytes,2,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
|
|
// message_id the ID of the target message that the user wishes to react to
|
|
MessageId string `protobuf:"bytes,3,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
|
|
// message_type is (somewhat confusingly) the ID of the type of chat the message belongs to
|
|
MessageType MessageType `protobuf:"varint,4,opt,name=message_type,json=messageType,proto3,enum=protobuf.MessageType" json:"message_type,omitempty"`
|
|
// type the ID of the emoji the user wishes to react with
|
|
Type EmojiReaction_Type `protobuf:"varint,5,opt,name=type,proto3,enum=protobuf.EmojiReaction_Type" json:"type,omitempty"`
|
|
// whether this is a rectraction of a previously sent emoji
|
|
Retracted bool `protobuf:"varint,6,opt,name=retracted,proto3" json:"retracted,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *EmojiReaction) Reset() { *m = EmojiReaction{} }
|
|
func (m *EmojiReaction) String() string { return proto.CompactTextString(m) }
|
|
func (*EmojiReaction) ProtoMessage() {}
|
|
func (*EmojiReaction) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0a088c907bbc7ed6, []int{0}
|
|
}
|
|
|
|
func (m *EmojiReaction) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_EmojiReaction.Unmarshal(m, b)
|
|
}
|
|
func (m *EmojiReaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_EmojiReaction.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *EmojiReaction) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_EmojiReaction.Merge(m, src)
|
|
}
|
|
func (m *EmojiReaction) XXX_Size() int {
|
|
return xxx_messageInfo_EmojiReaction.Size(m)
|
|
}
|
|
func (m *EmojiReaction) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_EmojiReaction.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_EmojiReaction proto.InternalMessageInfo
|
|
|
|
func (m *EmojiReaction) GetClock() uint64 {
|
|
if m != nil {
|
|
return m.Clock
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *EmojiReaction) GetChatId() string {
|
|
if m != nil {
|
|
return m.ChatId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *EmojiReaction) GetMessageId() string {
|
|
if m != nil {
|
|
return m.MessageId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *EmojiReaction) GetMessageType() MessageType {
|
|
if m != nil {
|
|
return m.MessageType
|
|
}
|
|
return MessageType_UNKNOWN_MESSAGE_TYPE
|
|
}
|
|
|
|
func (m *EmojiReaction) GetType() EmojiReaction_Type {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return EmojiReaction_UNKNOWN_EMOJI_REACTION_TYPE
|
|
}
|
|
|
|
func (m *EmojiReaction) GetRetracted() bool {
|
|
if m != nil {
|
|
return m.Retracted
|
|
}
|
|
return false
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("protobuf.EmojiReaction_Type", EmojiReaction_Type_name, EmojiReaction_Type_value)
|
|
proto.RegisterType((*EmojiReaction)(nil), "protobuf.EmojiReaction")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("emoji_reaction.proto", fileDescriptor_0a088c907bbc7ed6)
|
|
}
|
|
|
|
var fileDescriptor_0a088c907bbc7ed6 = []byte{
|
|
// 305 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x8e, 0xdf, 0x4f, 0x82, 0x50,
|
|
0x14, 0xc7, 0x43, 0x01, 0xe5, 0x98, 0x75, 0x77, 0x66, 0x8b, 0x95, 0x2d, 0xe6, 0x13, 0x4f, 0xac,
|
|
0xd5, 0x4b, 0xaf, 0x94, 0x4c, 0x29, 0x05, 0x77, 0x85, 0x9c, 0x4f, 0x0c, 0xe1, 0x56, 0x56, 0x08,
|
|
0xc3, 0xeb, 0x83, 0x7f, 0x6a, 0xff, 0x4d, 0xe3, 0xaa, 0x73, 0x3d, 0x9d, 0x7d, 0x7f, 0x7c, 0xce,
|
|
0xbe, 0xd0, 0x61, 0x59, 0xfe, 0xb5, 0x8c, 0x4a, 0x16, 0x27, 0x7c, 0x99, 0xaf, 0xac, 0xa2, 0xcc,
|
|
0x79, 0x8e, 0x4d, 0x71, 0x16, 0x9b, 0xf7, 0xab, 0x16, 0x5b, 0x6d, 0xb2, 0xf5, 0xce, 0xee, 0xfd,
|
|
0xd6, 0xa0, 0xed, 0x54, 0x7d, 0xba, 0xaf, 0x63, 0x07, 0x94, 0xe4, 0x27, 0x4f, 0xbe, 0x75, 0xc9,
|
|
0x90, 0x4c, 0x99, 0xee, 0x04, 0x5e, 0x42, 0x23, 0xf9, 0x8c, 0x79, 0xb4, 0x4c, 0xf5, 0x9a, 0x21,
|
|
0x99, 0x1a, 0x55, 0x2b, 0xe9, 0xa6, 0x78, 0x03, 0x90, 0xb1, 0xf5, 0x3a, 0xfe, 0x60, 0x55, 0x56,
|
|
0x17, 0x99, 0xb6, 0x77, 0xdc, 0x14, 0x1f, 0xe1, 0xf4, 0x10, 0xf3, 0x6d, 0xc1, 0x74, 0xd9, 0x90,
|
|
0xcc, 0xb3, 0xfb, 0x0b, 0xeb, 0xb0, 0xc6, 0x1a, 0xef, 0xd2, 0x60, 0x5b, 0x30, 0xda, 0xca, 0x8e,
|
|
0x02, 0xef, 0x40, 0x16, 0x84, 0x22, 0x88, 0xee, 0x91, 0xf8, 0x37, 0xd7, 0x12, 0xa0, 0x68, 0x62,
|
|
0x17, 0xb4, 0x92, 0xf1, 0x32, 0x4e, 0x38, 0x4b, 0x75, 0xd5, 0x90, 0xcc, 0x26, 0x3d, 0x1a, 0xbd,
|
|
0x02, 0x64, 0xf1, 0xf7, 0x16, 0xae, 0x43, 0xef, 0xd5, 0xf3, 0x67, 0x5e, 0xe4, 0x8c, 0xfd, 0x17,
|
|
0x37, 0xa2, 0x8e, 0xfd, 0x1c, 0xb8, 0xbe, 0x17, 0x05, 0xf3, 0x89, 0x43, 0x4e, 0xb0, 0x09, 0xf2,
|
|
0xc8, 0x7f, 0x73, 0x88, 0x84, 0x6d, 0xd0, 0x82, 0x61, 0x38, 0x7e, 0x9a, 0x46, 0xe1, 0x84, 0xd4,
|
|
0xf0, 0x1c, 0x5a, 0x7b, 0xd9, 0xf7, 0x67, 0x1e, 0xa9, 0xa3, 0x06, 0xca, 0xc8, 0x0e, 0x07, 0x43,
|
|
0x22, 0x63, 0x03, 0xea, 0x53, 0xbb, 0x4f, 0x94, 0xca, 0xb3, 0xbd, 0x01, 0x9d, 0x13, 0x75, 0xa1,
|
|
0x8a, 0xc9, 0x0f, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x03, 0x65, 0x6e, 0x92, 0x91, 0x01, 0x00,
|
|
0x00,
|
|
}
|