Path: blob/main/components/supervisor-api/go/notification.pb.go
2498 views
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34// Code generated by protoc-gen-go. DO NOT EDIT.5// versions:6// protoc-gen-go v1.28.17// protoc v3.20.18// source: notification.proto910package api1112import (13_ "google.golang.org/genproto/googleapis/api/annotations"14protoreflect "google.golang.org/protobuf/reflect/protoreflect"15protoimpl "google.golang.org/protobuf/runtime/protoimpl"16reflect "reflect"17sync "sync"18)1920const (21// Verify that this generated code is sufficiently up-to-date.22_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)23// Verify that runtime/protoimpl is sufficiently up-to-date.24_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)25)2627type NotifyRequest_Level int322829const (30NotifyRequest_ERROR NotifyRequest_Level = 031NotifyRequest_WARNING NotifyRequest_Level = 132NotifyRequest_INFO NotifyRequest_Level = 233)3435// Enum value maps for NotifyRequest_Level.36var (37NotifyRequest_Level_name = map[int32]string{380: "ERROR",391: "WARNING",402: "INFO",41}42NotifyRequest_Level_value = map[string]int32{43"ERROR": 0,44"WARNING": 1,45"INFO": 2,46}47)4849func (x NotifyRequest_Level) Enum() *NotifyRequest_Level {50p := new(NotifyRequest_Level)51*p = x52return p53}5455func (x NotifyRequest_Level) String() string {56return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))57}5859func (NotifyRequest_Level) Descriptor() protoreflect.EnumDescriptor {60return file_notification_proto_enumTypes[0].Descriptor()61}6263func (NotifyRequest_Level) Type() protoreflect.EnumType {64return &file_notification_proto_enumTypes[0]65}6667func (x NotifyRequest_Level) Number() protoreflect.EnumNumber {68return protoreflect.EnumNumber(x)69}7071// Deprecated: Use NotifyRequest_Level.Descriptor instead.72func (NotifyRequest_Level) EnumDescriptor() ([]byte, []int) {73return file_notification_proto_rawDescGZIP(), []int{0, 0}74}7576type NotifyRequest struct {77state protoimpl.MessageState78sizeCache protoimpl.SizeCache79unknownFields protoimpl.UnknownFields8081Level NotifyRequest_Level `protobuf:"varint,1,opt,name=level,proto3,enum=supervisor.NotifyRequest_Level" json:"level,omitempty"`82Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`83// if actions are empty, Notify will return immediately84Actions []string `protobuf:"bytes,3,rep,name=actions,proto3" json:"actions,omitempty"`85}8687func (x *NotifyRequest) Reset() {88*x = NotifyRequest{}89if protoimpl.UnsafeEnabled {90mi := &file_notification_proto_msgTypes[0]91ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))92ms.StoreMessageInfo(mi)93}94}9596func (x *NotifyRequest) String() string {97return protoimpl.X.MessageStringOf(x)98}99100func (*NotifyRequest) ProtoMessage() {}101102func (x *NotifyRequest) ProtoReflect() protoreflect.Message {103mi := &file_notification_proto_msgTypes[0]104if protoimpl.UnsafeEnabled && x != nil {105ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))106if ms.LoadMessageInfo() == nil {107ms.StoreMessageInfo(mi)108}109return ms110}111return mi.MessageOf(x)112}113114// Deprecated: Use NotifyRequest.ProtoReflect.Descriptor instead.115func (*NotifyRequest) Descriptor() ([]byte, []int) {116return file_notification_proto_rawDescGZIP(), []int{0}117}118119func (x *NotifyRequest) GetLevel() NotifyRequest_Level {120if x != nil {121return x.Level122}123return NotifyRequest_ERROR124}125126func (x *NotifyRequest) GetMessage() string {127if x != nil {128return x.Message129}130return ""131}132133func (x *NotifyRequest) GetActions() []string {134if x != nil {135return x.Actions136}137return nil138}139140type NotifyResponse struct {141state protoimpl.MessageState142sizeCache protoimpl.SizeCache143unknownFields protoimpl.UnknownFields144145// action chosen by the user or empty string if cancelled146Action string `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"`147}148149func (x *NotifyResponse) Reset() {150*x = NotifyResponse{}151if protoimpl.UnsafeEnabled {152mi := &file_notification_proto_msgTypes[1]153ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))154ms.StoreMessageInfo(mi)155}156}157158func (x *NotifyResponse) String() string {159return protoimpl.X.MessageStringOf(x)160}161162func (*NotifyResponse) ProtoMessage() {}163164func (x *NotifyResponse) ProtoReflect() protoreflect.Message {165mi := &file_notification_proto_msgTypes[1]166if protoimpl.UnsafeEnabled && x != nil {167ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))168if ms.LoadMessageInfo() == nil {169ms.StoreMessageInfo(mi)170}171return ms172}173return mi.MessageOf(x)174}175176// Deprecated: Use NotifyResponse.ProtoReflect.Descriptor instead.177func (*NotifyResponse) Descriptor() ([]byte, []int) {178return file_notification_proto_rawDescGZIP(), []int{1}179}180181func (x *NotifyResponse) GetAction() string {182if x != nil {183return x.Action184}185return ""186}187188type SubscribeRequest struct {189state protoimpl.MessageState190sizeCache protoimpl.SizeCache191unknownFields protoimpl.UnknownFields192}193194func (x *SubscribeRequest) Reset() {195*x = SubscribeRequest{}196if protoimpl.UnsafeEnabled {197mi := &file_notification_proto_msgTypes[2]198ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))199ms.StoreMessageInfo(mi)200}201}202203func (x *SubscribeRequest) String() string {204return protoimpl.X.MessageStringOf(x)205}206207func (*SubscribeRequest) ProtoMessage() {}208209func (x *SubscribeRequest) ProtoReflect() protoreflect.Message {210mi := &file_notification_proto_msgTypes[2]211if protoimpl.UnsafeEnabled && x != nil {212ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))213if ms.LoadMessageInfo() == nil {214ms.StoreMessageInfo(mi)215}216return ms217}218return mi.MessageOf(x)219}220221// Deprecated: Use SubscribeRequest.ProtoReflect.Descriptor instead.222func (*SubscribeRequest) Descriptor() ([]byte, []int) {223return file_notification_proto_rawDescGZIP(), []int{2}224}225226type SubscribeResponse struct {227state protoimpl.MessageState228sizeCache protoimpl.SizeCache229unknownFields protoimpl.UnknownFields230231RequestId uint64 `protobuf:"varint,1,opt,name=requestId,proto3" json:"requestId,omitempty"`232Request *NotifyRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`233}234235func (x *SubscribeResponse) Reset() {236*x = SubscribeResponse{}237if protoimpl.UnsafeEnabled {238mi := &file_notification_proto_msgTypes[3]239ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))240ms.StoreMessageInfo(mi)241}242}243244func (x *SubscribeResponse) String() string {245return protoimpl.X.MessageStringOf(x)246}247248func (*SubscribeResponse) ProtoMessage() {}249250func (x *SubscribeResponse) ProtoReflect() protoreflect.Message {251mi := &file_notification_proto_msgTypes[3]252if protoimpl.UnsafeEnabled && x != nil {253ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))254if ms.LoadMessageInfo() == nil {255ms.StoreMessageInfo(mi)256}257return ms258}259return mi.MessageOf(x)260}261262// Deprecated: Use SubscribeResponse.ProtoReflect.Descriptor instead.263func (*SubscribeResponse) Descriptor() ([]byte, []int) {264return file_notification_proto_rawDescGZIP(), []int{3}265}266267func (x *SubscribeResponse) GetRequestId() uint64 {268if x != nil {269return x.RequestId270}271return 0272}273274func (x *SubscribeResponse) GetRequest() *NotifyRequest {275if x != nil {276return x.Request277}278return nil279}280281type RespondRequest struct {282state protoimpl.MessageState283sizeCache protoimpl.SizeCache284unknownFields protoimpl.UnknownFields285286RequestId uint64 `protobuf:"varint,1,opt,name=requestId,proto3" json:"requestId,omitempty"`287Response *NotifyResponse `protobuf:"bytes,2,opt,name=response,proto3" json:"response,omitempty"`288}289290func (x *RespondRequest) Reset() {291*x = RespondRequest{}292if protoimpl.UnsafeEnabled {293mi := &file_notification_proto_msgTypes[4]294ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))295ms.StoreMessageInfo(mi)296}297}298299func (x *RespondRequest) String() string {300return protoimpl.X.MessageStringOf(x)301}302303func (*RespondRequest) ProtoMessage() {}304305func (x *RespondRequest) ProtoReflect() protoreflect.Message {306mi := &file_notification_proto_msgTypes[4]307if protoimpl.UnsafeEnabled && x != nil {308ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))309if ms.LoadMessageInfo() == nil {310ms.StoreMessageInfo(mi)311}312return ms313}314return mi.MessageOf(x)315}316317// Deprecated: Use RespondRequest.ProtoReflect.Descriptor instead.318func (*RespondRequest) Descriptor() ([]byte, []int) {319return file_notification_proto_rawDescGZIP(), []int{4}320}321322func (x *RespondRequest) GetRequestId() uint64 {323if x != nil {324return x.RequestId325}326return 0327}328329func (x *RespondRequest) GetResponse() *NotifyResponse {330if x != nil {331return x.Response332}333return nil334}335336type RespondResponse struct {337state protoimpl.MessageState338sizeCache protoimpl.SizeCache339unknownFields protoimpl.UnknownFields340}341342func (x *RespondResponse) Reset() {343*x = RespondResponse{}344if protoimpl.UnsafeEnabled {345mi := &file_notification_proto_msgTypes[5]346ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))347ms.StoreMessageInfo(mi)348}349}350351func (x *RespondResponse) String() string {352return protoimpl.X.MessageStringOf(x)353}354355func (*RespondResponse) ProtoMessage() {}356357func (x *RespondResponse) ProtoReflect() protoreflect.Message {358mi := &file_notification_proto_msgTypes[5]359if protoimpl.UnsafeEnabled && x != nil {360ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))361if ms.LoadMessageInfo() == nil {362ms.StoreMessageInfo(mi)363}364return ms365}366return mi.MessageOf(x)367}368369// Deprecated: Use RespondResponse.ProtoReflect.Descriptor instead.370func (*RespondResponse) Descriptor() ([]byte, []int) {371return file_notification_proto_rawDescGZIP(), []int{5}372}373374type NotifyActiveRequest struct {375state protoimpl.MessageState376sizeCache protoimpl.SizeCache377unknownFields protoimpl.UnknownFields378379// Types that are assignable to ActionData:380//381// *NotifyActiveRequest_Open382// *NotifyActiveRequest_Preview383ActionData isNotifyActiveRequest_ActionData `protobuf_oneof:"action_data"`384}385386func (x *NotifyActiveRequest) Reset() {387*x = NotifyActiveRequest{}388if protoimpl.UnsafeEnabled {389mi := &file_notification_proto_msgTypes[6]390ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))391ms.StoreMessageInfo(mi)392}393}394395func (x *NotifyActiveRequest) String() string {396return protoimpl.X.MessageStringOf(x)397}398399func (*NotifyActiveRequest) ProtoMessage() {}400401func (x *NotifyActiveRequest) ProtoReflect() protoreflect.Message {402mi := &file_notification_proto_msgTypes[6]403if protoimpl.UnsafeEnabled && x != nil {404ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))405if ms.LoadMessageInfo() == nil {406ms.StoreMessageInfo(mi)407}408return ms409}410return mi.MessageOf(x)411}412413// Deprecated: Use NotifyActiveRequest.ProtoReflect.Descriptor instead.414func (*NotifyActiveRequest) Descriptor() ([]byte, []int) {415return file_notification_proto_rawDescGZIP(), []int{6}416}417418func (m *NotifyActiveRequest) GetActionData() isNotifyActiveRequest_ActionData {419if m != nil {420return m.ActionData421}422return nil423}424425func (x *NotifyActiveRequest) GetOpen() *NotifyActiveRequest_OpenData {426if x, ok := x.GetActionData().(*NotifyActiveRequest_Open); ok {427return x.Open428}429return nil430}431432func (x *NotifyActiveRequest) GetPreview() *NotifyActiveRequest_PreviewData {433if x, ok := x.GetActionData().(*NotifyActiveRequest_Preview); ok {434return x.Preview435}436return nil437}438439type isNotifyActiveRequest_ActionData interface {440isNotifyActiveRequest_ActionData()441}442443type NotifyActiveRequest_Open struct {444Open *NotifyActiveRequest_OpenData `protobuf:"bytes,1,opt,name=open,proto3,oneof"`445}446447type NotifyActiveRequest_Preview struct {448Preview *NotifyActiveRequest_PreviewData `protobuf:"bytes,2,opt,name=preview,proto3,oneof"`449}450451func (*NotifyActiveRequest_Open) isNotifyActiveRequest_ActionData() {}452453func (*NotifyActiveRequest_Preview) isNotifyActiveRequest_ActionData() {}454455type NotifyActiveResponse struct {456state protoimpl.MessageState457sizeCache protoimpl.SizeCache458unknownFields protoimpl.UnknownFields459}460461func (x *NotifyActiveResponse) Reset() {462*x = NotifyActiveResponse{}463if protoimpl.UnsafeEnabled {464mi := &file_notification_proto_msgTypes[7]465ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))466ms.StoreMessageInfo(mi)467}468}469470func (x *NotifyActiveResponse) String() string {471return protoimpl.X.MessageStringOf(x)472}473474func (*NotifyActiveResponse) ProtoMessage() {}475476func (x *NotifyActiveResponse) ProtoReflect() protoreflect.Message {477mi := &file_notification_proto_msgTypes[7]478if protoimpl.UnsafeEnabled && x != nil {479ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))480if ms.LoadMessageInfo() == nil {481ms.StoreMessageInfo(mi)482}483return ms484}485return mi.MessageOf(x)486}487488// Deprecated: Use NotifyActiveResponse.ProtoReflect.Descriptor instead.489func (*NotifyActiveResponse) Descriptor() ([]byte, []int) {490return file_notification_proto_rawDescGZIP(), []int{7}491}492493type SubscribeActiveRequest struct {494state protoimpl.MessageState495sizeCache protoimpl.SizeCache496unknownFields protoimpl.UnknownFields497}498499func (x *SubscribeActiveRequest) Reset() {500*x = SubscribeActiveRequest{}501if protoimpl.UnsafeEnabled {502mi := &file_notification_proto_msgTypes[8]503ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))504ms.StoreMessageInfo(mi)505}506}507508func (x *SubscribeActiveRequest) String() string {509return protoimpl.X.MessageStringOf(x)510}511512func (*SubscribeActiveRequest) ProtoMessage() {}513514func (x *SubscribeActiveRequest) ProtoReflect() protoreflect.Message {515mi := &file_notification_proto_msgTypes[8]516if protoimpl.UnsafeEnabled && x != nil {517ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))518if ms.LoadMessageInfo() == nil {519ms.StoreMessageInfo(mi)520}521return ms522}523return mi.MessageOf(x)524}525526// Deprecated: Use SubscribeActiveRequest.ProtoReflect.Descriptor instead.527func (*SubscribeActiveRequest) Descriptor() ([]byte, []int) {528return file_notification_proto_rawDescGZIP(), []int{8}529}530531type SubscribeActiveResponse struct {532state protoimpl.MessageState533sizeCache protoimpl.SizeCache534unknownFields protoimpl.UnknownFields535536RequestId uint64 `protobuf:"varint,1,opt,name=requestId,proto3" json:"requestId,omitempty"`537Request *NotifyActiveRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`538}539540func (x *SubscribeActiveResponse) Reset() {541*x = SubscribeActiveResponse{}542if protoimpl.UnsafeEnabled {543mi := &file_notification_proto_msgTypes[9]544ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))545ms.StoreMessageInfo(mi)546}547}548549func (x *SubscribeActiveResponse) String() string {550return protoimpl.X.MessageStringOf(x)551}552553func (*SubscribeActiveResponse) ProtoMessage() {}554555func (x *SubscribeActiveResponse) ProtoReflect() protoreflect.Message {556mi := &file_notification_proto_msgTypes[9]557if protoimpl.UnsafeEnabled && x != nil {558ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))559if ms.LoadMessageInfo() == nil {560ms.StoreMessageInfo(mi)561}562return ms563}564return mi.MessageOf(x)565}566567// Deprecated: Use SubscribeActiveResponse.ProtoReflect.Descriptor instead.568func (*SubscribeActiveResponse) Descriptor() ([]byte, []int) {569return file_notification_proto_rawDescGZIP(), []int{9}570}571572func (x *SubscribeActiveResponse) GetRequestId() uint64 {573if x != nil {574return x.RequestId575}576return 0577}578579func (x *SubscribeActiveResponse) GetRequest() *NotifyActiveRequest {580if x != nil {581return x.Request582}583return nil584}585586type NotifyActiveRespondRequest struct {587state protoimpl.MessageState588sizeCache protoimpl.SizeCache589unknownFields protoimpl.UnknownFields590591RequestId uint64 `protobuf:"varint,1,opt,name=requestId,proto3" json:"requestId,omitempty"`592Response *NotifyActiveResponse `protobuf:"bytes,2,opt,name=response,proto3" json:"response,omitempty"`593}594595func (x *NotifyActiveRespondRequest) Reset() {596*x = NotifyActiveRespondRequest{}597if protoimpl.UnsafeEnabled {598mi := &file_notification_proto_msgTypes[10]599ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))600ms.StoreMessageInfo(mi)601}602}603604func (x *NotifyActiveRespondRequest) String() string {605return protoimpl.X.MessageStringOf(x)606}607608func (*NotifyActiveRespondRequest) ProtoMessage() {}609610func (x *NotifyActiveRespondRequest) ProtoReflect() protoreflect.Message {611mi := &file_notification_proto_msgTypes[10]612if protoimpl.UnsafeEnabled && x != nil {613ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))614if ms.LoadMessageInfo() == nil {615ms.StoreMessageInfo(mi)616}617return ms618}619return mi.MessageOf(x)620}621622// Deprecated: Use NotifyActiveRespondRequest.ProtoReflect.Descriptor instead.623func (*NotifyActiveRespondRequest) Descriptor() ([]byte, []int) {624return file_notification_proto_rawDescGZIP(), []int{10}625}626627func (x *NotifyActiveRespondRequest) GetRequestId() uint64 {628if x != nil {629return x.RequestId630}631return 0632}633634func (x *NotifyActiveRespondRequest) GetResponse() *NotifyActiveResponse {635if x != nil {636return x.Response637}638return nil639}640641type NotifyActiveRespondResponse struct {642state protoimpl.MessageState643sizeCache protoimpl.SizeCache644unknownFields protoimpl.UnknownFields645}646647func (x *NotifyActiveRespondResponse) Reset() {648*x = NotifyActiveRespondResponse{}649if protoimpl.UnsafeEnabled {650mi := &file_notification_proto_msgTypes[11]651ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))652ms.StoreMessageInfo(mi)653}654}655656func (x *NotifyActiveRespondResponse) String() string {657return protoimpl.X.MessageStringOf(x)658}659660func (*NotifyActiveRespondResponse) ProtoMessage() {}661662func (x *NotifyActiveRespondResponse) ProtoReflect() protoreflect.Message {663mi := &file_notification_proto_msgTypes[11]664if protoimpl.UnsafeEnabled && x != nil {665ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))666if ms.LoadMessageInfo() == nil {667ms.StoreMessageInfo(mi)668}669return ms670}671return mi.MessageOf(x)672}673674// Deprecated: Use NotifyActiveRespondResponse.ProtoReflect.Descriptor instead.675func (*NotifyActiveRespondResponse) Descriptor() ([]byte, []int) {676return file_notification_proto_rawDescGZIP(), []int{11}677}678679// open a file in editor680type NotifyActiveRequest_OpenData struct {681state protoimpl.MessageState682sizeCache protoimpl.SizeCache683unknownFields protoimpl.UnknownFields684685Urls []string `protobuf:"bytes,1,rep,name=urls,proto3" json:"urls,omitempty"`686// wait until all opened files are closed687Await bool `protobuf:"varint,2,opt,name=await,proto3" json:"await,omitempty"`688}689690func (x *NotifyActiveRequest_OpenData) Reset() {691*x = NotifyActiveRequest_OpenData{}692if protoimpl.UnsafeEnabled {693mi := &file_notification_proto_msgTypes[12]694ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))695ms.StoreMessageInfo(mi)696}697}698699func (x *NotifyActiveRequest_OpenData) String() string {700return protoimpl.X.MessageStringOf(x)701}702703func (*NotifyActiveRequest_OpenData) ProtoMessage() {}704705func (x *NotifyActiveRequest_OpenData) ProtoReflect() protoreflect.Message {706mi := &file_notification_proto_msgTypes[12]707if protoimpl.UnsafeEnabled && x != nil {708ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))709if ms.LoadMessageInfo() == nil {710ms.StoreMessageInfo(mi)711}712return ms713}714return mi.MessageOf(x)715}716717// Deprecated: Use NotifyActiveRequest_OpenData.ProtoReflect.Descriptor instead.718func (*NotifyActiveRequest_OpenData) Descriptor() ([]byte, []int) {719return file_notification_proto_rawDescGZIP(), []int{6, 0}720}721722func (x *NotifyActiveRequest_OpenData) GetUrls() []string {723if x != nil {724return x.Urls725}726return nil727}728729func (x *NotifyActiveRequest_OpenData) GetAwait() bool {730if x != nil {731return x.Await732}733return false734}735736// ask editor to open a URL in its preview737type NotifyActiveRequest_PreviewData struct {738state protoimpl.MessageState739sizeCache protoimpl.SizeCache740unknownFields protoimpl.UnknownFields741742Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`743// open the URL in a new browser tab744External bool `protobuf:"varint,2,opt,name=external,proto3" json:"external,omitempty"`745}746747func (x *NotifyActiveRequest_PreviewData) Reset() {748*x = NotifyActiveRequest_PreviewData{}749if protoimpl.UnsafeEnabled {750mi := &file_notification_proto_msgTypes[13]751ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))752ms.StoreMessageInfo(mi)753}754}755756func (x *NotifyActiveRequest_PreviewData) String() string {757return protoimpl.X.MessageStringOf(x)758}759760func (*NotifyActiveRequest_PreviewData) ProtoMessage() {}761762func (x *NotifyActiveRequest_PreviewData) ProtoReflect() protoreflect.Message {763mi := &file_notification_proto_msgTypes[13]764if protoimpl.UnsafeEnabled && x != nil {765ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))766if ms.LoadMessageInfo() == nil {767ms.StoreMessageInfo(mi)768}769return ms770}771return mi.MessageOf(x)772}773774// Deprecated: Use NotifyActiveRequest_PreviewData.ProtoReflect.Descriptor instead.775func (*NotifyActiveRequest_PreviewData) Descriptor() ([]byte, []int) {776return file_notification_proto_rawDescGZIP(), []int{6, 1}777}778779func (x *NotifyActiveRequest_PreviewData) GetUrl() string {780if x != nil {781return x.Url782}783return ""784}785786func (x *NotifyActiveRequest_PreviewData) GetExternal() bool {787if x != nil {788return x.External789}790return false791}792793var File_notification_proto protoreflect.FileDescriptor794795var file_notification_proto_rawDesc = []byte{7960x0a, 0x12, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,7970x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72,7980x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e,7990x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa5,8000x01, 0x0a, 0x0d, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,8010x12, 0x35, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,8020x1f, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74,8030x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4c, 0x65, 0x76, 0x65, 0x6c,8040x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,8050x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,8060x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03,8070x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x29, 0x0a, 0x05, 0x4c,8080x65, 0x76, 0x65, 0x6c, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x00, 0x12,8090x0b, 0x0a, 0x07, 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04,8100x49, 0x4e, 0x46, 0x4f, 0x10, 0x02, 0x22, 0x28, 0x0a, 0x0e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79,8110x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69,8120x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,8130x22, 0x12, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71,8140x75, 0x65, 0x73, 0x74, 0x22, 0x66, 0x0a, 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,8150x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x71,8160x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x72, 0x65,8170x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x33, 0x0a, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65,8180x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72,8190x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75,8200x65, 0x73, 0x74, 0x52, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x66, 0x0a, 0x0e,8210x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c,8220x0a, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,8230x04, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x08,8240x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,8250x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69,8260x66, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x08, 0x72, 0x65, 0x73, 0x70,8270x6f, 0x6e, 0x73, 0x65, 0x22, 0x11, 0x0a, 0x0f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x52,8280x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xa0, 0x02, 0x0a, 0x13, 0x4e, 0x6f, 0x74, 0x69,8290x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,8300x3e, 0x0a, 0x04, 0x6f, 0x70, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e,8310x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66,8320x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f,8330x70, 0x65, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x04, 0x6f, 0x70, 0x65, 0x6e, 0x12,8340x47, 0x0a, 0x07, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,8350x32, 0x2b, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f,8360x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,8370x74, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52,8380x07, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x1a, 0x34, 0x0a, 0x08, 0x4f, 0x70, 0x65, 0x6e,8390x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x72, 0x6c, 0x73, 0x18, 0x01, 0x20, 0x03,8400x28, 0x09, 0x52, 0x04, 0x75, 0x72, 0x6c, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x77, 0x61, 0x69,8410x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x61, 0x77, 0x61, 0x69, 0x74, 0x1a, 0x3b,8420x0a, 0x0b, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x44, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a,8430x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12,8440x1a, 0x0a, 0x08, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,8450x08, 0x52, 0x08, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x42, 0x0d, 0x0a, 0x0b, 0x61,8460x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x22, 0x16, 0x0a, 0x14, 0x4e, 0x6f,8470x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,8480x73, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x41,8490x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x72, 0x0a, 0x17,8500x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52,8510x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65,8520x73, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75,8530x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x39, 0x0a, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,8540x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69,8550x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65,8560x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,8570x22, 0x78, 0x0a, 0x1a, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65,8580x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c,8590x0a, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,8600x04, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x0a, 0x08,8610x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20,8620x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69,8630x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,8640x52, 0x08, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1d, 0x0a, 0x1b, 0x4e, 0x6f,8650x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,8660x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xeb, 0x05, 0x0a, 0x13, 0x4e, 0x6f,8670x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,8680x65, 0x12, 0x60, 0x0a, 0x06, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x19, 0x2e, 0x73, 0x75,8690x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x52,8700x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69,8710x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,8720x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x17, 0x2f, 0x76, 0x31, 0x2f,8730x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6e, 0x6f, 0x74,8740x69, 0x66, 0x79, 0x12, 0x6e, 0x0a, 0x09, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,8750x12, 0x1c, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x53, 0x75,8760x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d,8770x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x53, 0x75, 0x62, 0x73,8780x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x22, 0x82,8790xd3, 0xe4, 0x93, 0x02, 0x1c, 0x12, 0x1a, 0x2f, 0x76, 0x31, 0x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66,8800x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,8810x65, 0x30, 0x01, 0x12, 0x64, 0x0a, 0x07, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x12, 0x1a,8820x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70,8830x6f, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x73, 0x75, 0x70,8840x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x52,8850x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,8860x18, 0x2f, 0x76, 0x31, 0x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,8870x6e, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x12, 0x87, 0x01, 0x0a, 0x0f, 0x53, 0x75,8880x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x22, 0x2e,8890x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63,8900x72, 0x69, 0x62, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,8910x74, 0x1a, 0x23, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x53,8920x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65,8930x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x21,8940x2f, 0x76, 0x31, 0x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,8950x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2d, 0x61, 0x63, 0x74, 0x69, 0x76,8960x65, 0x30, 0x01, 0x12, 0x79, 0x0a, 0x0c, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74,8970x69, 0x76, 0x65, 0x12, 0x1f, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72,8980x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71,8990x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f,9000x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65,9010x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1e,9020x2f, 0x76, 0x31, 0x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,9030x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2d, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x96,9040x01, 0x0a, 0x13, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52,9050x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x12, 0x26, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69,9060x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65,9070x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27,9080x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e, 0x4e, 0x6f, 0x74, 0x69,9090x66, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x52,9100x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x22,9110x26, 0x2f, 0x76, 0x31, 0x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,9120x6e, 0x2f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x2d, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d,9130x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x42, 0x46, 0x0a, 0x18, 0x69, 0x6f, 0x2e, 0x67, 0x69,9140x74, 0x70, 0x6f, 0x64, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2e,9150x61, 0x70, 0x69, 0x5a, 0x2a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,9160x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,9170x2f, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x62,9180x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,919}920921var (922file_notification_proto_rawDescOnce sync.Once923file_notification_proto_rawDescData = file_notification_proto_rawDesc924)925926func file_notification_proto_rawDescGZIP() []byte {927file_notification_proto_rawDescOnce.Do(func() {928file_notification_proto_rawDescData = protoimpl.X.CompressGZIP(file_notification_proto_rawDescData)929})930return file_notification_proto_rawDescData931}932933var file_notification_proto_enumTypes = make([]protoimpl.EnumInfo, 1)934var file_notification_proto_msgTypes = make([]protoimpl.MessageInfo, 14)935var file_notification_proto_goTypes = []interface{}{936(NotifyRequest_Level)(0), // 0: supervisor.NotifyRequest.Level937(*NotifyRequest)(nil), // 1: supervisor.NotifyRequest938(*NotifyResponse)(nil), // 2: supervisor.NotifyResponse939(*SubscribeRequest)(nil), // 3: supervisor.SubscribeRequest940(*SubscribeResponse)(nil), // 4: supervisor.SubscribeResponse941(*RespondRequest)(nil), // 5: supervisor.RespondRequest942(*RespondResponse)(nil), // 6: supervisor.RespondResponse943(*NotifyActiveRequest)(nil), // 7: supervisor.NotifyActiveRequest944(*NotifyActiveResponse)(nil), // 8: supervisor.NotifyActiveResponse945(*SubscribeActiveRequest)(nil), // 9: supervisor.SubscribeActiveRequest946(*SubscribeActiveResponse)(nil), // 10: supervisor.SubscribeActiveResponse947(*NotifyActiveRespondRequest)(nil), // 11: supervisor.NotifyActiveRespondRequest948(*NotifyActiveRespondResponse)(nil), // 12: supervisor.NotifyActiveRespondResponse949(*NotifyActiveRequest_OpenData)(nil), // 13: supervisor.NotifyActiveRequest.OpenData950(*NotifyActiveRequest_PreviewData)(nil), // 14: supervisor.NotifyActiveRequest.PreviewData951}952var file_notification_proto_depIdxs = []int32{9530, // 0: supervisor.NotifyRequest.level:type_name -> supervisor.NotifyRequest.Level9541, // 1: supervisor.SubscribeResponse.request:type_name -> supervisor.NotifyRequest9552, // 2: supervisor.RespondRequest.response:type_name -> supervisor.NotifyResponse95613, // 3: supervisor.NotifyActiveRequest.open:type_name -> supervisor.NotifyActiveRequest.OpenData95714, // 4: supervisor.NotifyActiveRequest.preview:type_name -> supervisor.NotifyActiveRequest.PreviewData9587, // 5: supervisor.SubscribeActiveResponse.request:type_name -> supervisor.NotifyActiveRequest9598, // 6: supervisor.NotifyActiveRespondRequest.response:type_name -> supervisor.NotifyActiveResponse9601, // 7: supervisor.NotificationService.Notify:input_type -> supervisor.NotifyRequest9613, // 8: supervisor.NotificationService.Subscribe:input_type -> supervisor.SubscribeRequest9625, // 9: supervisor.NotificationService.Respond:input_type -> supervisor.RespondRequest9639, // 10: supervisor.NotificationService.SubscribeActive:input_type -> supervisor.SubscribeActiveRequest9647, // 11: supervisor.NotificationService.NotifyActive:input_type -> supervisor.NotifyActiveRequest96511, // 12: supervisor.NotificationService.NotifyActiveRespond:input_type -> supervisor.NotifyActiveRespondRequest9662, // 13: supervisor.NotificationService.Notify:output_type -> supervisor.NotifyResponse9674, // 14: supervisor.NotificationService.Subscribe:output_type -> supervisor.SubscribeResponse9686, // 15: supervisor.NotificationService.Respond:output_type -> supervisor.RespondResponse96910, // 16: supervisor.NotificationService.SubscribeActive:output_type -> supervisor.SubscribeActiveResponse9708, // 17: supervisor.NotificationService.NotifyActive:output_type -> supervisor.NotifyActiveResponse97112, // 18: supervisor.NotificationService.NotifyActiveRespond:output_type -> supervisor.NotifyActiveRespondResponse97213, // [13:19] is the sub-list for method output_type9737, // [7:13] is the sub-list for method input_type9747, // [7:7] is the sub-list for extension type_name9757, // [7:7] is the sub-list for extension extendee9760, // [0:7] is the sub-list for field type_name977}978979func init() { file_notification_proto_init() }980func file_notification_proto_init() {981if File_notification_proto != nil {982return983}984if !protoimpl.UnsafeEnabled {985file_notification_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {986switch v := v.(*NotifyRequest); i {987case 0:988return &v.state989case 1:990return &v.sizeCache991case 2:992return &v.unknownFields993default:994return nil995}996}997file_notification_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {998switch v := v.(*NotifyResponse); i {999case 0:1000return &v.state1001case 1:1002return &v.sizeCache1003case 2:1004return &v.unknownFields1005default:1006return nil1007}1008}1009file_notification_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {1010switch v := v.(*SubscribeRequest); i {1011case 0:1012return &v.state1013case 1:1014return &v.sizeCache1015case 2:1016return &v.unknownFields1017default:1018return nil1019}1020}1021file_notification_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {1022switch v := v.(*SubscribeResponse); i {1023case 0:1024return &v.state1025case 1:1026return &v.sizeCache1027case 2:1028return &v.unknownFields1029default:1030return nil1031}1032}1033file_notification_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {1034switch v := v.(*RespondRequest); i {1035case 0:1036return &v.state1037case 1:1038return &v.sizeCache1039case 2:1040return &v.unknownFields1041default:1042return nil1043}1044}1045file_notification_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {1046switch v := v.(*RespondResponse); i {1047case 0:1048return &v.state1049case 1:1050return &v.sizeCache1051case 2:1052return &v.unknownFields1053default:1054return nil1055}1056}1057file_notification_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {1058switch v := v.(*NotifyActiveRequest); i {1059case 0:1060return &v.state1061case 1:1062return &v.sizeCache1063case 2:1064return &v.unknownFields1065default:1066return nil1067}1068}1069file_notification_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {1070switch v := v.(*NotifyActiveResponse); i {1071case 0:1072return &v.state1073case 1:1074return &v.sizeCache1075case 2:1076return &v.unknownFields1077default:1078return nil1079}1080}1081file_notification_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {1082switch v := v.(*SubscribeActiveRequest); i {1083case 0:1084return &v.state1085case 1:1086return &v.sizeCache1087case 2:1088return &v.unknownFields1089default:1090return nil1091}1092}1093file_notification_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {1094switch v := v.(*SubscribeActiveResponse); i {1095case 0:1096return &v.state1097case 1:1098return &v.sizeCache1099case 2:1100return &v.unknownFields1101default:1102return nil1103}1104}1105file_notification_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {1106switch v := v.(*NotifyActiveRespondRequest); i {1107case 0:1108return &v.state1109case 1:1110return &v.sizeCache1111case 2:1112return &v.unknownFields1113default:1114return nil1115}1116}1117file_notification_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {1118switch v := v.(*NotifyActiveRespondResponse); i {1119case 0:1120return &v.state1121case 1:1122return &v.sizeCache1123case 2:1124return &v.unknownFields1125default:1126return nil1127}1128}1129file_notification_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {1130switch v := v.(*NotifyActiveRequest_OpenData); i {1131case 0:1132return &v.state1133case 1:1134return &v.sizeCache1135case 2:1136return &v.unknownFields1137default:1138return nil1139}1140}1141file_notification_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {1142switch v := v.(*NotifyActiveRequest_PreviewData); i {1143case 0:1144return &v.state1145case 1:1146return &v.sizeCache1147case 2:1148return &v.unknownFields1149default:1150return nil1151}1152}1153}1154file_notification_proto_msgTypes[6].OneofWrappers = []interface{}{1155(*NotifyActiveRequest_Open)(nil),1156(*NotifyActiveRequest_Preview)(nil),1157}1158type x struct{}1159out := protoimpl.TypeBuilder{1160File: protoimpl.DescBuilder{1161GoPackagePath: reflect.TypeOf(x{}).PkgPath(),1162RawDescriptor: file_notification_proto_rawDesc,1163NumEnums: 1,1164NumMessages: 14,1165NumExtensions: 0,1166NumServices: 1,1167},1168GoTypes: file_notification_proto_goTypes,1169DependencyIndexes: file_notification_proto_depIdxs,1170EnumInfos: file_notification_proto_enumTypes,1171MessageInfos: file_notification_proto_msgTypes,1172}.Build()1173File_notification_proto = out.File1174file_notification_proto_rawDesc = nil1175file_notification_proto_goTypes = nil1176file_notification_proto_depIdxs = nil1177}117811791180