2023-02-22 13:54:23 +00:00
|
|
|
//COOPGO Agenda gRPC service definition
|
|
|
|
|
2022-09-05 05:27:52 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// versions:
|
2023-09-06 11:34:43 +00:00
|
|
|
// protoc-gen-go v1.31.0
|
2023-02-01 08:58:37 +00:00
|
|
|
// protoc v3.12.4
|
2022-09-05 05:27:52 +00:00
|
|
|
// source: agenda.proto
|
|
|
|
|
|
|
|
package grpcapi
|
|
|
|
|
|
|
|
import (
|
2023-02-01 08:58:37 +00:00
|
|
|
_struct "github.com/golang/protobuf/ptypes/struct"
|
|
|
|
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
2022-09-05 05:27:52 +00:00
|
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
|
reflect "reflect"
|
|
|
|
sync "sync"
|
|
|
|
)
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
const (
|
|
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
|
|
)
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-15 09:14:06 +00:00
|
|
|
type CreateEventRequest struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Event *Event `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *CreateEventRequest) Reset() {
|
|
|
|
*x = CreateEventRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[0]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *CreateEventRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*CreateEventRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *CreateEventRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[0]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use CreateEventRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*CreateEventRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{0}
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *CreateEventRequest) GetEvent() *Event {
|
|
|
|
if x != nil {
|
|
|
|
return x.Event
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateEventResponse struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Event *Event `protobuf:"bytes,2,opt,name=event,proto3" json:"event,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *CreateEventResponse) Reset() {
|
|
|
|
*x = CreateEventResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[1]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *CreateEventResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*CreateEventResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *CreateEventResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[1]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use CreateEventResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*CreateEventResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{1}
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *CreateEventResponse) GetEvent() *Event {
|
|
|
|
if x != nil {
|
|
|
|
return x.Event
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetEventRequest struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventRequest) Reset() {
|
|
|
|
*x = GetEventRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[2]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *GetEventRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*GetEventRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetEventRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[2]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use GetEventRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetEventRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{2}
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventRequest) GetId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Id
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetEventResponse struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Event *Event `protobuf:"bytes,4,opt,name=event,proto3" json:"event,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventResponse) Reset() {
|
|
|
|
*x = GetEventResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[3]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *GetEventResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*GetEventResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetEventResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[3]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use GetEventResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetEventResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{3}
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventResponse) GetEvent() *Event {
|
|
|
|
if x != nil {
|
|
|
|
return x.Event
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteEventRequest struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteEventRequest) Reset() {
|
|
|
|
*x = DeleteEventRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[4]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *DeleteEventRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*DeleteEventRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *DeleteEventRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[4]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use DeleteEventRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DeleteEventRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{4}
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteEventRequest) GetId() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Id
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteEventResponse struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Ok bool `protobuf:"varint,6,opt,name=ok,proto3" json:"ok,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteEventResponse) Reset() {
|
|
|
|
*x = DeleteEventResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[5]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *DeleteEventResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*DeleteEventResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *DeleteEventResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[5]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use DeleteEventResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DeleteEventResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{5}
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteEventResponse) GetOk() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Ok
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetEventsRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-02-01 08:58:37 +00:00
|
|
|
Namespaces []string `protobuf:"bytes,10,rep,name=namespaces,proto3" json:"namespaces,omitempty"`
|
|
|
|
Mindate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=mindate,proto3" json:"mindate,omitempty"`
|
|
|
|
Maxdate *timestamp.Timestamp `protobuf:"bytes,12,opt,name=maxdate,proto3" json:"maxdate,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventsRequest) Reset() {
|
|
|
|
*x = GetEventsRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[6]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventsRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*GetEventsRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetEventsRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[6]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use GetEventsRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetEventsRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{6}
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventsRequest) GetNamespaces() []string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Namespaces
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-02-01 08:58:37 +00:00
|
|
|
func (x *GetEventsRequest) GetMindate() *timestamp.Timestamp {
|
2022-09-05 05:27:52 +00:00
|
|
|
if x != nil {
|
|
|
|
return x.Mindate
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-02-01 08:58:37 +00:00
|
|
|
func (x *GetEventsRequest) GetMaxdate() *timestamp.Timestamp {
|
2022-09-05 05:27:52 +00:00
|
|
|
if x != nil {
|
|
|
|
return x.Maxdate
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetEventsResponse struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Events []*Event `protobuf:"bytes,13,rep,name=events,proto3" json:"events,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventsResponse) Reset() {
|
|
|
|
*x = GetEventsResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[7]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *GetEventsResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*GetEventsResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetEventsResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[7]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use GetEventsResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetEventsResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{7}
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *GetEventsResponse) GetEvents() []*Event {
|
|
|
|
if x != nil {
|
|
|
|
return x.Events
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type SubscribeEventRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-02-01 08:58:37 +00:00
|
|
|
Subscriber string `protobuf:"bytes,20,opt,name=subscriber,proto3" json:"subscriber,omitempty"`
|
|
|
|
Eventid string `protobuf:"bytes,21,opt,name=eventid,proto3" json:"eventid,omitempty"`
|
|
|
|
Data *_struct.Struct `protobuf:"bytes,22,opt,name=data,proto3" json:"data,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *SubscribeEventRequest) Reset() {
|
|
|
|
*x = SubscribeEventRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[8]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *SubscribeEventRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*SubscribeEventRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *SubscribeEventRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[8]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use SubscribeEventRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*SubscribeEventRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{8}
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *SubscribeEventRequest) GetSubscriber() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Subscriber
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *SubscribeEventRequest) GetEventid() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Eventid
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-02-01 08:58:37 +00:00
|
|
|
func (x *SubscribeEventRequest) GetData() *_struct.Struct {
|
2022-12-05 16:21:12 +00:00
|
|
|
if x != nil {
|
|
|
|
return x.Data
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-05 05:27:52 +00:00
|
|
|
type SubscribeEventResponse struct {
|
2023-02-22 13:54:23 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Ok bool `protobuf:"varint,29,opt,name=ok,proto3" json:"ok,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *SubscribeEventResponse) Reset() {
|
|
|
|
*x = SubscribeEventResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[9]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SubscribeEventResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*SubscribeEventResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *SubscribeEventResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[9]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use SubscribeEventResponse.ProtoReflect.Descriptor instead.
|
2023-02-15 09:14:06 +00:00
|
|
|
func (*SubscribeEventResponse) Descriptor() ([]byte, []int) {
|
2023-02-22 13:54:23 +00:00
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{9}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *SubscribeEventResponse) GetOk() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Ok
|
|
|
|
}
|
|
|
|
return false
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
type UnsubscribeEventRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Subscriber string `protobuf:"bytes,30,opt,name=subscriber,proto3" json:"subscriber,omitempty"`
|
|
|
|
Eventid string `protobuf:"bytes,31,opt,name=eventid,proto3" json:"eventid,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *UnsubscribeEventRequest) Reset() {
|
|
|
|
*x = UnsubscribeEventRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[10]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *UnsubscribeEventRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*UnsubscribeEventRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *UnsubscribeEventRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[10]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use UnsubscribeEventRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UnsubscribeEventRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{10}
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *UnsubscribeEventRequest) GetSubscriber() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Subscriber
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
return ""
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *UnsubscribeEventRequest) GetEventid() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Eventid
|
|
|
|
}
|
|
|
|
return ""
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
type UnsubscribeEventResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Ok bool `protobuf:"varint,39,opt,name=ok,proto3" json:"ok,omitempty"`
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *UnsubscribeEventResponse) Reset() {
|
|
|
|
*x = UnsubscribeEventResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[11]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *UnsubscribeEventResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (*UnsubscribeEventResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *UnsubscribeEventResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[11]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
// Deprecated: Use UnsubscribeEventResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UnsubscribeEventResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{11}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *UnsubscribeEventResponse) GetOk() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Ok
|
|
|
|
}
|
|
|
|
return false
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
type DeleteSubscriptionRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Subscriber string `protobuf:"bytes,32,opt,name=subscriber,proto3" json:"subscriber,omitempty"`
|
|
|
|
Eventid string `protobuf:"bytes,33,opt,name=eventid,proto3" json:"eventid,omitempty"`
|
|
|
|
Data *_struct.Struct `protobuf:"bytes,34,opt,name=data,proto3" json:"data,omitempty"`
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteSubscriptionRequest) Reset() {
|
|
|
|
*x = DeleteSubscriptionRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[12]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteSubscriptionRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*DeleteSubscriptionRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *DeleteSubscriptionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[12]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
return mi.MessageOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use DeleteSubscriptionRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DeleteSubscriptionRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{12}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteSubscriptionRequest) GetSubscriber() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Subscriber
|
|
|
|
}
|
|
|
|
return ""
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteSubscriptionRequest) GetEventid() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Eventid
|
|
|
|
}
|
|
|
|
return ""
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *DeleteSubscriptionRequest) GetData() *_struct.Struct {
|
|
|
|
if x != nil {
|
|
|
|
return x.Data
|
|
|
|
}
|
|
|
|
return nil
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
type DeleteSubscriptionResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Ok bool `protobuf:"varint,41,opt,name=ok,proto3" json:"ok,omitempty"`
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *DeleteSubscriptionResponse) Reset() {
|
|
|
|
*x = DeleteSubscriptionResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[13]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
|
|
|
func (x *DeleteSubscriptionResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*DeleteSubscriptionResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *DeleteSubscriptionResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[13]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
// Deprecated: Use DeleteSubscriptionResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DeleteSubscriptionResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{13}
|
|
|
|
}
|
2023-02-15 09:14:06 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func (x *DeleteSubscriptionResponse) GetOk() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Ok
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-02-01 08:58:37 +00:00
|
|
|
type UpdateEventRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Event *Event `protobuf:"bytes,52,opt,name=event,proto3" json:"event,omitempty"`
|
2023-02-01 08:58:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UpdateEventRequest) Reset() {
|
|
|
|
*x = UpdateEventRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-02-22 13:54:23 +00:00
|
|
|
mi := &file_agenda_proto_msgTypes[14]
|
2023-02-01 08:58:37 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UpdateEventRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*UpdateEventRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *UpdateEventRequest) ProtoReflect() protoreflect.Message {
|
2023-02-22 13:54:23 +00:00
|
|
|
mi := &file_agenda_proto_msgTypes[14]
|
2023-02-01 08:58:37 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateEventRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UpdateEventRequest) Descriptor() ([]byte, []int) {
|
2023-02-22 13:54:23 +00:00
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{14}
|
2023-02-01 08:58:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UpdateEventRequest) GetEvent() *Event {
|
|
|
|
if x != nil {
|
|
|
|
return x.Event
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type UpdateEventResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
Event *Event `protobuf:"bytes,53,opt,name=event,proto3" json:"event,omitempty"`
|
2023-02-01 08:58:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UpdateEventResponse) Reset() {
|
|
|
|
*x = UpdateEventResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-02-22 13:54:23 +00:00
|
|
|
mi := &file_agenda_proto_msgTypes[15]
|
2023-02-01 08:58:37 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UpdateEventResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*UpdateEventResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *UpdateEventResponse) ProtoReflect() protoreflect.Message {
|
2023-02-22 13:54:23 +00:00
|
|
|
mi := &file_agenda_proto_msgTypes[15]
|
2023-02-01 08:58:37 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateEventResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UpdateEventResponse) Descriptor() ([]byte, []int) {
|
2023-02-22 13:54:23 +00:00
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{15}
|
2023-02-01 08:58:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UpdateEventResponse) GetEvent() *Event {
|
|
|
|
if x != nil {
|
|
|
|
return x.Event
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-09-06 11:34:43 +00:00
|
|
|
type GetSubscriptionByUserRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Subscriber string `protobuf:"bytes,54,opt,name=subscriber,proto3" json:"subscriber,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserRequest) Reset() {
|
|
|
|
*x = GetSubscriptionByUserRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[16]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*GetSubscriptionByUserRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[16]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use GetSubscriptionByUserRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetSubscriptionByUserRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{16}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserRequest) GetSubscriber() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Subscriber
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetSubscriptionByUserResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Subscription []*Subscription `protobuf:"bytes,55,rep,name=subscription,proto3" json:"subscription,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserResponse) Reset() {
|
|
|
|
*x = GetSubscriptionByUserResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_agenda_proto_msgTypes[17]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*GetSubscriptionByUserResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_agenda_proto_msgTypes[17]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use GetSubscriptionByUserResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetSubscriptionByUserResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_agenda_proto_rawDescGZIP(), []int{17}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *GetSubscriptionByUserResponse) GetSubscription() []*Subscription {
|
|
|
|
if x != nil {
|
|
|
|
return x.Subscription
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-05 05:27:52 +00:00
|
|
|
var File_agenda_proto protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
var file_agenda_proto_rawDesc = []byte{
|
|
|
|
0x0a, 0x0c, 0x61, 0x67, 0x65, 0x6e, 0x64, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f,
|
|
|
|
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
|
|
|
|
0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
|
2022-12-05 16:21:12 +00:00
|
|
|
0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
|
|
0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0c, 0x65,
|
|
|
|
0x76, 0x65, 0x6e, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x32, 0x0a, 0x12, 0x43,
|
|
|
|
0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
0x74, 0x12, 0x1c, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
|
|
|
0x32, 0x06, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22,
|
|
|
|
0x33, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65,
|
|
|
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18,
|
|
|
|
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65,
|
|
|
|
0x76, 0x65, 0x6e, 0x74, 0x22, 0x21, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74,
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20,
|
|
|
|
0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x30, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x45, 0x76,
|
|
|
|
0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x65,
|
|
|
|
0x76, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x45, 0x76, 0x65,
|
|
|
|
0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x24, 0x0a, 0x12, 0x44, 0x65, 0x6c,
|
|
|
|
0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
|
|
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22,
|
|
|
|
0x25, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65,
|
|
|
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x06, 0x20, 0x01,
|
|
|
|
0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x9e, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x45, 0x76,
|
|
|
|
0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x6e,
|
|
|
|
0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x09, 0x52,
|
|
|
|
0x0a, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x12, 0x34, 0x0a, 0x07, 0x6d,
|
|
|
|
0x69, 0x6e, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
|
|
|
|
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
|
|
|
|
0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x07, 0x6d, 0x69, 0x6e, 0x64, 0x61, 0x74,
|
|
|
|
0x65, 0x12, 0x34, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01,
|
|
|
|
0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x07,
|
|
|
|
0x6d, 0x61, 0x78, 0x64, 0x61, 0x74, 0x65, 0x22, 0x33, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x45, 0x76,
|
|
|
|
0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1e, 0x0a, 0x06,
|
|
|
|
0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x45,
|
|
|
|
0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x7e, 0x0a, 0x15,
|
|
|
|
0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65,
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
|
|
|
|
0x62, 0x65, 0x72, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63,
|
|
|
|
0x72, 0x69, 0x62, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x69, 0x64,
|
|
|
|
0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x69, 0x64, 0x12,
|
|
|
|
0x2b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e,
|
|
|
|
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
|
|
0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x28, 0x0a, 0x16,
|
|
|
|
0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65,
|
|
|
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x1d, 0x20, 0x01,
|
|
|
|
0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x53, 0x0a, 0x17, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73,
|
|
|
|
0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x18,
|
|
|
|
0x1e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
|
|
|
|
0x72, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x69, 0x64, 0x18, 0x1f, 0x20, 0x01,
|
|
|
|
0x28, 0x09, 0x52, 0x07, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x69, 0x64, 0x22, 0x2a, 0x0a, 0x18, 0x55,
|
|
|
|
0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52,
|
|
|
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x27, 0x20,
|
2023-02-22 13:54:23 +00:00
|
|
|
0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x82, 0x01, 0x0a, 0x19, 0x44, 0x65, 0x6c, 0x65,
|
|
|
|
0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
|
|
|
|
0x62, 0x65, 0x72, 0x18, 0x20, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63,
|
|
|
|
0x72, 0x69, 0x62, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x69, 0x64,
|
|
|
|
0x18, 0x21, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x69, 0x64, 0x12,
|
|
|
|
0x2b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e,
|
|
|
|
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
|
|
0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2c, 0x0a, 0x1a,
|
|
|
|
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
|
|
|
|
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b,
|
|
|
|
0x18, 0x29, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x32, 0x0a, 0x12, 0x55, 0x70,
|
2023-02-01 08:58:37 +00:00
|
|
|
0x64, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
2023-02-22 13:54:23 +00:00
|
|
|
0x12, 0x1c, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x34, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
|
|
0x06, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x33,
|
|
|
|
0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
|
|
|
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x35,
|
|
|
|
0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x76,
|
2023-09-06 11:34:43 +00:00
|
|
|
0x65, 0x6e, 0x74, 0x22, 0x3e, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
|
|
|
|
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
|
|
|
|
0x72, 0x18, 0x36, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
|
|
|
|
0x62, 0x65, 0x72, 0x22, 0x52, 0x0a, 0x1d, 0x47, 0x65, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
|
|
|
|
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x31, 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
|
|
0x74, 0x69, 0x6f, 0x6e, 0x18, 0x37, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x53, 0x75, 0x62,
|
|
|
|
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63,
|
|
|
|
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x32, 0xe0, 0x04, 0x0a, 0x06, 0x41, 0x67, 0x65, 0x6e,
|
|
|
|
0x64, 0x61, 0x12, 0x3a, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e,
|
|
|
|
0x74, 0x12, 0x13, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52,
|
|
|
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
|
|
|
|
0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x31,
|
|
|
|
0x0a, 0x08, 0x47, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x10, 0x2e, 0x47, 0x65, 0x74,
|
|
|
|
0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x47,
|
|
|
|
0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
|
|
0x00, 0x12, 0x34, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x11,
|
|
|
|
0x2e, 0x47, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
0x74, 0x1a, 0x12, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73,
|
|
|
|
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74,
|
|
|
|
0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x13, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45,
|
|
|
|
0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x44, 0x65,
|
|
|
|
0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
|
|
0x65, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65,
|
|
|
|
0x6e, 0x74, 0x12, 0x13, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74,
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
2023-02-22 13:54:23 +00:00
|
|
|
0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
2023-09-06 11:34:43 +00:00
|
|
|
0x43, 0x0a, 0x0e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e,
|
|
|
|
0x74, 0x12, 0x16, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65,
|
|
|
|
0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x53, 0x75, 0x62, 0x73,
|
|
|
|
0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
0x73, 0x65, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x10, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
|
|
|
|
0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x18, 0x2e, 0x55, 0x6e, 0x73, 0x75, 0x62,
|
|
|
|
0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
|
|
0x73, 0x74, 0x1a, 0x19, 0x2e, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
|
|
|
|
0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
|
|
0x4f, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
|
|
|
|
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x75,
|
|
|
|
0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
0x74, 0x1a, 0x1b, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
|
|
|
|
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
|
|
0x12, 0x58, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
|
|
|
|
0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1d, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
|
|
0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x73, 0x65,
|
|
|
|
0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x75,
|
|
|
|
0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72,
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x2e, 0x5a, 0x2c, 0x67, 0x69,
|
|
|
|
0x74, 0x2e, 0x63, 0x6f, 0x6f, 0x70, 0x67, 0x6f, 0x2e, 0x69, 0x6f, 0x2f, 0x63, 0x6f, 0x6f, 0x70,
|
|
|
|
0x67, 0x6f, 0x2d, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x67, 0x65, 0x6e,
|
|
|
|
0x64, 0x61, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x61, 0x70, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
0x6f, 0x33,
|
2023-02-22 13:54:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
file_agenda_proto_rawDescOnce sync.Once
|
|
|
|
file_agenda_proto_rawDescData = file_agenda_proto_rawDesc
|
|
|
|
)
|
2023-02-01 15:04:10 +00:00
|
|
|
|
2023-02-22 13:54:23 +00:00
|
|
|
func file_agenda_proto_rawDescGZIP() []byte {
|
|
|
|
file_agenda_proto_rawDescOnce.Do(func() {
|
|
|
|
file_agenda_proto_rawDescData = protoimpl.X.CompressGZIP(file_agenda_proto_rawDescData)
|
|
|
|
})
|
|
|
|
return file_agenda_proto_rawDescData
|
2023-02-01 15:04:10 +00:00
|
|
|
}
|
2023-02-22 13:54:23 +00:00
|
|
|
|
2023-09-06 11:34:43 +00:00
|
|
|
var file_agenda_proto_msgTypes = make([]protoimpl.MessageInfo, 18)
|
2022-09-05 05:27:52 +00:00
|
|
|
var file_agenda_proto_goTypes = []interface{}{
|
2023-09-06 11:34:43 +00:00
|
|
|
(*CreateEventRequest)(nil), // 0: CreateEventRequest
|
|
|
|
(*CreateEventResponse)(nil), // 1: CreateEventResponse
|
|
|
|
(*GetEventRequest)(nil), // 2: GetEventRequest
|
|
|
|
(*GetEventResponse)(nil), // 3: GetEventResponse
|
|
|
|
(*DeleteEventRequest)(nil), // 4: DeleteEventRequest
|
|
|
|
(*DeleteEventResponse)(nil), // 5: DeleteEventResponse
|
|
|
|
(*GetEventsRequest)(nil), // 6: GetEventsRequest
|
|
|
|
(*GetEventsResponse)(nil), // 7: GetEventsResponse
|
|
|
|
(*SubscribeEventRequest)(nil), // 8: SubscribeEventRequest
|
|
|
|
(*SubscribeEventResponse)(nil), // 9: SubscribeEventResponse
|
|
|
|
(*UnsubscribeEventRequest)(nil), // 10: UnsubscribeEventRequest
|
|
|
|
(*UnsubscribeEventResponse)(nil), // 11: UnsubscribeEventResponse
|
|
|
|
(*DeleteSubscriptionRequest)(nil), // 12: DeleteSubscriptionRequest
|
|
|
|
(*DeleteSubscriptionResponse)(nil), // 13: DeleteSubscriptionResponse
|
|
|
|
(*UpdateEventRequest)(nil), // 14: UpdateEventRequest
|
|
|
|
(*UpdateEventResponse)(nil), // 15: UpdateEventResponse
|
|
|
|
(*GetSubscriptionByUserRequest)(nil), // 16: GetSubscriptionByUserRequest
|
|
|
|
(*GetSubscriptionByUserResponse)(nil), // 17: GetSubscriptionByUserResponse
|
|
|
|
(*Event)(nil), // 18: Event
|
|
|
|
(*timestamp.Timestamp)(nil), // 19: google.protobuf.Timestamp
|
|
|
|
(*_struct.Struct)(nil), // 20: google.protobuf.Struct
|
|
|
|
(*Subscription)(nil), // 21: Subscription
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
var file_agenda_proto_depIdxs = []int32{
|
2023-09-06 11:34:43 +00:00
|
|
|
18, // 0: CreateEventRequest.event:type_name -> Event
|
|
|
|
18, // 1: CreateEventResponse.event:type_name -> Event
|
|
|
|
18, // 2: GetEventResponse.event:type_name -> Event
|
|
|
|
19, // 3: GetEventsRequest.mindate:type_name -> google.protobuf.Timestamp
|
|
|
|
19, // 4: GetEventsRequest.maxdate:type_name -> google.protobuf.Timestamp
|
|
|
|
18, // 5: GetEventsResponse.events:type_name -> Event
|
|
|
|
20, // 6: SubscribeEventRequest.data:type_name -> google.protobuf.Struct
|
|
|
|
20, // 7: DeleteSubscriptionRequest.data:type_name -> google.protobuf.Struct
|
|
|
|
18, // 8: UpdateEventRequest.event:type_name -> Event
|
|
|
|
18, // 9: UpdateEventResponse.event:type_name -> Event
|
|
|
|
21, // 10: GetSubscriptionByUserResponse.subscription:type_name -> Subscription
|
|
|
|
0, // 11: Agenda.CreateEvent:input_type -> CreateEventRequest
|
|
|
|
2, // 12: Agenda.GetEvent:input_type -> GetEventRequest
|
|
|
|
6, // 13: Agenda.GetEvents:input_type -> GetEventsRequest
|
|
|
|
4, // 14: Agenda.DeleteEvent:input_type -> DeleteEventRequest
|
|
|
|
14, // 15: Agenda.UpdateEvent:input_type -> UpdateEventRequest
|
|
|
|
8, // 16: Agenda.SubscribeEvent:input_type -> SubscribeEventRequest
|
|
|
|
10, // 17: Agenda.UnsubscribeEvent:input_type -> UnsubscribeEventRequest
|
|
|
|
12, // 18: Agenda.DeleteSubscription:input_type -> DeleteSubscriptionRequest
|
|
|
|
16, // 19: Agenda.GetSubscriptionByUser:input_type -> GetSubscriptionByUserRequest
|
|
|
|
1, // 20: Agenda.CreateEvent:output_type -> CreateEventResponse
|
|
|
|
3, // 21: Agenda.GetEvent:output_type -> GetEventResponse
|
|
|
|
7, // 22: Agenda.GetEvents:output_type -> GetEventsResponse
|
|
|
|
5, // 23: Agenda.DeleteEvent:output_type -> DeleteEventResponse
|
|
|
|
15, // 24: Agenda.UpdateEvent:output_type -> UpdateEventResponse
|
|
|
|
9, // 25: Agenda.SubscribeEvent:output_type -> SubscribeEventResponse
|
|
|
|
11, // 26: Agenda.UnsubscribeEvent:output_type -> UnsubscribeEventResponse
|
|
|
|
13, // 27: Agenda.DeleteSubscription:output_type -> DeleteSubscriptionResponse
|
|
|
|
17, // 28: Agenda.GetSubscriptionByUser:output_type -> GetSubscriptionByUserResponse
|
|
|
|
20, // [20:29] is the sub-list for method output_type
|
|
|
|
11, // [11:20] is the sub-list for method input_type
|
|
|
|
11, // [11:11] is the sub-list for extension type_name
|
|
|
|
11, // [11:11] is the sub-list for extension extendee
|
|
|
|
0, // [0:11] is the sub-list for field type_name
|
2023-02-22 13:54:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() { file_agenda_proto_init() }
|
|
|
|
func file_agenda_proto_init() {
|
|
|
|
if File_agenda_proto != nil {
|
|
|
|
return
|
2023-02-01 15:04:10 +00:00
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
file_events_proto_init()
|
|
|
|
if !protoimpl.UnsafeEnabled {
|
|
|
|
file_agenda_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*CreateEventRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*CreateEventResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*GetEventRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*GetEventResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*DeleteEventRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*DeleteEventResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*GetEventsRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*GetEventsResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*SubscribeEventRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*SubscribeEventResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*UnsubscribeEventRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*UnsubscribeEventResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2023-02-01 08:58:37 +00:00
|
|
|
file_agenda_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
2023-02-22 13:54:23 +00:00
|
|
|
switch v := v.(*DeleteSubscriptionRequest); i {
|
2023-02-01 08:58:37 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
2023-02-22 13:54:23 +00:00
|
|
|
switch v := v.(*DeleteSubscriptionResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*UpdateEventRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
2023-02-01 08:58:37 +00:00
|
|
|
switch v := v.(*UpdateEventResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2023-09-06 11:34:43 +00:00
|
|
|
file_agenda_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*GetSubscriptionByUserRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_agenda_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*GetSubscriptionByUserResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2022-09-05 05:27:52 +00:00
|
|
|
}
|
|
|
|
type x struct{}
|
|
|
|
out := protoimpl.TypeBuilder{
|
|
|
|
File: protoimpl.DescBuilder{
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
RawDescriptor: file_agenda_proto_rawDesc,
|
|
|
|
NumEnums: 0,
|
2023-09-06 11:34:43 +00:00
|
|
|
NumMessages: 18,
|
2022-09-05 05:27:52 +00:00
|
|
|
NumExtensions: 0,
|
|
|
|
NumServices: 1,
|
|
|
|
},
|
|
|
|
GoTypes: file_agenda_proto_goTypes,
|
|
|
|
DependencyIndexes: file_agenda_proto_depIdxs,
|
|
|
|
MessageInfos: file_agenda_proto_msgTypes,
|
|
|
|
}.Build()
|
|
|
|
File_agenda_proto = out.File
|
|
|
|
file_agenda_proto_rawDesc = nil
|
|
|
|
file_agenda_proto_goTypes = nil
|
|
|
|
file_agenda_proto_depIdxs = nil
|
|
|
|
}
|