| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.28.1-devel
- // protoc v3.21.8
- // source: ai.proto
- package ai
- import (
- _ "google.golang.org/genproto/googleapis/api/annotations"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- emptypb "google.golang.org/protobuf/types/known/emptypb"
- _ "google.golang.org/protobuf/types/known/structpb"
- reflect "reflect"
- sync "sync"
- )
- 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)
- )
- type GetAISubscribeMessageReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- LinkSubscribeTemplateIds []string `protobuf:"bytes,2,rep,name=linkSubscribeTemplateIds,proto3" json:"linkSubscribeTemplateIds"` // 点击【提交链接】按钮收集
- ShareSubscribeTemplateIds []string `protobuf:"bytes,3,rep,name=shareSubscribeTemplateIds,proto3" json:"shareSubscribeTemplateIds"` // 点击【立即邀请】按钮收集
- }
- func (x *GetAISubscribeMessageReply) Reset() {
- *x = GetAISubscribeMessageReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetAISubscribeMessageReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetAISubscribeMessageReply) ProtoMessage() {}
- func (x *GetAISubscribeMessageReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use GetAISubscribeMessageReply.ProtoReflect.Descriptor instead.
- func (*GetAISubscribeMessageReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{0}
- }
- func (x *GetAISubscribeMessageReply) GetLinkSubscribeTemplateIds() []string {
- if x != nil {
- return x.LinkSubscribeTemplateIds
- }
- return make([]string, 0)
- }
- func (x *GetAISubscribeMessageReply) GetShareSubscribeTemplateIds() []string {
- if x != nil {
- return x.ShareSubscribeTemplateIds
- }
- return make([]string, 0)
- }
- type GetMiniProgramConfReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid"`
- Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path"`
- }
- func (x *GetMiniProgramConfReply) Reset() {
- *x = GetMiniProgramConfReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetMiniProgramConfReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetMiniProgramConfReply) ProtoMessage() {}
- func (x *GetMiniProgramConfReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use GetMiniProgramConfReply.ProtoReflect.Descriptor instead.
- func (*GetMiniProgramConfReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{1}
- }
- func (x *GetMiniProgramConfReply) GetAppid() string {
- if x != nil {
- return x.Appid
- }
- return ""
- }
- func (x *GetMiniProgramConfReply) GetPath() string {
- if x != nil {
- return x.Path
- }
- return ""
- }
- type ShareUserIntoRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId"` // 用户openID
- ShareId int64 `protobuf:"varint,2,opt,name=shareId,proto3" json:"shareId"` // 分享ID
- }
- func (x *ShareUserIntoRequest) Reset() {
- *x = ShareUserIntoRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ShareUserIntoRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ShareUserIntoRequest) ProtoMessage() {}
- func (x *ShareUserIntoRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use ShareUserIntoRequest.ProtoReflect.Descriptor instead.
- func (*ShareUserIntoRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{2}
- }
- func (x *ShareUserIntoRequest) GetOpenId() string {
- if x != nil {
- return x.OpenId
- }
- return ""
- }
- func (x *ShareUserIntoRequest) GetShareId() int64 {
- if x != nil {
- return x.ShareId
- }
- return 0
- }
- type SetVideoLinkRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- VideoUrl string `protobuf:"bytes,1,opt,name=videoUrl,proto3" json:"videoUrl"`
- PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"`
- RobotId int64 `protobuf:"varint,3,opt,name=robotId,proto3" json:"robotId"`
- }
- func (x *SetVideoLinkRequest) Reset() {
- *x = SetVideoLinkRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SetVideoLinkRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SetVideoLinkRequest) ProtoMessage() {}
- func (x *SetVideoLinkRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use SetVideoLinkRequest.ProtoReflect.Descriptor instead.
- func (*SetVideoLinkRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{3}
- }
- func (x *SetVideoLinkRequest) GetVideoUrl() string {
- if x != nil {
- return x.VideoUrl
- }
- return ""
- }
- func (x *SetVideoLinkRequest) GetPictureUrl() string {
- if x != nil {
- return x.PictureUrl
- }
- return ""
- }
- func (x *SetVideoLinkRequest) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- type GetShareQrcodeReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- QrcodeUrl []string `protobuf:"bytes,1,rep,name=qrcodeUrl,proto3" json:"qrcodeUrl"`
- }
- func (x *GetShareQrcodeReply) Reset() {
- *x = GetShareQrcodeReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetShareQrcodeReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetShareQrcodeReply) ProtoMessage() {}
- func (x *GetShareQrcodeReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use GetShareQrcodeReply.ProtoReflect.Descriptor instead.
- func (*GetShareQrcodeReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{4}
- }
- func (x *GetShareQrcodeReply) GetQrcodeUrl() []string {
- if x != nil {
- return x.QrcodeUrl
- }
- return make([]string, 0)
- }
- type GetAIShareMessageRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"` // 用户ID
- RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
- }
- func (x *GetAIShareMessageRequest) Reset() {
- *x = GetAIShareMessageRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetAIShareMessageRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetAIShareMessageRequest) ProtoMessage() {}
- func (x *GetAIShareMessageRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use GetAIShareMessageRequest.ProtoReflect.Descriptor instead.
- func (*GetAIShareMessageRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{5}
- }
- func (x *GetAIShareMessageRequest) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- func (x *GetAIShareMessageRequest) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- type GetAIShareMessageReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ExpirationTime int64 `protobuf:"varint,1,opt,name=expirationTime,proto3" json:"expirationTime"` // 过期时间
- List []*AIShareInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
- }
- func (x *GetAIShareMessageReply) Reset() {
- *x = GetAIShareMessageReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetAIShareMessageReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetAIShareMessageReply) ProtoMessage() {}
- func (x *GetAIShareMessageReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use GetAIShareMessageReply.ProtoReflect.Descriptor instead.
- func (*GetAIShareMessageReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{6}
- }
- func (x *GetAIShareMessageReply) GetExpirationTime() int64 {
- if x != nil {
- return x.ExpirationTime
- }
- return 0
- }
- func (x *GetAIShareMessageReply) GetList() []*AIShareInfo {
- if x != nil {
- return x.List
- }
- return make([]*AIShareInfo, 0)
- }
- type AIShareInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title"` // 标题
- Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"` // 价格
- OriginPrice int64 `protobuf:"varint,3,opt,name=originPrice,proto3" json:"originPrice"` // 原价
- Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"` // 描述
- TopLabel string `protobuf:"bytes,5,opt,name=topLabel,proto3" json:"topLabel"` // 上面的标签 (例:限时免费)
- UnderShowLabel string `protobuf:"bytes,6,opt,name=underShowLabel,proto3" json:"underShowLabel"` // 下面的标签 (例:发短视频)
- UnderHideLabel string `protobuf:"bytes,7,opt,name=underHideLabel,proto3" json:"underHideLabel"` // 下面的标签 (例:点赞两次)
- IsVip bool `protobuf:"varint,8,opt,name=isVip,proto3" json:"isVip"` // 是否是vip
- Num int64 `protobuf:"varint,9,opt,name=num,proto3" json:"num"` // 分享数、点赞数
- AllNum int64 `protobuf:"varint,10,opt,name=allNum,proto3" json:"allNum"` // 总数
- NumDescription string `protobuf:"bytes,11,opt,name=numDescription,proto3" json:"numDescription"` // num的描述
- IsFinish bool `protobuf:"varint,12,opt,name=isFinish,proto3" json:"isFinish"` // 是否完成
- Id int64 `protobuf:"varint,13,opt,name=id,proto3" json:"id"`
- Type string `protobuf:"bytes,14,opt,name=type,proto3" json:"type"`
- IsStart bool `protobuf:"varint,15,opt,name=isStart,proto3" json:"isStart"` // 是否开启任务
- }
- func (x *AIShareInfo) Reset() {
- *x = AIShareInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AIShareInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AIShareInfo) ProtoMessage() {}
- func (x *AIShareInfo) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use AIShareInfo.ProtoReflect.Descriptor instead.
- func (*AIShareInfo) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{7}
- }
- func (x *AIShareInfo) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *AIShareInfo) GetPrice() int64 {
- if x != nil {
- return x.Price
- }
- return 0
- }
- func (x *AIShareInfo) GetOriginPrice() int64 {
- if x != nil {
- return x.OriginPrice
- }
- return 0
- }
- func (x *AIShareInfo) GetDescription() string {
- if x != nil {
- return x.Description
- }
- return ""
- }
- func (x *AIShareInfo) GetTopLabel() string {
- if x != nil {
- return x.TopLabel
- }
- return ""
- }
- func (x *AIShareInfo) GetUnderShowLabel() string {
- if x != nil {
- return x.UnderShowLabel
- }
- return ""
- }
- func (x *AIShareInfo) GetUnderHideLabel() string {
- if x != nil {
- return x.UnderHideLabel
- }
- return ""
- }
- func (x *AIShareInfo) GetIsVip() bool {
- if x != nil {
- return x.IsVip
- }
- return false
- }
- func (x *AIShareInfo) GetNum() int64 {
- if x != nil {
- return x.Num
- }
- return 0
- }
- func (x *AIShareInfo) GetAllNum() int64 {
- if x != nil {
- return x.AllNum
- }
- return 0
- }
- func (x *AIShareInfo) GetNumDescription() string {
- if x != nil {
- return x.NumDescription
- }
- return ""
- }
- func (x *AIShareInfo) GetIsFinish() bool {
- if x != nil {
- return x.IsFinish
- }
- return false
- }
- func (x *AIShareInfo) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *AIShareInfo) GetType() string {
- if x != nil {
- return x.Type
- }
- return ""
- }
- func (x *AIShareInfo) GetIsStart() bool {
- if x != nil {
- return x.IsStart
- }
- return false
- }
- type FindUserAIMessageReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- IsFree bool `protobuf:"varint,1,opt,name=isFree,proto3" json:"isFree"` // 创建是否免费
- UnreadNum int64 `protobuf:"varint,2,opt,name=unreadNum,proto3" json:"unreadNum"` // 未读数
- }
- func (x *FindUserAIMessageReply) Reset() {
- *x = FindUserAIMessageReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindUserAIMessageReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindUserAIMessageReply) ProtoMessage() {}
- func (x *FindUserAIMessageReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use FindUserAIMessageReply.ProtoReflect.Descriptor instead.
- func (*FindUserAIMessageReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{8}
- }
- func (x *FindUserAIMessageReply) GetIsFree() bool {
- if x != nil {
- return x.IsFree
- }
- return false
- }
- func (x *FindUserAIMessageReply) GetUnreadNum() int64 {
- if x != nil {
- return x.UnreadNum
- }
- return 0
- }
- type GetIsReadRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
- RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"`
- }
- func (x *GetIsReadRequest) Reset() {
- *x = GetIsReadRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetIsReadRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetIsReadRequest) ProtoMessage() {}
- func (x *GetIsReadRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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 GetIsReadRequest.ProtoReflect.Descriptor instead.
- func (*GetIsReadRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{9}
- }
- func (x *GetIsReadRequest) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- func (x *GetIsReadRequest) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- type UpdateAdditionalServiceRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- RobotId int64 `protobuf:"varint,1,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
- TemplateId int64 `protobuf:"varint,2,opt,name=templateId,proto3" json:"templateId"`
- Word string `protobuf:"bytes,3,opt,name=word,proto3" json:"word"` // 关键词
- IsOpen bool `protobuf:"varint,4,opt,name=isOpen,proto3" json:"isOpen"` // 是否开启
- Day []int64 `protobuf:"varint,5,rep,packed,name=day,proto3" json:"day"` // 定时的天
- Hour int64 `protobuf:"varint,6,opt,name=hour,proto3" json:"hour"` // 定时小时
- }
- func (x *UpdateAdditionalServiceRequest) Reset() {
- *x = UpdateAdditionalServiceRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UpdateAdditionalServiceRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UpdateAdditionalServiceRequest) ProtoMessage() {}
- func (x *UpdateAdditionalServiceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use UpdateAdditionalServiceRequest.ProtoReflect.Descriptor instead.
- func (*UpdateAdditionalServiceRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{10}
- }
- func (x *UpdateAdditionalServiceRequest) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- func (x *UpdateAdditionalServiceRequest) GetTemplateId() int64 {
- if x != nil {
- return x.TemplateId
- }
- return 0
- }
- func (x *UpdateAdditionalServiceRequest) GetWord() string {
- if x != nil {
- return x.Word
- }
- return ""
- }
- func (x *UpdateAdditionalServiceRequest) GetIsOpen() bool {
- if x != nil {
- return x.IsOpen
- }
- return false
- }
- func (x *UpdateAdditionalServiceRequest) GetDay() []int64 {
- if x != nil {
- return x.Day
- }
- return make([]int64, 0)
- }
- func (x *UpdateAdditionalServiceRequest) GetHour() int64 {
- if x != nil {
- return x.Hour
- }
- return 0
- }
- type GetAdditionalServiceRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 对应列表的ID
- RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
- }
- func (x *GetAdditionalServiceRequest) Reset() {
- *x = GetAdditionalServiceRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetAdditionalServiceRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetAdditionalServiceRequest) ProtoMessage() {}
- func (x *GetAdditionalServiceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use GetAdditionalServiceRequest.ProtoReflect.Descriptor instead.
- func (*GetAdditionalServiceRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{11}
- }
- func (x *GetAdditionalServiceRequest) GetTemplateId() int64 {
- if x != nil {
- return x.TemplateId
- }
- return 0
- }
- func (x *GetAdditionalServiceRequest) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- type GetAdditionalServiceReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
- Word string `protobuf:"bytes,3,opt,name=word,proto3" json:"word"` // 关键词
- IsOpen bool `protobuf:"varint,4,opt,name=isOpen,proto3" json:"isOpen"` // 是否开启
- Day []int64 `protobuf:"varint,5,rep,packed,name=day,proto3" json:"day"` // 定时的天
- Hour int64 `protobuf:"varint,6,opt,name=hour,proto3" json:"hour"` // 定时小时
- TemplateId int64 `protobuf:"varint,7,opt,name=templateId,proto3" json:"templateId"`
- }
- func (x *GetAdditionalServiceReply) Reset() {
- *x = GetAdditionalServiceReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetAdditionalServiceReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetAdditionalServiceReply) ProtoMessage() {}
- func (x *GetAdditionalServiceReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[12]
- 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 GetAdditionalServiceReply.ProtoReflect.Descriptor instead.
- func (*GetAdditionalServiceReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{12}
- }
- func (x *GetAdditionalServiceReply) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *GetAdditionalServiceReply) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- func (x *GetAdditionalServiceReply) GetWord() string {
- if x != nil {
- return x.Word
- }
- return ""
- }
- func (x *GetAdditionalServiceReply) GetIsOpen() bool {
- if x != nil {
- return x.IsOpen
- }
- return false
- }
- func (x *GetAdditionalServiceReply) GetDay() []int64 {
- if x != nil {
- return x.Day
- }
- return make([]int64, 0)
- }
- func (x *GetAdditionalServiceReply) GetHour() int64 {
- if x != nil {
- return x.Hour
- }
- return 0
- }
- func (x *GetAdditionalServiceReply) GetTemplateId() int64 {
- if x != nil {
- return x.TemplateId
- }
- return 0
- }
- type FindAdditionalServiceTemplateListReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- List []*AdditionalServiceTemplate `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
- }
- func (x *FindAdditionalServiceTemplateListReply) Reset() {
- *x = FindAdditionalServiceTemplateListReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindAdditionalServiceTemplateListReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindAdditionalServiceTemplateListReply) ProtoMessage() {}
- func (x *FindAdditionalServiceTemplateListReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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)
- }
- // Deprecated: Use FindAdditionalServiceTemplateListReply.ProtoReflect.Descriptor instead.
- func (*FindAdditionalServiceTemplateListReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{13}
- }
- func (x *FindAdditionalServiceTemplateListReply) GetList() []*AdditionalServiceTemplate {
- if x != nil {
- return x.List
- }
- return make([]*AdditionalServiceTemplate, 0)
- }
- type AdditionalServiceTemplate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // id
- Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"` // 名称
- PictureUrl string `protobuf:"bytes,3,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 图片链接
- }
- func (x *AdditionalServiceTemplate) Reset() {
- *x = AdditionalServiceTemplate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AdditionalServiceTemplate) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AdditionalServiceTemplate) ProtoMessage() {}
- func (x *AdditionalServiceTemplate) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[14]
- 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 AdditionalServiceTemplate.ProtoReflect.Descriptor instead.
- func (*AdditionalServiceTemplate) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{14}
- }
- func (x *AdditionalServiceTemplate) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *AdditionalServiceTemplate) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *AdditionalServiceTemplate) GetPictureUrl() string {
- if x != nil {
- return x.PictureUrl
- }
- return ""
- }
- type AIRobotIDReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- }
- func (x *AIRobotIDReply) Reset() {
- *x = AIRobotIDReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AIRobotIDReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AIRobotIDReply) ProtoMessage() {}
- func (x *AIRobotIDReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[15]
- 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 AIRobotIDReply.ProtoReflect.Descriptor instead.
- func (*AIRobotIDReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{15}
- }
- func (x *AIRobotIDReply) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- type AIRecordListReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- List []*AIRecordInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
- NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
- }
- func (x *AIRecordListReply) Reset() {
- *x = AIRecordListReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AIRecordListReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AIRecordListReply) ProtoMessage() {}
- func (x *AIRecordListReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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 AIRecordListReply.ProtoReflect.Descriptor instead.
- func (*AIRecordListReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{16}
- }
- func (x *AIRecordListReply) GetList() []*AIRecordInfo {
- if x != nil {
- return x.List
- }
- return make([]*AIRecordInfo, 0)
- }
- func (x *AIRecordListReply) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- type AIRecordInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
- MsgType string `protobuf:"bytes,2,opt,name=msgType,proto3" json:"msgType"` // 消息类型
- Message *Message `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` // 消息的结构
- RobotId int64 `protobuf:"varint,4,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
- IsSelf bool `protobuf:"varint,5,opt,name=isSelf,proto3" json:"isSelf"` // 是否是自己
- SendTime int64 `protobuf:"varint,6,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
- Status string `protobuf:"bytes,7,opt,name=status,proto3" json:"status"` // 消息状态
- StatusMsg string `protobuf:"bytes,8,opt,name=statusMsg,proto3" json:"statusMsg"` // 状态说明
- }
- func (x *AIRecordInfo) Reset() {
- *x = AIRecordInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AIRecordInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AIRecordInfo) ProtoMessage() {}
- func (x *AIRecordInfo) ProtoReflect() protoreflect.Message {
- mi := &file_ai_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 AIRecordInfo.ProtoReflect.Descriptor instead.
- func (*AIRecordInfo) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{17}
- }
- func (x *AIRecordInfo) GetMessageId() int64 {
- if x != nil {
- return x.MessageId
- }
- return 0
- }
- func (x *AIRecordInfo) GetMsgType() string {
- if x != nil {
- return x.MsgType
- }
- return ""
- }
- func (x *AIRecordInfo) GetMessage() *Message {
- if x != nil && x.Message != nil {
- return x.Message
- }
- return &Message{}
- }
- func (x *AIRecordInfo) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- func (x *AIRecordInfo) GetIsSelf() bool {
- if x != nil {
- return x.IsSelf
- }
- return false
- }
- func (x *AIRecordInfo) GetSendTime() int64 {
- if x != nil {
- return x.SendTime
- }
- return 0
- }
- func (x *AIRecordInfo) GetStatus() string {
- if x != nil {
- return x.Status
- }
- return ""
- }
- func (x *AIRecordInfo) GetStatusMsg() string {
- if x != nil {
- return x.StatusMsg
- }
- return ""
- }
- type Message struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
- }
- func (x *Message) Reset() {
- *x = Message{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Message) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Message) ProtoMessage() {}
- func (x *Message) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[18]
- 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 Message.ProtoReflect.Descriptor instead.
- func (*Message) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{18}
- }
- func (x *Message) GetContent() string {
- if x != nil {
- return x.Content
- }
- return ""
- }
- type SendAIChatRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- RobotId int64 `protobuf:"varint,1,opt,name=robotId,proto3" json:"robotId"`
- Message *Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
- MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
- WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
- }
- func (x *SendAIChatRequest) Reset() {
- *x = SendAIChatRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SendAIChatRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SendAIChatRequest) ProtoMessage() {}
- func (x *SendAIChatRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[19]
- 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 SendAIChatRequest.ProtoReflect.Descriptor instead.
- func (*SendAIChatRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{19}
- }
- func (x *SendAIChatRequest) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- func (x *SendAIChatRequest) GetMessage() *Message {
- if x != nil && x.Message != nil {
- return x.Message
- }
- return &Message{}
- }
- func (x *SendAIChatRequest) GetMsgType() string {
- if x != nil {
- return x.MsgType
- }
- return ""
- }
- func (x *SendAIChatRequest) GetWebsocketTag() string {
- if x != nil {
- return x.WebsocketTag
- }
- return ""
- }
- type FindAIChatRecordListRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
- Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"`
- }
- func (x *FindAIChatRecordListRequest) Reset() {
- *x = FindAIChatRecordListRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindAIChatRecordListRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindAIChatRecordListRequest) ProtoMessage() {}
- func (x *FindAIChatRecordListRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[20]
- 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 FindAIChatRecordListRequest.ProtoReflect.Descriptor instead.
- func (*FindAIChatRecordListRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{20}
- }
- func (x *FindAIChatRecordListRequest) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *FindAIChatRecordListRequest) GetOffset() int64 {
- if x != nil {
- return x.Offset
- }
- return 0
- }
- func (x *FindAIChatRecordListRequest) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- type AIRobotList struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- List []*AIRobotInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
- }
- func (x *AIRobotList) Reset() {
- *x = AIRobotList{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AIRobotList) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AIRobotList) ProtoMessage() {}
- func (x *AIRobotList) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[21]
- 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 AIRobotList.ProtoReflect.Descriptor instead.
- func (*AIRobotList) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{21}
- }
- func (x *AIRobotList) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *AIRobotList) GetList() []*AIRobotInfo {
- if x != nil {
- return x.List
- }
- return make([]*AIRobotInfo, 0)
- }
- type AIRobotInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // ai名称
- AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // ai头像
- Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // ai性别
- Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // ai年龄
- Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // ai星座
- LastTime int64 `protobuf:"varint,7,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
- LastContent string `protobuf:"bytes,8,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送的内容
- UnreadNum int64 `protobuf:"varint,9,opt,name=unreadNum,proto3" json:"unreadNum"` // 未读
- Status string `protobuf:"bytes,10,opt,name=status,proto3" json:"status"` // 状态
- CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
- UserName string `protobuf:"bytes,12,opt,name=userName,proto3" json:"userName"` // 用户名
- ExpirationTime int64 `protobuf:"varint,13,opt,name=expirationTime,proto3" json:"expirationTime"` // 过期时间
- }
- func (x *AIRobotInfo) Reset() {
- *x = AIRobotInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AIRobotInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AIRobotInfo) ProtoMessage() {}
- func (x *AIRobotInfo) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[22]
- 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 AIRobotInfo.ProtoReflect.Descriptor instead.
- func (*AIRobotInfo) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{22}
- }
- func (x *AIRobotInfo) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *AIRobotInfo) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *AIRobotInfo) GetAvatarUrl() string {
- if x != nil {
- return x.AvatarUrl
- }
- return ""
- }
- func (x *AIRobotInfo) GetSex() int64 {
- if x != nil {
- return x.Sex
- }
- return 0
- }
- func (x *AIRobotInfo) GetAge() int64 {
- if x != nil {
- return x.Age
- }
- return 0
- }
- func (x *AIRobotInfo) GetConstellation() string {
- if x != nil {
- return x.Constellation
- }
- return ""
- }
- func (x *AIRobotInfo) GetLastTime() int64 {
- if x != nil {
- return x.LastTime
- }
- return 0
- }
- func (x *AIRobotInfo) GetLastContent() string {
- if x != nil {
- return x.LastContent
- }
- return ""
- }
- func (x *AIRobotInfo) GetUnreadNum() int64 {
- if x != nil {
- return x.UnreadNum
- }
- return 0
- }
- func (x *AIRobotInfo) GetStatus() string {
- if x != nil {
- return x.Status
- }
- return ""
- }
- func (x *AIRobotInfo) GetCreateTime() int64 {
- if x != nil {
- return x.CreateTime
- }
- return 0
- }
- func (x *AIRobotInfo) GetUserName() string {
- if x != nil {
- return x.UserName
- }
- return ""
- }
- func (x *AIRobotInfo) GetExpirationTime() int64 {
- if x != nil {
- return x.ExpirationTime
- }
- return 0
- }
- type FindAIRobotListRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
- }
- func (x *FindAIRobotListRequest) Reset() {
- *x = FindAIRobotListRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindAIRobotListRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindAIRobotListRequest) ProtoMessage() {}
- func (x *FindAIRobotListRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[23]
- 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 FindAIRobotListRequest.ProtoReflect.Descriptor instead.
- func (*FindAIRobotListRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{23}
- }
- func (x *FindAIRobotListRequest) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *FindAIRobotListRequest) GetOffset() int64 {
- if x != nil {
- return x.Offset
- }
- return 0
- }
- type UpdateAIRobotRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- AiName string `protobuf:"bytes,2,opt,name=aiName,proto3" json:"aiName"` // 自定义ai名称
- UserName string `protobuf:"bytes,3,opt,name=userName,proto3" json:"userName"` // ai对我的称呼
- }
- func (x *UpdateAIRobotRequest) Reset() {
- *x = UpdateAIRobotRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UpdateAIRobotRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UpdateAIRobotRequest) ProtoMessage() {}
- func (x *UpdateAIRobotRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[24]
- 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 UpdateAIRobotRequest.ProtoReflect.Descriptor instead.
- func (*UpdateAIRobotRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{24}
- }
- func (x *UpdateAIRobotRequest) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *UpdateAIRobotRequest) GetAiName() string {
- if x != nil {
- return x.AiName
- }
- return ""
- }
- func (x *UpdateAIRobotRequest) GetUserName() string {
- if x != nil {
- return x.UserName
- }
- return ""
- }
- type AIRobotIDRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- }
- func (x *AIRobotIDRequest) Reset() {
- *x = AIRobotIDRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AIRobotIDRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AIRobotIDRequest) ProtoMessage() {}
- func (x *AIRobotIDRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[25]
- 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 AIRobotIDRequest.ProtoReflect.Descriptor instead.
- func (*AIRobotIDRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{25}
- }
- func (x *AIRobotIDRequest) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- type FindAITemplateRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
- Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 性别
- }
- func (x *FindAITemplateRequest) Reset() {
- *x = FindAITemplateRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindAITemplateRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindAITemplateRequest) ProtoMessage() {}
- func (x *FindAITemplateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[26]
- 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 FindAITemplateRequest.ProtoReflect.Descriptor instead.
- func (*FindAITemplateRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{26}
- }
- func (x *FindAITemplateRequest) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *FindAITemplateRequest) GetOffset() int64 {
- if x != nil {
- return x.Offset
- }
- return 0
- }
- func (x *FindAITemplateRequest) GetSex() int64 {
- if x != nil {
- return x.Sex
- }
- return 0
- }
- type FindAITemplateReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- List []*AITemplateInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
- }
- func (x *FindAITemplateReply) Reset() {
- *x = FindAITemplateReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindAITemplateReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindAITemplateReply) ProtoMessage() {}
- func (x *FindAITemplateReply) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[27]
- 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 FindAITemplateReply.ProtoReflect.Descriptor instead.
- func (*FindAITemplateReply) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{27}
- }
- func (x *FindAITemplateReply) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *FindAITemplateReply) GetList() []*AITemplateInfo {
- if x != nil {
- return x.List
- }
- return make([]*AITemplateInfo, 0)
- }
- type AITemplateInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // ai模板ID
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // ai名称
- AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // ai头像
- Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // ai性别
- Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // ai年龄
- Label []string `protobuf:"bytes,6,rep,name=label,proto3" json:"label"` // ai标签
- Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` // ai描述
- Constellation string `protobuf:"bytes,8,opt,name=constellation,proto3" json:"constellation"` // ai星座
- RelationList []*Relation `protobuf:"bytes,9,rep,name=relationList,proto3" json:"relationList"` // ai关系列表
- IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
- }
- func (x *AITemplateInfo) Reset() {
- *x = AITemplateInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AITemplateInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AITemplateInfo) ProtoMessage() {}
- func (x *AITemplateInfo) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[28]
- 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 AITemplateInfo.ProtoReflect.Descriptor instead.
- func (*AITemplateInfo) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{28}
- }
- func (x *AITemplateInfo) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *AITemplateInfo) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *AITemplateInfo) GetAvatarUrl() string {
- if x != nil {
- return x.AvatarUrl
- }
- return ""
- }
- func (x *AITemplateInfo) GetSex() int64 {
- if x != nil {
- return x.Sex
- }
- return 0
- }
- func (x *AITemplateInfo) GetAge() int64 {
- if x != nil {
- return x.Age
- }
- return 0
- }
- func (x *AITemplateInfo) GetLabel() []string {
- if x != nil {
- return x.Label
- }
- return make([]string, 0)
- }
- func (x *AITemplateInfo) GetDescription() string {
- if x != nil {
- return x.Description
- }
- return ""
- }
- func (x *AITemplateInfo) GetConstellation() string {
- if x != nil {
- return x.Constellation
- }
- return ""
- }
- func (x *AITemplateInfo) GetRelationList() []*Relation {
- if x != nil {
- return x.RelationList
- }
- return make([]*Relation, 0)
- }
- func (x *AITemplateInfo) GetIntroduceVoice() string {
- if x != nil {
- return x.IntroduceVoice
- }
- return ""
- }
- type Relation struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 关系ID
- Picture string `protobuf:"bytes,2,opt,name=picture,proto3" json:"picture"` // 图片
- Relation string `protobuf:"bytes,3,opt,name=relation,proto3" json:"relation"` // 关系
- }
- func (x *Relation) Reset() {
- *x = Relation{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Relation) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Relation) ProtoMessage() {}
- func (x *Relation) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[29]
- 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 Relation.ProtoReflect.Descriptor instead.
- func (*Relation) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{29}
- }
- func (x *Relation) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *Relation) GetPicture() string {
- if x != nil {
- return x.Picture
- }
- return ""
- }
- func (x *Relation) GetRelation() string {
- if x != nil {
- return x.Relation
- }
- return ""
- }
- type CreateAIRobotRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // ai模板ID
- AiName string `protobuf:"bytes,2,opt,name=aiName,proto3" json:"aiName"` // 自定义ai名称
- UserName string `protobuf:"bytes,3,opt,name=userName,proto3" json:"userName"` // ai对我的称呼
- RelationId int64 `protobuf:"varint,4,opt,name=relationId,proto3" json:"relationId"` // 关系ID
- }
- func (x *CreateAIRobotRequest) Reset() {
- *x = CreateAIRobotRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CreateAIRobotRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CreateAIRobotRequest) ProtoMessage() {}
- func (x *CreateAIRobotRequest) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[30]
- 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 CreateAIRobotRequest.ProtoReflect.Descriptor instead.
- func (*CreateAIRobotRequest) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{30}
- }
- func (x *CreateAIRobotRequest) GetTemplateId() int64 {
- if x != nil {
- return x.TemplateId
- }
- return 0
- }
- func (x *CreateAIRobotRequest) GetAiName() string {
- if x != nil {
- return x.AiName
- }
- return ""
- }
- func (x *CreateAIRobotRequest) GetUserName() string {
- if x != nil {
- return x.UserName
- }
- return ""
- }
- func (x *CreateAIRobotRequest) GetRelationId() int64 {
- if x != nil {
- return x.RelationId
- }
- return 0
- }
- type SendNextNeedPayMessage struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
- }
- func (x *SendNextNeedPayMessage) Reset() {
- *x = SendNextNeedPayMessage{}
- if protoimpl.UnsafeEnabled {
- mi := &file_ai_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SendNextNeedPayMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SendNextNeedPayMessage) ProtoMessage() {}
- func (x *SendNextNeedPayMessage) ProtoReflect() protoreflect.Message {
- mi := &file_ai_proto_msgTypes[31]
- 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 SendNextNeedPayMessage.ProtoReflect.Descriptor instead.
- func (*SendNextNeedPayMessage) Descriptor() ([]byte, []int) {
- return file_ai_proto_rawDescGZIP(), []int{31}
- }
- func (x *SendNextNeedPayMessage) GetRobotId() int64 {
- if x != nil {
- return x.RobotId
- }
- return 0
- }
- var File_ai_proto protoreflect.FileDescriptor
- var file_ai_proto_rawDesc = []byte{
- 0x0a, 0x08, 0x61, 0x69, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x61, 0x70, 0x69, 0x2e,
- 0x61, 0x69, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
- 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x1a, 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, 0x1b,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
- 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x96, 0x01, 0x0a, 0x1a,
- 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x3a, 0x0a, 0x18, 0x6c, 0x69,
- 0x6e, 0x6b, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
- 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x18, 0x6c, 0x69,
- 0x6e, 0x6b, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
- 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3c, 0x0a, 0x19, 0x73, 0x68, 0x61, 0x72, 0x65, 0x53,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
- 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x19, 0x73, 0x68, 0x61, 0x72, 0x65,
- 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
- 0x65, 0x49, 0x64, 0x73, 0x22, 0x43, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x69, 0x50,
- 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
- 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x48, 0x0a, 0x14, 0x53, 0x68, 0x61,
- 0x72, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x68, 0x61,
- 0x72, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72,
- 0x65, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c,
- 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69,
- 0x64, 0x65, 0x6f, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x76, 0x69,
- 0x64, 0x65, 0x6f, 0x55, 0x72, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
- 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74,
- 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49,
- 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64,
- 0x22, 0x33, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x65, 0x51, 0x72, 0x63, 0x6f,
- 0x64, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x71, 0x72, 0x63, 0x6f, 0x64,
- 0x65, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x71, 0x72, 0x63, 0x6f,
- 0x64, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x4c, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68,
- 0x61, 0x72, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62,
- 0x6f, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f,
- 0x74, 0x49, 0x64, 0x22, 0x69, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72,
- 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a,
- 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x53,
- 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xab,
- 0x03, 0x0a, 0x0b, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14,
- 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74,
- 0x69, 0x74, 0x6c, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72,
- 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b,
- 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
- 0x0a, 0x08, 0x74, 0x6f, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x74, 0x6f, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x6e,
- 0x64, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x77, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0e, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x77, 0x4c, 0x61, 0x62,
- 0x65, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x48, 0x69, 0x64, 0x65, 0x4c,
- 0x61, 0x62, 0x65, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75, 0x6e, 0x64, 0x65,
- 0x72, 0x48, 0x69, 0x64, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73,
- 0x56, 0x69, 0x70, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70,
- 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e,
- 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6c, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x0a, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x06, 0x61, 0x6c, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x6e, 0x75,
- 0x6d, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0e, 0x6e, 0x75, 0x6d, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x18, 0x0c,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
- 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
- 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x18, 0x0f, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x22, 0x4e, 0x0a, 0x16,
- 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x41, 0x49, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x12, 0x1c,
- 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x44, 0x0a, 0x10,
- 0x47, 0x65, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f,
- 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74,
- 0x49, 0x64, 0x22, 0xac, 0x01, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64,
- 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x12,
- 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12,
- 0x12, 0x0a, 0x04, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77,
- 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x64,
- 0x61, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x64, 0x61, 0x79, 0x12, 0x12, 0x0a,
- 0x04, 0x68, 0x6f, 0x75, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x68, 0x6f, 0x75,
- 0x72, 0x22, 0x57, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
- 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64,
- 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x47,
- 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
- 0x69, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f,
- 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74,
- 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x10,
- 0x0a, 0x03, 0x64, 0x61, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x64, 0x61, 0x79,
- 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x75, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
- 0x68, 0x6f, 0x75, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
- 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
- 0x74, 0x65, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x26, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x69,
- 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d,
- 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x35,
- 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
- 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52,
- 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x61, 0x0a, 0x19, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f,
- 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61,
- 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74,
- 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69,
- 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x20, 0x0a, 0x0e, 0x41, 0x49, 0x52, 0x6f,
- 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x55, 0x0a, 0x11, 0x41, 0x49,
- 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
- 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49,
- 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
- 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
- 0x64, 0x22, 0xf5, 0x01, 0x0a, 0x0c, 0x41, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e,
- 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64,
- 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x29, 0x0a, 0x07, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x12,
- 0x16, 0x0a, 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54,
- 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54,
- 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67, 0x22, 0x23, 0x0a, 0x07, 0x4d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x96,
- 0x01, 0x0a, 0x11, 0x53, 0x65, 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x12, 0x29,
- 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x0f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67,
- 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54,
- 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74,
- 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f,
- 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x22, 0x5d, 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x41,
- 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16,
- 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4e, 0x0a, 0x0b, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f,
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x27, 0x0a,
- 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f,
- 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xf1, 0x02, 0x0a, 0x0b, 0x41, 0x49, 0x52, 0x6f, 0x62,
- 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
- 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
- 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20,
- 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x08, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x09, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16,
- 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61,
- 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61,
- 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x48, 0x0a, 0x16, 0x46, 0x69,
- 0x6e, 0x64, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x22, 0x5a, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x49,
- 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06,
- 0x61, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x69,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
- 0x22, 0x22, 0x0a, 0x10, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x02, 0x69, 0x64, 0x22, 0x59, 0x0a, 0x15, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65,
- 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
- 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
- 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x10, 0x0a,
- 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22,
- 0x59, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
- 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x2a,
- 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
- 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xb2, 0x02, 0x0a, 0x0e, 0x41,
- 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12,
- 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
- 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
- 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x06, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
- 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x0a, 0x0d, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x12, 0x34, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
- 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69,
- 0x2e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f,
- 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x22,
- 0x50, 0x0a, 0x08, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70,
- 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x69,
- 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x22, 0x8a, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f,
- 0x62, 0x6f, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65,
- 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
- 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x69,
- 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x69, 0x4e, 0x61,
- 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e,
- 0x0a, 0x0a, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0a, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x32,
- 0x0a, 0x16, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x78, 0x74, 0x4e, 0x65, 0x65, 0x64, 0x50, 0x61,
- 0x79, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f,
- 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74,
- 0x49, 0x64, 0x32, 0x8a, 0x11, 0x0a, 0x02, 0x41, 0x69, 0x12, 0x6e, 0x0a, 0x0e, 0x46, 0x69, 0x6e,
- 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c,
- 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61,
- 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
- 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
- 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x60, 0x0a, 0x0d, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x61, 0x69, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f,
- 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
- 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
- 0x69, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x0d, 0x44,
- 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12, 0x18, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f,
- 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x60, 0x0a, 0x0d, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x61, 0x69, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f,
- 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
- 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
- 0x69, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x46,
- 0x69, 0x6e, 0x64, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1e,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x52, 0x6f,
- 0x62, 0x6f, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70,
- 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
- 0x2a, 0x12, 0x59, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12,
- 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74,
- 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f,
- 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x14,
- 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
- 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69,
- 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69,
- 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61,
- 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72,
- 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x58, 0x0a, 0x0a, 0x53, 0x65, 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68,
- 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x53, 0x65, 0x6e, 0x64,
- 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x17, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x11, 0x22, 0x0c, 0x2f,
- 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x8c,
- 0x01, 0x0a, 0x21, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
- 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
- 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2e, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69,
- 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
- 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x65,
- 0x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a,
- 0x14, 0x47, 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65,
- 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47,
- 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
- 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
- 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73,
- 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a,
- 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
- 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
- 0x69, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
- 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
- 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
- 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x11, 0x46,
- 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x41, 0x49, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
- 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x41, 0x49, 0x4d, 0x65, 0x73, 0x73,
- 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14,
- 0x22, 0x0f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x49, 0x0a, 0x15, 0x43, 0x72, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x69,
- 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
- 0x3f, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x12, 0x18, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
- 0x12, 0x77, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47,
- 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69,
- 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
- 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61, 0x69, 0x2f, 0x6d,
- 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0e, 0x47, 0x65, 0x74,
- 0x53, 0x68, 0x61, 0x72, 0x65, 0x51, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d,
- 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x65, 0x51,
- 0x72, 0x63, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61,
- 0x69, 0x2f, 0x71, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x62, 0x0a, 0x0c, 0x53,
- 0x65, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x1b, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x53, 0x65, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e,
- 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73,
- 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61, 0x69, 0x2f, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
- 0x61, 0x0a, 0x07, 0x56, 0x69, 0x70, 0x55, 0x70, 0x41, 0x49, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61,
- 0x70, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61, 0x69, 0x2f, 0x76, 0x69, 0x70, 0x3a,
- 0x01, 0x2a, 0x12, 0x47, 0x0a, 0x0d, 0x53, 0x68, 0x61, 0x72, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
- 0x6e, 0x74, 0x6f, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x53, 0x68, 0x61,
- 0x72, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x12, 0x47,
- 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x69, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x43, 0x6f, 0x6e,
- 0x66, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x69, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61,
- 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72,
- 0x65, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x15, 0x47, 0x65, 0x74,
- 0x41, 0x49, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x62, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f,
- 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2f, 0x69, 0x64, 0x3a, 0x01, 0x2a, 0x42,
- 0x37, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x50, 0x01, 0x5a, 0x2b, 0x67, 0x69, 0x74,
- 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76,
- 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61,
- 0x70, 0x69, 0x2f, 0x61, 0x69, 0x3b, 0x61, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_ai_proto_rawDescOnce sync.Once
- file_ai_proto_rawDescData = file_ai_proto_rawDesc
- )
- func file_ai_proto_rawDescGZIP() []byte {
- file_ai_proto_rawDescOnce.Do(func() {
- file_ai_proto_rawDescData = protoimpl.X.CompressGZIP(file_ai_proto_rawDescData)
- })
- return file_ai_proto_rawDescData
- }
- var file_ai_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
- var file_ai_proto_goTypes = []interface{}{
- (*GetAISubscribeMessageReply)(nil), // 0: api.ai.GetAISubscribeMessageReply
- (*GetMiniProgramConfReply)(nil), // 1: api.ai.GetMiniProgramConfReply
- (*ShareUserIntoRequest)(nil), // 2: api.ai.ShareUserIntoRequest
- (*SetVideoLinkRequest)(nil), // 3: api.ai.SetVideoLinkRequest
- (*GetShareQrcodeReply)(nil), // 4: api.ai.GetShareQrcodeReply
- (*GetAIShareMessageRequest)(nil), // 5: api.ai.GetAIShareMessageRequest
- (*GetAIShareMessageReply)(nil), // 6: api.ai.GetAIShareMessageReply
- (*AIShareInfo)(nil), // 7: api.ai.AIShareInfo
- (*FindUserAIMessageReply)(nil), // 8: api.ai.FindUserAIMessageReply
- (*GetIsReadRequest)(nil), // 9: api.ai.GetIsReadRequest
- (*UpdateAdditionalServiceRequest)(nil), // 10: api.ai.UpdateAdditionalServiceRequest
- (*GetAdditionalServiceRequest)(nil), // 11: api.ai.GetAdditionalServiceRequest
- (*GetAdditionalServiceReply)(nil), // 12: api.ai.GetAdditionalServiceReply
- (*FindAdditionalServiceTemplateListReply)(nil), // 13: api.ai.FindAdditionalServiceTemplateListReply
- (*AdditionalServiceTemplate)(nil), // 14: api.ai.AdditionalServiceTemplate
- (*AIRobotIDReply)(nil), // 15: api.ai.AIRobotIDReply
- (*AIRecordListReply)(nil), // 16: api.ai.AIRecordListReply
- (*AIRecordInfo)(nil), // 17: api.ai.AIRecordInfo
- (*Message)(nil), // 18: api.ai.Message
- (*SendAIChatRequest)(nil), // 19: api.ai.SendAIChatRequest
- (*FindAIChatRecordListRequest)(nil), // 20: api.ai.FindAIChatRecordListRequest
- (*AIRobotList)(nil), // 21: api.ai.AIRobotList
- (*AIRobotInfo)(nil), // 22: api.ai.AIRobotInfo
- (*FindAIRobotListRequest)(nil), // 23: api.ai.FindAIRobotListRequest
- (*UpdateAIRobotRequest)(nil), // 24: api.ai.UpdateAIRobotRequest
- (*AIRobotIDRequest)(nil), // 25: api.ai.AIRobotIDRequest
- (*FindAITemplateRequest)(nil), // 26: api.ai.FindAITemplateRequest
- (*FindAITemplateReply)(nil), // 27: api.ai.FindAITemplateReply
- (*AITemplateInfo)(nil), // 28: api.ai.AITemplateInfo
- (*Relation)(nil), // 29: api.ai.Relation
- (*CreateAIRobotRequest)(nil), // 30: api.ai.CreateAIRobotRequest
- (*SendNextNeedPayMessage)(nil), // 31: api.ai.SendNextNeedPayMessage
- (*emptypb.Empty)(nil), // 32: google.protobuf.Empty
- }
- var file_ai_proto_depIdxs = []int32{
- 7, // 0: api.ai.GetAIShareMessageReply.list:type_name -> api.ai.AIShareInfo
- 14, // 1: api.ai.FindAdditionalServiceTemplateListReply.list:type_name -> api.ai.AdditionalServiceTemplate
- 17, // 2: api.ai.AIRecordListReply.list:type_name -> api.ai.AIRecordInfo
- 18, // 3: api.ai.AIRecordInfo.message:type_name -> api.ai.Message
- 18, // 4: api.ai.SendAIChatRequest.message:type_name -> api.ai.Message
- 22, // 5: api.ai.AIRobotList.list:type_name -> api.ai.AIRobotInfo
- 28, // 6: api.ai.FindAITemplateReply.list:type_name -> api.ai.AITemplateInfo
- 29, // 7: api.ai.AITemplateInfo.relationList:type_name -> api.ai.Relation
- 26, // 8: api.ai.Ai.FindAITemplate:input_type -> api.ai.FindAITemplateRequest
- 30, // 9: api.ai.Ai.CreateAIRobot:input_type -> api.ai.CreateAIRobotRequest
- 25, // 10: api.ai.Ai.DeleteAIRobot:input_type -> api.ai.AIRobotIDRequest
- 24, // 11: api.ai.Ai.UpdateAIRobot:input_type -> api.ai.UpdateAIRobotRequest
- 23, // 12: api.ai.Ai.FindAIRobotList:input_type -> api.ai.FindAIRobotListRequest
- 25, // 13: api.ai.Ai.GetAIRobot:input_type -> api.ai.AIRobotIDRequest
- 20, // 14: api.ai.Ai.FindAIChatRecordList:input_type -> api.ai.FindAIChatRecordListRequest
- 19, // 15: api.ai.Ai.SendAIChat:input_type -> api.ai.SendAIChatRequest
- 32, // 16: api.ai.Ai.FindAdditionalServiceTemplateList:input_type -> google.protobuf.Empty
- 11, // 17: api.ai.Ai.GetAdditionalService:input_type -> api.ai.GetAdditionalServiceRequest
- 10, // 18: api.ai.Ai.UpdateAdditionalService:input_type -> api.ai.UpdateAdditionalServiceRequest
- 32, // 19: api.ai.Ai.FindUserAIMessage:input_type -> google.protobuf.Empty
- 32, // 20: api.ai.Ai.CronAdditionalService:input_type -> google.protobuf.Empty
- 9, // 21: api.ai.Ai.GetIsRead:input_type -> api.ai.GetIsReadRequest
- 5, // 22: api.ai.Ai.GetAIShareMessage:input_type -> api.ai.GetAIShareMessageRequest
- 5, // 23: api.ai.Ai.GetShareQrcode:input_type -> api.ai.GetAIShareMessageRequest
- 3, // 24: api.ai.Ai.SetVideoLink:input_type -> api.ai.SetVideoLinkRequest
- 5, // 25: api.ai.Ai.VipUpAI:input_type -> api.ai.GetAIShareMessageRequest
- 2, // 26: api.ai.Ai.ShareUserInto:input_type -> api.ai.ShareUserIntoRequest
- 32, // 27: api.ai.Ai.GetMiniProgramConf:input_type -> google.protobuf.Empty
- 32, // 28: api.ai.Ai.GetAISubscribeMessage:input_type -> google.protobuf.Empty
- 27, // 29: api.ai.Ai.FindAITemplate:output_type -> api.ai.FindAITemplateReply
- 15, // 30: api.ai.Ai.CreateAIRobot:output_type -> api.ai.AIRobotIDReply
- 32, // 31: api.ai.Ai.DeleteAIRobot:output_type -> google.protobuf.Empty
- 15, // 32: api.ai.Ai.UpdateAIRobot:output_type -> api.ai.AIRobotIDReply
- 21, // 33: api.ai.Ai.FindAIRobotList:output_type -> api.ai.AIRobotList
- 22, // 34: api.ai.Ai.GetAIRobot:output_type -> api.ai.AIRobotInfo
- 16, // 35: api.ai.Ai.FindAIChatRecordList:output_type -> api.ai.AIRecordListReply
- 32, // 36: api.ai.Ai.SendAIChat:output_type -> google.protobuf.Empty
- 13, // 37: api.ai.Ai.FindAdditionalServiceTemplateList:output_type -> api.ai.FindAdditionalServiceTemplateListReply
- 12, // 38: api.ai.Ai.GetAdditionalService:output_type -> api.ai.GetAdditionalServiceReply
- 32, // 39: api.ai.Ai.UpdateAdditionalService:output_type -> google.protobuf.Empty
- 8, // 40: api.ai.Ai.FindUserAIMessage:output_type -> api.ai.FindUserAIMessageReply
- 32, // 41: api.ai.Ai.CronAdditionalService:output_type -> google.protobuf.Empty
- 32, // 42: api.ai.Ai.GetIsRead:output_type -> google.protobuf.Empty
- 6, // 43: api.ai.Ai.GetAIShareMessage:output_type -> api.ai.GetAIShareMessageReply
- 4, // 44: api.ai.Ai.GetShareQrcode:output_type -> api.ai.GetShareQrcodeReply
- 32, // 45: api.ai.Ai.SetVideoLink:output_type -> google.protobuf.Empty
- 32, // 46: api.ai.Ai.VipUpAI:output_type -> google.protobuf.Empty
- 32, // 47: api.ai.Ai.ShareUserInto:output_type -> google.protobuf.Empty
- 1, // 48: api.ai.Ai.GetMiniProgramConf:output_type -> api.ai.GetMiniProgramConfReply
- 0, // 49: api.ai.Ai.GetAISubscribeMessage:output_type -> api.ai.GetAISubscribeMessageReply
- 29, // [29:50] is the sub-list for method output_type
- 8, // [8:29] is the sub-list for method input_type
- 8, // [8:8] is the sub-list for extension type_name
- 8, // [8:8] is the sub-list for extension extendee
- 0, // [0:8] is the sub-list for field type_name
- }
- func init() { file_ai_proto_init() }
- func file_ai_proto_init() {
- if File_ai_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_ai_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetAISubscribeMessageReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetMiniProgramConfReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ShareUserIntoRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SetVideoLinkRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetShareQrcodeReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetAIShareMessageRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetAIShareMessageReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AIShareInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindUserAIMessageReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetIsReadRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateAdditionalServiceRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetAdditionalServiceRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetAdditionalServiceReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindAdditionalServiceTemplateListReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AdditionalServiceTemplate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AIRobotIDReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AIRecordListReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AIRecordInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Message); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SendAIChatRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindAIChatRecordListRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AIRobotList); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AIRobotInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindAIRobotListRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateAIRobotRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AIRobotIDRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindAITemplateRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindAITemplateReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AITemplateInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Relation); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateAIRobotRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_ai_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SendNextNeedPayMessage); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_ai_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 32,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_ai_proto_goTypes,
- DependencyIndexes: file_ai_proto_depIdxs,
- MessageInfos: file_ai_proto_msgTypes,
- }.Build()
- File_ai_proto = out.File
- file_ai_proto_rawDesc = nil
- file_ai_proto_goTypes = nil
- file_ai_proto_depIdxs = nil
- }
|