ai.pb.go 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1-devel
  4. // protoc v3.21.8
  5. // source: ai.proto
  6. package ai
  7. import (
  8. _ "google.golang.org/genproto/googleapis/api/annotations"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. emptypb "google.golang.org/protobuf/types/known/emptypb"
  12. _ "google.golang.org/protobuf/types/known/structpb"
  13. reflect "reflect"
  14. sync "sync"
  15. )
  16. const (
  17. // Verify that this generated code is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  19. // Verify that runtime/protoimpl is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  21. )
  22. type GetAISubscribeMessageReply struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. LinkSubscribeTemplateIds []string `protobuf:"bytes,2,rep,name=linkSubscribeTemplateIds,proto3" json:"linkSubscribeTemplateIds"` // 点击【提交链接】按钮收集
  27. ShareSubscribeTemplateIds []string `protobuf:"bytes,3,rep,name=shareSubscribeTemplateIds,proto3" json:"shareSubscribeTemplateIds"` // 点击【立即邀请】按钮收集
  28. }
  29. func (x *GetAISubscribeMessageReply) Reset() {
  30. *x = GetAISubscribeMessageReply{}
  31. if protoimpl.UnsafeEnabled {
  32. mi := &file_ai_proto_msgTypes[0]
  33. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  34. ms.StoreMessageInfo(mi)
  35. }
  36. }
  37. func (x *GetAISubscribeMessageReply) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*GetAISubscribeMessageReply) ProtoMessage() {}
  41. func (x *GetAISubscribeMessageReply) ProtoReflect() protoreflect.Message {
  42. mi := &file_ai_proto_msgTypes[0]
  43. if protoimpl.UnsafeEnabled && x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use GetAISubscribeMessageReply.ProtoReflect.Descriptor instead.
  53. func (*GetAISubscribeMessageReply) Descriptor() ([]byte, []int) {
  54. return file_ai_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *GetAISubscribeMessageReply) GetLinkSubscribeTemplateIds() []string {
  57. if x != nil {
  58. return x.LinkSubscribeTemplateIds
  59. }
  60. return make([]string, 0)
  61. }
  62. func (x *GetAISubscribeMessageReply) GetShareSubscribeTemplateIds() []string {
  63. if x != nil {
  64. return x.ShareSubscribeTemplateIds
  65. }
  66. return make([]string, 0)
  67. }
  68. type GetMiniProgramConfReply struct {
  69. state protoimpl.MessageState
  70. sizeCache protoimpl.SizeCache
  71. unknownFields protoimpl.UnknownFields
  72. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid"`
  73. Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path"`
  74. }
  75. func (x *GetMiniProgramConfReply) Reset() {
  76. *x = GetMiniProgramConfReply{}
  77. if protoimpl.UnsafeEnabled {
  78. mi := &file_ai_proto_msgTypes[1]
  79. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  80. ms.StoreMessageInfo(mi)
  81. }
  82. }
  83. func (x *GetMiniProgramConfReply) String() string {
  84. return protoimpl.X.MessageStringOf(x)
  85. }
  86. func (*GetMiniProgramConfReply) ProtoMessage() {}
  87. func (x *GetMiniProgramConfReply) ProtoReflect() protoreflect.Message {
  88. mi := &file_ai_proto_msgTypes[1]
  89. if protoimpl.UnsafeEnabled && x != nil {
  90. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  91. if ms.LoadMessageInfo() == nil {
  92. ms.StoreMessageInfo(mi)
  93. }
  94. return ms
  95. }
  96. return mi.MessageOf(x)
  97. }
  98. // Deprecated: Use GetMiniProgramConfReply.ProtoReflect.Descriptor instead.
  99. func (*GetMiniProgramConfReply) Descriptor() ([]byte, []int) {
  100. return file_ai_proto_rawDescGZIP(), []int{1}
  101. }
  102. func (x *GetMiniProgramConfReply) GetAppid() string {
  103. if x != nil {
  104. return x.Appid
  105. }
  106. return ""
  107. }
  108. func (x *GetMiniProgramConfReply) GetPath() string {
  109. if x != nil {
  110. return x.Path
  111. }
  112. return ""
  113. }
  114. type ShareUserIntoRequest struct {
  115. state protoimpl.MessageState
  116. sizeCache protoimpl.SizeCache
  117. unknownFields protoimpl.UnknownFields
  118. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId"` // 用户openID
  119. ShareId int64 `protobuf:"varint,2,opt,name=shareId,proto3" json:"shareId"` // 分享ID
  120. }
  121. func (x *ShareUserIntoRequest) Reset() {
  122. *x = ShareUserIntoRequest{}
  123. if protoimpl.UnsafeEnabled {
  124. mi := &file_ai_proto_msgTypes[2]
  125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  126. ms.StoreMessageInfo(mi)
  127. }
  128. }
  129. func (x *ShareUserIntoRequest) String() string {
  130. return protoimpl.X.MessageStringOf(x)
  131. }
  132. func (*ShareUserIntoRequest) ProtoMessage() {}
  133. func (x *ShareUserIntoRequest) ProtoReflect() protoreflect.Message {
  134. mi := &file_ai_proto_msgTypes[2]
  135. if protoimpl.UnsafeEnabled && x != nil {
  136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  137. if ms.LoadMessageInfo() == nil {
  138. ms.StoreMessageInfo(mi)
  139. }
  140. return ms
  141. }
  142. return mi.MessageOf(x)
  143. }
  144. // Deprecated: Use ShareUserIntoRequest.ProtoReflect.Descriptor instead.
  145. func (*ShareUserIntoRequest) Descriptor() ([]byte, []int) {
  146. return file_ai_proto_rawDescGZIP(), []int{2}
  147. }
  148. func (x *ShareUserIntoRequest) GetOpenId() string {
  149. if x != nil {
  150. return x.OpenId
  151. }
  152. return ""
  153. }
  154. func (x *ShareUserIntoRequest) GetShareId() int64 {
  155. if x != nil {
  156. return x.ShareId
  157. }
  158. return 0
  159. }
  160. type SetVideoLinkRequest struct {
  161. state protoimpl.MessageState
  162. sizeCache protoimpl.SizeCache
  163. unknownFields protoimpl.UnknownFields
  164. VideoUrl string `protobuf:"bytes,1,opt,name=videoUrl,proto3" json:"videoUrl"`
  165. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"`
  166. RobotId int64 `protobuf:"varint,3,opt,name=robotId,proto3" json:"robotId"`
  167. }
  168. func (x *SetVideoLinkRequest) Reset() {
  169. *x = SetVideoLinkRequest{}
  170. if protoimpl.UnsafeEnabled {
  171. mi := &file_ai_proto_msgTypes[3]
  172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  173. ms.StoreMessageInfo(mi)
  174. }
  175. }
  176. func (x *SetVideoLinkRequest) String() string {
  177. return protoimpl.X.MessageStringOf(x)
  178. }
  179. func (*SetVideoLinkRequest) ProtoMessage() {}
  180. func (x *SetVideoLinkRequest) ProtoReflect() protoreflect.Message {
  181. mi := &file_ai_proto_msgTypes[3]
  182. if protoimpl.UnsafeEnabled && x != nil {
  183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  184. if ms.LoadMessageInfo() == nil {
  185. ms.StoreMessageInfo(mi)
  186. }
  187. return ms
  188. }
  189. return mi.MessageOf(x)
  190. }
  191. // Deprecated: Use SetVideoLinkRequest.ProtoReflect.Descriptor instead.
  192. func (*SetVideoLinkRequest) Descriptor() ([]byte, []int) {
  193. return file_ai_proto_rawDescGZIP(), []int{3}
  194. }
  195. func (x *SetVideoLinkRequest) GetVideoUrl() string {
  196. if x != nil {
  197. return x.VideoUrl
  198. }
  199. return ""
  200. }
  201. func (x *SetVideoLinkRequest) GetPictureUrl() string {
  202. if x != nil {
  203. return x.PictureUrl
  204. }
  205. return ""
  206. }
  207. func (x *SetVideoLinkRequest) GetRobotId() int64 {
  208. if x != nil {
  209. return x.RobotId
  210. }
  211. return 0
  212. }
  213. type GetShareQrcodeReply struct {
  214. state protoimpl.MessageState
  215. sizeCache protoimpl.SizeCache
  216. unknownFields protoimpl.UnknownFields
  217. QrcodeUrl []string `protobuf:"bytes,1,rep,name=qrcodeUrl,proto3" json:"qrcodeUrl"`
  218. }
  219. func (x *GetShareQrcodeReply) Reset() {
  220. *x = GetShareQrcodeReply{}
  221. if protoimpl.UnsafeEnabled {
  222. mi := &file_ai_proto_msgTypes[4]
  223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  224. ms.StoreMessageInfo(mi)
  225. }
  226. }
  227. func (x *GetShareQrcodeReply) String() string {
  228. return protoimpl.X.MessageStringOf(x)
  229. }
  230. func (*GetShareQrcodeReply) ProtoMessage() {}
  231. func (x *GetShareQrcodeReply) ProtoReflect() protoreflect.Message {
  232. mi := &file_ai_proto_msgTypes[4]
  233. if protoimpl.UnsafeEnabled && x != nil {
  234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  235. if ms.LoadMessageInfo() == nil {
  236. ms.StoreMessageInfo(mi)
  237. }
  238. return ms
  239. }
  240. return mi.MessageOf(x)
  241. }
  242. // Deprecated: Use GetShareQrcodeReply.ProtoReflect.Descriptor instead.
  243. func (*GetShareQrcodeReply) Descriptor() ([]byte, []int) {
  244. return file_ai_proto_rawDescGZIP(), []int{4}
  245. }
  246. func (x *GetShareQrcodeReply) GetQrcodeUrl() []string {
  247. if x != nil {
  248. return x.QrcodeUrl
  249. }
  250. return make([]string, 0)
  251. }
  252. type GetAIShareMessageRequest struct {
  253. state protoimpl.MessageState
  254. sizeCache protoimpl.SizeCache
  255. unknownFields protoimpl.UnknownFields
  256. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"` // 用户ID
  257. RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
  258. }
  259. func (x *GetAIShareMessageRequest) Reset() {
  260. *x = GetAIShareMessageRequest{}
  261. if protoimpl.UnsafeEnabled {
  262. mi := &file_ai_proto_msgTypes[5]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. }
  267. func (x *GetAIShareMessageRequest) String() string {
  268. return protoimpl.X.MessageStringOf(x)
  269. }
  270. func (*GetAIShareMessageRequest) ProtoMessage() {}
  271. func (x *GetAIShareMessageRequest) ProtoReflect() protoreflect.Message {
  272. mi := &file_ai_proto_msgTypes[5]
  273. if protoimpl.UnsafeEnabled && x != nil {
  274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  275. if ms.LoadMessageInfo() == nil {
  276. ms.StoreMessageInfo(mi)
  277. }
  278. return ms
  279. }
  280. return mi.MessageOf(x)
  281. }
  282. // Deprecated: Use GetAIShareMessageRequest.ProtoReflect.Descriptor instead.
  283. func (*GetAIShareMessageRequest) Descriptor() ([]byte, []int) {
  284. return file_ai_proto_rawDescGZIP(), []int{5}
  285. }
  286. func (x *GetAIShareMessageRequest) GetUserId() string {
  287. if x != nil {
  288. return x.UserId
  289. }
  290. return ""
  291. }
  292. func (x *GetAIShareMessageRequest) GetRobotId() int64 {
  293. if x != nil {
  294. return x.RobotId
  295. }
  296. return 0
  297. }
  298. type GetAIShareMessageReply struct {
  299. state protoimpl.MessageState
  300. sizeCache protoimpl.SizeCache
  301. unknownFields protoimpl.UnknownFields
  302. ExpirationTime int64 `protobuf:"varint,1,opt,name=expirationTime,proto3" json:"expirationTime"` // 过期时间
  303. List []*AIShareInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  304. }
  305. func (x *GetAIShareMessageReply) Reset() {
  306. *x = GetAIShareMessageReply{}
  307. if protoimpl.UnsafeEnabled {
  308. mi := &file_ai_proto_msgTypes[6]
  309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  310. ms.StoreMessageInfo(mi)
  311. }
  312. }
  313. func (x *GetAIShareMessageReply) String() string {
  314. return protoimpl.X.MessageStringOf(x)
  315. }
  316. func (*GetAIShareMessageReply) ProtoMessage() {}
  317. func (x *GetAIShareMessageReply) ProtoReflect() protoreflect.Message {
  318. mi := &file_ai_proto_msgTypes[6]
  319. if protoimpl.UnsafeEnabled && x != nil {
  320. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  321. if ms.LoadMessageInfo() == nil {
  322. ms.StoreMessageInfo(mi)
  323. }
  324. return ms
  325. }
  326. return mi.MessageOf(x)
  327. }
  328. // Deprecated: Use GetAIShareMessageReply.ProtoReflect.Descriptor instead.
  329. func (*GetAIShareMessageReply) Descriptor() ([]byte, []int) {
  330. return file_ai_proto_rawDescGZIP(), []int{6}
  331. }
  332. func (x *GetAIShareMessageReply) GetExpirationTime() int64 {
  333. if x != nil {
  334. return x.ExpirationTime
  335. }
  336. return 0
  337. }
  338. func (x *GetAIShareMessageReply) GetList() []*AIShareInfo {
  339. if x != nil {
  340. return x.List
  341. }
  342. return make([]*AIShareInfo, 0)
  343. }
  344. type AIShareInfo struct {
  345. state protoimpl.MessageState
  346. sizeCache protoimpl.SizeCache
  347. unknownFields protoimpl.UnknownFields
  348. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title"` // 标题
  349. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"` // 价格
  350. OriginPrice int64 `protobuf:"varint,3,opt,name=originPrice,proto3" json:"originPrice"` // 原价
  351. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"` // 描述
  352. TopLabel string `protobuf:"bytes,5,opt,name=topLabel,proto3" json:"topLabel"` // 上面的标签 (例:限时免费)
  353. UnderShowLabel string `protobuf:"bytes,6,opt,name=underShowLabel,proto3" json:"underShowLabel"` // 下面的标签 (例:发短视频)
  354. UnderHideLabel string `protobuf:"bytes,7,opt,name=underHideLabel,proto3" json:"underHideLabel"` // 下面的标签 (例:点赞两次)
  355. IsVip bool `protobuf:"varint,8,opt,name=isVip,proto3" json:"isVip"` // 是否是vip
  356. Num int64 `protobuf:"varint,9,opt,name=num,proto3" json:"num"` // 分享数、点赞数
  357. AllNum int64 `protobuf:"varint,10,opt,name=allNum,proto3" json:"allNum"` // 总数
  358. NumDescription string `protobuf:"bytes,11,opt,name=numDescription,proto3" json:"numDescription"` // num的描述
  359. IsFinish bool `protobuf:"varint,12,opt,name=isFinish,proto3" json:"isFinish"` // 是否完成
  360. Id int64 `protobuf:"varint,13,opt,name=id,proto3" json:"id"`
  361. Type string `protobuf:"bytes,14,opt,name=type,proto3" json:"type"`
  362. IsStart bool `protobuf:"varint,15,opt,name=isStart,proto3" json:"isStart"` // 是否开启任务
  363. }
  364. func (x *AIShareInfo) Reset() {
  365. *x = AIShareInfo{}
  366. if protoimpl.UnsafeEnabled {
  367. mi := &file_ai_proto_msgTypes[7]
  368. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  369. ms.StoreMessageInfo(mi)
  370. }
  371. }
  372. func (x *AIShareInfo) String() string {
  373. return protoimpl.X.MessageStringOf(x)
  374. }
  375. func (*AIShareInfo) ProtoMessage() {}
  376. func (x *AIShareInfo) ProtoReflect() protoreflect.Message {
  377. mi := &file_ai_proto_msgTypes[7]
  378. if protoimpl.UnsafeEnabled && x != nil {
  379. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  380. if ms.LoadMessageInfo() == nil {
  381. ms.StoreMessageInfo(mi)
  382. }
  383. return ms
  384. }
  385. return mi.MessageOf(x)
  386. }
  387. // Deprecated: Use AIShareInfo.ProtoReflect.Descriptor instead.
  388. func (*AIShareInfo) Descriptor() ([]byte, []int) {
  389. return file_ai_proto_rawDescGZIP(), []int{7}
  390. }
  391. func (x *AIShareInfo) GetTitle() string {
  392. if x != nil {
  393. return x.Title
  394. }
  395. return ""
  396. }
  397. func (x *AIShareInfo) GetPrice() int64 {
  398. if x != nil {
  399. return x.Price
  400. }
  401. return 0
  402. }
  403. func (x *AIShareInfo) GetOriginPrice() int64 {
  404. if x != nil {
  405. return x.OriginPrice
  406. }
  407. return 0
  408. }
  409. func (x *AIShareInfo) GetDescription() string {
  410. if x != nil {
  411. return x.Description
  412. }
  413. return ""
  414. }
  415. func (x *AIShareInfo) GetTopLabel() string {
  416. if x != nil {
  417. return x.TopLabel
  418. }
  419. return ""
  420. }
  421. func (x *AIShareInfo) GetUnderShowLabel() string {
  422. if x != nil {
  423. return x.UnderShowLabel
  424. }
  425. return ""
  426. }
  427. func (x *AIShareInfo) GetUnderHideLabel() string {
  428. if x != nil {
  429. return x.UnderHideLabel
  430. }
  431. return ""
  432. }
  433. func (x *AIShareInfo) GetIsVip() bool {
  434. if x != nil {
  435. return x.IsVip
  436. }
  437. return false
  438. }
  439. func (x *AIShareInfo) GetNum() int64 {
  440. if x != nil {
  441. return x.Num
  442. }
  443. return 0
  444. }
  445. func (x *AIShareInfo) GetAllNum() int64 {
  446. if x != nil {
  447. return x.AllNum
  448. }
  449. return 0
  450. }
  451. func (x *AIShareInfo) GetNumDescription() string {
  452. if x != nil {
  453. return x.NumDescription
  454. }
  455. return ""
  456. }
  457. func (x *AIShareInfo) GetIsFinish() bool {
  458. if x != nil {
  459. return x.IsFinish
  460. }
  461. return false
  462. }
  463. func (x *AIShareInfo) GetId() int64 {
  464. if x != nil {
  465. return x.Id
  466. }
  467. return 0
  468. }
  469. func (x *AIShareInfo) GetType() string {
  470. if x != nil {
  471. return x.Type
  472. }
  473. return ""
  474. }
  475. func (x *AIShareInfo) GetIsStart() bool {
  476. if x != nil {
  477. return x.IsStart
  478. }
  479. return false
  480. }
  481. type FindUserAIMessageReply struct {
  482. state protoimpl.MessageState
  483. sizeCache protoimpl.SizeCache
  484. unknownFields protoimpl.UnknownFields
  485. IsFree bool `protobuf:"varint,1,opt,name=isFree,proto3" json:"isFree"` // 创建是否免费
  486. UnreadNum int64 `protobuf:"varint,2,opt,name=unreadNum,proto3" json:"unreadNum"` // 未读数
  487. }
  488. func (x *FindUserAIMessageReply) Reset() {
  489. *x = FindUserAIMessageReply{}
  490. if protoimpl.UnsafeEnabled {
  491. mi := &file_ai_proto_msgTypes[8]
  492. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  493. ms.StoreMessageInfo(mi)
  494. }
  495. }
  496. func (x *FindUserAIMessageReply) String() string {
  497. return protoimpl.X.MessageStringOf(x)
  498. }
  499. func (*FindUserAIMessageReply) ProtoMessage() {}
  500. func (x *FindUserAIMessageReply) ProtoReflect() protoreflect.Message {
  501. mi := &file_ai_proto_msgTypes[8]
  502. if protoimpl.UnsafeEnabled && x != nil {
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. if ms.LoadMessageInfo() == nil {
  505. ms.StoreMessageInfo(mi)
  506. }
  507. return ms
  508. }
  509. return mi.MessageOf(x)
  510. }
  511. // Deprecated: Use FindUserAIMessageReply.ProtoReflect.Descriptor instead.
  512. func (*FindUserAIMessageReply) Descriptor() ([]byte, []int) {
  513. return file_ai_proto_rawDescGZIP(), []int{8}
  514. }
  515. func (x *FindUserAIMessageReply) GetIsFree() bool {
  516. if x != nil {
  517. return x.IsFree
  518. }
  519. return false
  520. }
  521. func (x *FindUserAIMessageReply) GetUnreadNum() int64 {
  522. if x != nil {
  523. return x.UnreadNum
  524. }
  525. return 0
  526. }
  527. type GetIsReadRequest struct {
  528. state protoimpl.MessageState
  529. sizeCache protoimpl.SizeCache
  530. unknownFields protoimpl.UnknownFields
  531. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  532. RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"`
  533. }
  534. func (x *GetIsReadRequest) Reset() {
  535. *x = GetIsReadRequest{}
  536. if protoimpl.UnsafeEnabled {
  537. mi := &file_ai_proto_msgTypes[9]
  538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  539. ms.StoreMessageInfo(mi)
  540. }
  541. }
  542. func (x *GetIsReadRequest) String() string {
  543. return protoimpl.X.MessageStringOf(x)
  544. }
  545. func (*GetIsReadRequest) ProtoMessage() {}
  546. func (x *GetIsReadRequest) ProtoReflect() protoreflect.Message {
  547. mi := &file_ai_proto_msgTypes[9]
  548. if protoimpl.UnsafeEnabled && x != nil {
  549. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  550. if ms.LoadMessageInfo() == nil {
  551. ms.StoreMessageInfo(mi)
  552. }
  553. return ms
  554. }
  555. return mi.MessageOf(x)
  556. }
  557. // Deprecated: Use GetIsReadRequest.ProtoReflect.Descriptor instead.
  558. func (*GetIsReadRequest) Descriptor() ([]byte, []int) {
  559. return file_ai_proto_rawDescGZIP(), []int{9}
  560. }
  561. func (x *GetIsReadRequest) GetUserId() string {
  562. if x != nil {
  563. return x.UserId
  564. }
  565. return ""
  566. }
  567. func (x *GetIsReadRequest) GetRobotId() int64 {
  568. if x != nil {
  569. return x.RobotId
  570. }
  571. return 0
  572. }
  573. type UpdateAdditionalServiceRequest struct {
  574. state protoimpl.MessageState
  575. sizeCache protoimpl.SizeCache
  576. unknownFields protoimpl.UnknownFields
  577. RobotId int64 `protobuf:"varint,1,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
  578. TemplateId int64 `protobuf:"varint,2,opt,name=templateId,proto3" json:"templateId"`
  579. Word string `protobuf:"bytes,3,opt,name=word,proto3" json:"word"` // 关键词
  580. IsOpen bool `protobuf:"varint,4,opt,name=isOpen,proto3" json:"isOpen"` // 是否开启
  581. Day []int64 `protobuf:"varint,5,rep,packed,name=day,proto3" json:"day"` // 定时的天
  582. Hour int64 `protobuf:"varint,6,opt,name=hour,proto3" json:"hour"` // 定时小时
  583. }
  584. func (x *UpdateAdditionalServiceRequest) Reset() {
  585. *x = UpdateAdditionalServiceRequest{}
  586. if protoimpl.UnsafeEnabled {
  587. mi := &file_ai_proto_msgTypes[10]
  588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  589. ms.StoreMessageInfo(mi)
  590. }
  591. }
  592. func (x *UpdateAdditionalServiceRequest) String() string {
  593. return protoimpl.X.MessageStringOf(x)
  594. }
  595. func (*UpdateAdditionalServiceRequest) ProtoMessage() {}
  596. func (x *UpdateAdditionalServiceRequest) ProtoReflect() protoreflect.Message {
  597. mi := &file_ai_proto_msgTypes[10]
  598. if protoimpl.UnsafeEnabled && x != nil {
  599. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  600. if ms.LoadMessageInfo() == nil {
  601. ms.StoreMessageInfo(mi)
  602. }
  603. return ms
  604. }
  605. return mi.MessageOf(x)
  606. }
  607. // Deprecated: Use UpdateAdditionalServiceRequest.ProtoReflect.Descriptor instead.
  608. func (*UpdateAdditionalServiceRequest) Descriptor() ([]byte, []int) {
  609. return file_ai_proto_rawDescGZIP(), []int{10}
  610. }
  611. func (x *UpdateAdditionalServiceRequest) GetRobotId() int64 {
  612. if x != nil {
  613. return x.RobotId
  614. }
  615. return 0
  616. }
  617. func (x *UpdateAdditionalServiceRequest) GetTemplateId() int64 {
  618. if x != nil {
  619. return x.TemplateId
  620. }
  621. return 0
  622. }
  623. func (x *UpdateAdditionalServiceRequest) GetWord() string {
  624. if x != nil {
  625. return x.Word
  626. }
  627. return ""
  628. }
  629. func (x *UpdateAdditionalServiceRequest) GetIsOpen() bool {
  630. if x != nil {
  631. return x.IsOpen
  632. }
  633. return false
  634. }
  635. func (x *UpdateAdditionalServiceRequest) GetDay() []int64 {
  636. if x != nil {
  637. return x.Day
  638. }
  639. return make([]int64, 0)
  640. }
  641. func (x *UpdateAdditionalServiceRequest) GetHour() int64 {
  642. if x != nil {
  643. return x.Hour
  644. }
  645. return 0
  646. }
  647. type GetAdditionalServiceRequest struct {
  648. state protoimpl.MessageState
  649. sizeCache protoimpl.SizeCache
  650. unknownFields protoimpl.UnknownFields
  651. TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 对应列表的ID
  652. RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
  653. }
  654. func (x *GetAdditionalServiceRequest) Reset() {
  655. *x = GetAdditionalServiceRequest{}
  656. if protoimpl.UnsafeEnabled {
  657. mi := &file_ai_proto_msgTypes[11]
  658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  659. ms.StoreMessageInfo(mi)
  660. }
  661. }
  662. func (x *GetAdditionalServiceRequest) String() string {
  663. return protoimpl.X.MessageStringOf(x)
  664. }
  665. func (*GetAdditionalServiceRequest) ProtoMessage() {}
  666. func (x *GetAdditionalServiceRequest) ProtoReflect() protoreflect.Message {
  667. mi := &file_ai_proto_msgTypes[11]
  668. if protoimpl.UnsafeEnabled && x != nil {
  669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  670. if ms.LoadMessageInfo() == nil {
  671. ms.StoreMessageInfo(mi)
  672. }
  673. return ms
  674. }
  675. return mi.MessageOf(x)
  676. }
  677. // Deprecated: Use GetAdditionalServiceRequest.ProtoReflect.Descriptor instead.
  678. func (*GetAdditionalServiceRequest) Descriptor() ([]byte, []int) {
  679. return file_ai_proto_rawDescGZIP(), []int{11}
  680. }
  681. func (x *GetAdditionalServiceRequest) GetTemplateId() int64 {
  682. if x != nil {
  683. return x.TemplateId
  684. }
  685. return 0
  686. }
  687. func (x *GetAdditionalServiceRequest) GetRobotId() int64 {
  688. if x != nil {
  689. return x.RobotId
  690. }
  691. return 0
  692. }
  693. type GetAdditionalServiceReply struct {
  694. state protoimpl.MessageState
  695. sizeCache protoimpl.SizeCache
  696. unknownFields protoimpl.UnknownFields
  697. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  698. RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
  699. Word string `protobuf:"bytes,3,opt,name=word,proto3" json:"word"` // 关键词
  700. IsOpen bool `protobuf:"varint,4,opt,name=isOpen,proto3" json:"isOpen"` // 是否开启
  701. Day []int64 `protobuf:"varint,5,rep,packed,name=day,proto3" json:"day"` // 定时的天
  702. Hour int64 `protobuf:"varint,6,opt,name=hour,proto3" json:"hour"` // 定时小时
  703. TemplateId int64 `protobuf:"varint,7,opt,name=templateId,proto3" json:"templateId"`
  704. }
  705. func (x *GetAdditionalServiceReply) Reset() {
  706. *x = GetAdditionalServiceReply{}
  707. if protoimpl.UnsafeEnabled {
  708. mi := &file_ai_proto_msgTypes[12]
  709. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  710. ms.StoreMessageInfo(mi)
  711. }
  712. }
  713. func (x *GetAdditionalServiceReply) String() string {
  714. return protoimpl.X.MessageStringOf(x)
  715. }
  716. func (*GetAdditionalServiceReply) ProtoMessage() {}
  717. func (x *GetAdditionalServiceReply) ProtoReflect() protoreflect.Message {
  718. mi := &file_ai_proto_msgTypes[12]
  719. if protoimpl.UnsafeEnabled && x != nil {
  720. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  721. if ms.LoadMessageInfo() == nil {
  722. ms.StoreMessageInfo(mi)
  723. }
  724. return ms
  725. }
  726. return mi.MessageOf(x)
  727. }
  728. // Deprecated: Use GetAdditionalServiceReply.ProtoReflect.Descriptor instead.
  729. func (*GetAdditionalServiceReply) Descriptor() ([]byte, []int) {
  730. return file_ai_proto_rawDescGZIP(), []int{12}
  731. }
  732. func (x *GetAdditionalServiceReply) GetId() int64 {
  733. if x != nil {
  734. return x.Id
  735. }
  736. return 0
  737. }
  738. func (x *GetAdditionalServiceReply) GetRobotId() int64 {
  739. if x != nil {
  740. return x.RobotId
  741. }
  742. return 0
  743. }
  744. func (x *GetAdditionalServiceReply) GetWord() string {
  745. if x != nil {
  746. return x.Word
  747. }
  748. return ""
  749. }
  750. func (x *GetAdditionalServiceReply) GetIsOpen() bool {
  751. if x != nil {
  752. return x.IsOpen
  753. }
  754. return false
  755. }
  756. func (x *GetAdditionalServiceReply) GetDay() []int64 {
  757. if x != nil {
  758. return x.Day
  759. }
  760. return make([]int64, 0)
  761. }
  762. func (x *GetAdditionalServiceReply) GetHour() int64 {
  763. if x != nil {
  764. return x.Hour
  765. }
  766. return 0
  767. }
  768. func (x *GetAdditionalServiceReply) GetTemplateId() int64 {
  769. if x != nil {
  770. return x.TemplateId
  771. }
  772. return 0
  773. }
  774. type FindAdditionalServiceTemplateListReply struct {
  775. state protoimpl.MessageState
  776. sizeCache protoimpl.SizeCache
  777. unknownFields protoimpl.UnknownFields
  778. List []*AdditionalServiceTemplate `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  779. }
  780. func (x *FindAdditionalServiceTemplateListReply) Reset() {
  781. *x = FindAdditionalServiceTemplateListReply{}
  782. if protoimpl.UnsafeEnabled {
  783. mi := &file_ai_proto_msgTypes[13]
  784. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  785. ms.StoreMessageInfo(mi)
  786. }
  787. }
  788. func (x *FindAdditionalServiceTemplateListReply) String() string {
  789. return protoimpl.X.MessageStringOf(x)
  790. }
  791. func (*FindAdditionalServiceTemplateListReply) ProtoMessage() {}
  792. func (x *FindAdditionalServiceTemplateListReply) ProtoReflect() protoreflect.Message {
  793. mi := &file_ai_proto_msgTypes[13]
  794. if protoimpl.UnsafeEnabled && x != nil {
  795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  796. if ms.LoadMessageInfo() == nil {
  797. ms.StoreMessageInfo(mi)
  798. }
  799. return ms
  800. }
  801. return mi.MessageOf(x)
  802. }
  803. // Deprecated: Use FindAdditionalServiceTemplateListReply.ProtoReflect.Descriptor instead.
  804. func (*FindAdditionalServiceTemplateListReply) Descriptor() ([]byte, []int) {
  805. return file_ai_proto_rawDescGZIP(), []int{13}
  806. }
  807. func (x *FindAdditionalServiceTemplateListReply) GetList() []*AdditionalServiceTemplate {
  808. if x != nil {
  809. return x.List
  810. }
  811. return make([]*AdditionalServiceTemplate, 0)
  812. }
  813. type AdditionalServiceTemplate struct {
  814. state protoimpl.MessageState
  815. sizeCache protoimpl.SizeCache
  816. unknownFields protoimpl.UnknownFields
  817. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // id
  818. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"` // 名称
  819. PictureUrl string `protobuf:"bytes,3,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 图片链接
  820. }
  821. func (x *AdditionalServiceTemplate) Reset() {
  822. *x = AdditionalServiceTemplate{}
  823. if protoimpl.UnsafeEnabled {
  824. mi := &file_ai_proto_msgTypes[14]
  825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  826. ms.StoreMessageInfo(mi)
  827. }
  828. }
  829. func (x *AdditionalServiceTemplate) String() string {
  830. return protoimpl.X.MessageStringOf(x)
  831. }
  832. func (*AdditionalServiceTemplate) ProtoMessage() {}
  833. func (x *AdditionalServiceTemplate) ProtoReflect() protoreflect.Message {
  834. mi := &file_ai_proto_msgTypes[14]
  835. if protoimpl.UnsafeEnabled && x != nil {
  836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  837. if ms.LoadMessageInfo() == nil {
  838. ms.StoreMessageInfo(mi)
  839. }
  840. return ms
  841. }
  842. return mi.MessageOf(x)
  843. }
  844. // Deprecated: Use AdditionalServiceTemplate.ProtoReflect.Descriptor instead.
  845. func (*AdditionalServiceTemplate) Descriptor() ([]byte, []int) {
  846. return file_ai_proto_rawDescGZIP(), []int{14}
  847. }
  848. func (x *AdditionalServiceTemplate) GetId() int64 {
  849. if x != nil {
  850. return x.Id
  851. }
  852. return 0
  853. }
  854. func (x *AdditionalServiceTemplate) GetTitle() string {
  855. if x != nil {
  856. return x.Title
  857. }
  858. return ""
  859. }
  860. func (x *AdditionalServiceTemplate) GetPictureUrl() string {
  861. if x != nil {
  862. return x.PictureUrl
  863. }
  864. return ""
  865. }
  866. type AIRobotIDReply struct {
  867. state protoimpl.MessageState
  868. sizeCache protoimpl.SizeCache
  869. unknownFields protoimpl.UnknownFields
  870. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  871. }
  872. func (x *AIRobotIDReply) Reset() {
  873. *x = AIRobotIDReply{}
  874. if protoimpl.UnsafeEnabled {
  875. mi := &file_ai_proto_msgTypes[15]
  876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  877. ms.StoreMessageInfo(mi)
  878. }
  879. }
  880. func (x *AIRobotIDReply) String() string {
  881. return protoimpl.X.MessageStringOf(x)
  882. }
  883. func (*AIRobotIDReply) ProtoMessage() {}
  884. func (x *AIRobotIDReply) ProtoReflect() protoreflect.Message {
  885. mi := &file_ai_proto_msgTypes[15]
  886. if protoimpl.UnsafeEnabled && x != nil {
  887. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  888. if ms.LoadMessageInfo() == nil {
  889. ms.StoreMessageInfo(mi)
  890. }
  891. return ms
  892. }
  893. return mi.MessageOf(x)
  894. }
  895. // Deprecated: Use AIRobotIDReply.ProtoReflect.Descriptor instead.
  896. func (*AIRobotIDReply) Descriptor() ([]byte, []int) {
  897. return file_ai_proto_rawDescGZIP(), []int{15}
  898. }
  899. func (x *AIRobotIDReply) GetId() int64 {
  900. if x != nil {
  901. return x.Id
  902. }
  903. return 0
  904. }
  905. type AIRecordListReply struct {
  906. state protoimpl.MessageState
  907. sizeCache protoimpl.SizeCache
  908. unknownFields protoimpl.UnknownFields
  909. List []*AIRecordInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  910. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  911. }
  912. func (x *AIRecordListReply) Reset() {
  913. *x = AIRecordListReply{}
  914. if protoimpl.UnsafeEnabled {
  915. mi := &file_ai_proto_msgTypes[16]
  916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  917. ms.StoreMessageInfo(mi)
  918. }
  919. }
  920. func (x *AIRecordListReply) String() string {
  921. return protoimpl.X.MessageStringOf(x)
  922. }
  923. func (*AIRecordListReply) ProtoMessage() {}
  924. func (x *AIRecordListReply) ProtoReflect() protoreflect.Message {
  925. mi := &file_ai_proto_msgTypes[16]
  926. if protoimpl.UnsafeEnabled && x != nil {
  927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  928. if ms.LoadMessageInfo() == nil {
  929. ms.StoreMessageInfo(mi)
  930. }
  931. return ms
  932. }
  933. return mi.MessageOf(x)
  934. }
  935. // Deprecated: Use AIRecordListReply.ProtoReflect.Descriptor instead.
  936. func (*AIRecordListReply) Descriptor() ([]byte, []int) {
  937. return file_ai_proto_rawDescGZIP(), []int{16}
  938. }
  939. func (x *AIRecordListReply) GetList() []*AIRecordInfo {
  940. if x != nil {
  941. return x.List
  942. }
  943. return make([]*AIRecordInfo, 0)
  944. }
  945. func (x *AIRecordListReply) GetNextId() int64 {
  946. if x != nil {
  947. return x.NextId
  948. }
  949. return 0
  950. }
  951. type AIRecordInfo struct {
  952. state protoimpl.MessageState
  953. sizeCache protoimpl.SizeCache
  954. unknownFields protoimpl.UnknownFields
  955. MessageId int64 `protobuf:"varint,1,opt,name=messageId,proto3" json:"messageId"` // 消息的ID
  956. MsgType string `protobuf:"bytes,2,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  957. Message *Message `protobuf:"bytes,3,opt,name=message,proto3" json:"message"` // 消息的结构
  958. RobotId int64 `protobuf:"varint,4,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
  959. IsSelf bool `protobuf:"varint,5,opt,name=isSelf,proto3" json:"isSelf"` // 是否是自己
  960. SendTime int64 `protobuf:"varint,6,opt,name=sendTime,proto3" json:"sendTime"` // 发送时间
  961. Status string `protobuf:"bytes,7,opt,name=status,proto3" json:"status"` // 消息状态
  962. StatusMsg string `protobuf:"bytes,8,opt,name=statusMsg,proto3" json:"statusMsg"` // 状态说明
  963. }
  964. func (x *AIRecordInfo) Reset() {
  965. *x = AIRecordInfo{}
  966. if protoimpl.UnsafeEnabled {
  967. mi := &file_ai_proto_msgTypes[17]
  968. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  969. ms.StoreMessageInfo(mi)
  970. }
  971. }
  972. func (x *AIRecordInfo) String() string {
  973. return protoimpl.X.MessageStringOf(x)
  974. }
  975. func (*AIRecordInfo) ProtoMessage() {}
  976. func (x *AIRecordInfo) ProtoReflect() protoreflect.Message {
  977. mi := &file_ai_proto_msgTypes[17]
  978. if protoimpl.UnsafeEnabled && x != nil {
  979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  980. if ms.LoadMessageInfo() == nil {
  981. ms.StoreMessageInfo(mi)
  982. }
  983. return ms
  984. }
  985. return mi.MessageOf(x)
  986. }
  987. // Deprecated: Use AIRecordInfo.ProtoReflect.Descriptor instead.
  988. func (*AIRecordInfo) Descriptor() ([]byte, []int) {
  989. return file_ai_proto_rawDescGZIP(), []int{17}
  990. }
  991. func (x *AIRecordInfo) GetMessageId() int64 {
  992. if x != nil {
  993. return x.MessageId
  994. }
  995. return 0
  996. }
  997. func (x *AIRecordInfo) GetMsgType() string {
  998. if x != nil {
  999. return x.MsgType
  1000. }
  1001. return ""
  1002. }
  1003. func (x *AIRecordInfo) GetMessage() *Message {
  1004. if x != nil && x.Message != nil {
  1005. return x.Message
  1006. }
  1007. return &Message{}
  1008. }
  1009. func (x *AIRecordInfo) GetRobotId() int64 {
  1010. if x != nil {
  1011. return x.RobotId
  1012. }
  1013. return 0
  1014. }
  1015. func (x *AIRecordInfo) GetIsSelf() bool {
  1016. if x != nil {
  1017. return x.IsSelf
  1018. }
  1019. return false
  1020. }
  1021. func (x *AIRecordInfo) GetSendTime() int64 {
  1022. if x != nil {
  1023. return x.SendTime
  1024. }
  1025. return 0
  1026. }
  1027. func (x *AIRecordInfo) GetStatus() string {
  1028. if x != nil {
  1029. return x.Status
  1030. }
  1031. return ""
  1032. }
  1033. func (x *AIRecordInfo) GetStatusMsg() string {
  1034. if x != nil {
  1035. return x.StatusMsg
  1036. }
  1037. return ""
  1038. }
  1039. type Message struct {
  1040. state protoimpl.MessageState
  1041. sizeCache protoimpl.SizeCache
  1042. unknownFields protoimpl.UnknownFields
  1043. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 文本内容
  1044. }
  1045. func (x *Message) Reset() {
  1046. *x = Message{}
  1047. if protoimpl.UnsafeEnabled {
  1048. mi := &file_ai_proto_msgTypes[18]
  1049. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1050. ms.StoreMessageInfo(mi)
  1051. }
  1052. }
  1053. func (x *Message) String() string {
  1054. return protoimpl.X.MessageStringOf(x)
  1055. }
  1056. func (*Message) ProtoMessage() {}
  1057. func (x *Message) ProtoReflect() protoreflect.Message {
  1058. mi := &file_ai_proto_msgTypes[18]
  1059. if protoimpl.UnsafeEnabled && x != nil {
  1060. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1061. if ms.LoadMessageInfo() == nil {
  1062. ms.StoreMessageInfo(mi)
  1063. }
  1064. return ms
  1065. }
  1066. return mi.MessageOf(x)
  1067. }
  1068. // Deprecated: Use Message.ProtoReflect.Descriptor instead.
  1069. func (*Message) Descriptor() ([]byte, []int) {
  1070. return file_ai_proto_rawDescGZIP(), []int{18}
  1071. }
  1072. func (x *Message) GetContent() string {
  1073. if x != nil {
  1074. return x.Content
  1075. }
  1076. return ""
  1077. }
  1078. type SendAIChatRequest struct {
  1079. state protoimpl.MessageState
  1080. sizeCache protoimpl.SizeCache
  1081. unknownFields protoimpl.UnknownFields
  1082. RobotId int64 `protobuf:"varint,1,opt,name=robotId,proto3" json:"robotId"`
  1083. Message *Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  1084. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  1085. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  1086. }
  1087. func (x *SendAIChatRequest) Reset() {
  1088. *x = SendAIChatRequest{}
  1089. if protoimpl.UnsafeEnabled {
  1090. mi := &file_ai_proto_msgTypes[19]
  1091. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1092. ms.StoreMessageInfo(mi)
  1093. }
  1094. }
  1095. func (x *SendAIChatRequest) String() string {
  1096. return protoimpl.X.MessageStringOf(x)
  1097. }
  1098. func (*SendAIChatRequest) ProtoMessage() {}
  1099. func (x *SendAIChatRequest) ProtoReflect() protoreflect.Message {
  1100. mi := &file_ai_proto_msgTypes[19]
  1101. if protoimpl.UnsafeEnabled && x != nil {
  1102. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1103. if ms.LoadMessageInfo() == nil {
  1104. ms.StoreMessageInfo(mi)
  1105. }
  1106. return ms
  1107. }
  1108. return mi.MessageOf(x)
  1109. }
  1110. // Deprecated: Use SendAIChatRequest.ProtoReflect.Descriptor instead.
  1111. func (*SendAIChatRequest) Descriptor() ([]byte, []int) {
  1112. return file_ai_proto_rawDescGZIP(), []int{19}
  1113. }
  1114. func (x *SendAIChatRequest) GetRobotId() int64 {
  1115. if x != nil {
  1116. return x.RobotId
  1117. }
  1118. return 0
  1119. }
  1120. func (x *SendAIChatRequest) GetMessage() *Message {
  1121. if x != nil && x.Message != nil {
  1122. return x.Message
  1123. }
  1124. return &Message{}
  1125. }
  1126. func (x *SendAIChatRequest) GetMsgType() string {
  1127. if x != nil {
  1128. return x.MsgType
  1129. }
  1130. return ""
  1131. }
  1132. func (x *SendAIChatRequest) GetWebsocketTag() string {
  1133. if x != nil {
  1134. return x.WebsocketTag
  1135. }
  1136. return ""
  1137. }
  1138. type FindAIChatRecordListRequest struct {
  1139. state protoimpl.MessageState
  1140. sizeCache protoimpl.SizeCache
  1141. unknownFields protoimpl.UnknownFields
  1142. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1143. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1144. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"`
  1145. }
  1146. func (x *FindAIChatRecordListRequest) Reset() {
  1147. *x = FindAIChatRecordListRequest{}
  1148. if protoimpl.UnsafeEnabled {
  1149. mi := &file_ai_proto_msgTypes[20]
  1150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1151. ms.StoreMessageInfo(mi)
  1152. }
  1153. }
  1154. func (x *FindAIChatRecordListRequest) String() string {
  1155. return protoimpl.X.MessageStringOf(x)
  1156. }
  1157. func (*FindAIChatRecordListRequest) ProtoMessage() {}
  1158. func (x *FindAIChatRecordListRequest) ProtoReflect() protoreflect.Message {
  1159. mi := &file_ai_proto_msgTypes[20]
  1160. if protoimpl.UnsafeEnabled && x != nil {
  1161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1162. if ms.LoadMessageInfo() == nil {
  1163. ms.StoreMessageInfo(mi)
  1164. }
  1165. return ms
  1166. }
  1167. return mi.MessageOf(x)
  1168. }
  1169. // Deprecated: Use FindAIChatRecordListRequest.ProtoReflect.Descriptor instead.
  1170. func (*FindAIChatRecordListRequest) Descriptor() ([]byte, []int) {
  1171. return file_ai_proto_rawDescGZIP(), []int{20}
  1172. }
  1173. func (x *FindAIChatRecordListRequest) GetNextId() int64 {
  1174. if x != nil {
  1175. return x.NextId
  1176. }
  1177. return 0
  1178. }
  1179. func (x *FindAIChatRecordListRequest) GetOffset() int64 {
  1180. if x != nil {
  1181. return x.Offset
  1182. }
  1183. return 0
  1184. }
  1185. func (x *FindAIChatRecordListRequest) GetId() int64 {
  1186. if x != nil {
  1187. return x.Id
  1188. }
  1189. return 0
  1190. }
  1191. type AIRobotList struct {
  1192. state protoimpl.MessageState
  1193. sizeCache protoimpl.SizeCache
  1194. unknownFields protoimpl.UnknownFields
  1195. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1196. List []*AIRobotInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  1197. }
  1198. func (x *AIRobotList) Reset() {
  1199. *x = AIRobotList{}
  1200. if protoimpl.UnsafeEnabled {
  1201. mi := &file_ai_proto_msgTypes[21]
  1202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1203. ms.StoreMessageInfo(mi)
  1204. }
  1205. }
  1206. func (x *AIRobotList) String() string {
  1207. return protoimpl.X.MessageStringOf(x)
  1208. }
  1209. func (*AIRobotList) ProtoMessage() {}
  1210. func (x *AIRobotList) ProtoReflect() protoreflect.Message {
  1211. mi := &file_ai_proto_msgTypes[21]
  1212. if protoimpl.UnsafeEnabled && x != nil {
  1213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1214. if ms.LoadMessageInfo() == nil {
  1215. ms.StoreMessageInfo(mi)
  1216. }
  1217. return ms
  1218. }
  1219. return mi.MessageOf(x)
  1220. }
  1221. // Deprecated: Use AIRobotList.ProtoReflect.Descriptor instead.
  1222. func (*AIRobotList) Descriptor() ([]byte, []int) {
  1223. return file_ai_proto_rawDescGZIP(), []int{21}
  1224. }
  1225. func (x *AIRobotList) GetNextId() int64 {
  1226. if x != nil {
  1227. return x.NextId
  1228. }
  1229. return 0
  1230. }
  1231. func (x *AIRobotList) GetList() []*AIRobotInfo {
  1232. if x != nil {
  1233. return x.List
  1234. }
  1235. return make([]*AIRobotInfo, 0)
  1236. }
  1237. type AIRobotInfo struct {
  1238. state protoimpl.MessageState
  1239. sizeCache protoimpl.SizeCache
  1240. unknownFields protoimpl.UnknownFields
  1241. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1242. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // ai名称
  1243. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // ai头像
  1244. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // ai性别
  1245. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // ai年龄
  1246. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // ai星座
  1247. LastTime int64 `protobuf:"varint,7,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  1248. LastContent string `protobuf:"bytes,8,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送的内容
  1249. UnreadNum int64 `protobuf:"varint,9,opt,name=unreadNum,proto3" json:"unreadNum"` // 未读
  1250. Status string `protobuf:"bytes,10,opt,name=status,proto3" json:"status"` // 状态
  1251. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1252. UserName string `protobuf:"bytes,12,opt,name=userName,proto3" json:"userName"` // 用户名
  1253. ExpirationTime int64 `protobuf:"varint,13,opt,name=expirationTime,proto3" json:"expirationTime"` // 过期时间
  1254. }
  1255. func (x *AIRobotInfo) Reset() {
  1256. *x = AIRobotInfo{}
  1257. if protoimpl.UnsafeEnabled {
  1258. mi := &file_ai_proto_msgTypes[22]
  1259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1260. ms.StoreMessageInfo(mi)
  1261. }
  1262. }
  1263. func (x *AIRobotInfo) String() string {
  1264. return protoimpl.X.MessageStringOf(x)
  1265. }
  1266. func (*AIRobotInfo) ProtoMessage() {}
  1267. func (x *AIRobotInfo) ProtoReflect() protoreflect.Message {
  1268. mi := &file_ai_proto_msgTypes[22]
  1269. if protoimpl.UnsafeEnabled && x != nil {
  1270. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1271. if ms.LoadMessageInfo() == nil {
  1272. ms.StoreMessageInfo(mi)
  1273. }
  1274. return ms
  1275. }
  1276. return mi.MessageOf(x)
  1277. }
  1278. // Deprecated: Use AIRobotInfo.ProtoReflect.Descriptor instead.
  1279. func (*AIRobotInfo) Descriptor() ([]byte, []int) {
  1280. return file_ai_proto_rawDescGZIP(), []int{22}
  1281. }
  1282. func (x *AIRobotInfo) GetId() int64 {
  1283. if x != nil {
  1284. return x.Id
  1285. }
  1286. return 0
  1287. }
  1288. func (x *AIRobotInfo) GetName() string {
  1289. if x != nil {
  1290. return x.Name
  1291. }
  1292. return ""
  1293. }
  1294. func (x *AIRobotInfo) GetAvatarUrl() string {
  1295. if x != nil {
  1296. return x.AvatarUrl
  1297. }
  1298. return ""
  1299. }
  1300. func (x *AIRobotInfo) GetSex() int64 {
  1301. if x != nil {
  1302. return x.Sex
  1303. }
  1304. return 0
  1305. }
  1306. func (x *AIRobotInfo) GetAge() int64 {
  1307. if x != nil {
  1308. return x.Age
  1309. }
  1310. return 0
  1311. }
  1312. func (x *AIRobotInfo) GetConstellation() string {
  1313. if x != nil {
  1314. return x.Constellation
  1315. }
  1316. return ""
  1317. }
  1318. func (x *AIRobotInfo) GetLastTime() int64 {
  1319. if x != nil {
  1320. return x.LastTime
  1321. }
  1322. return 0
  1323. }
  1324. func (x *AIRobotInfo) GetLastContent() string {
  1325. if x != nil {
  1326. return x.LastContent
  1327. }
  1328. return ""
  1329. }
  1330. func (x *AIRobotInfo) GetUnreadNum() int64 {
  1331. if x != nil {
  1332. return x.UnreadNum
  1333. }
  1334. return 0
  1335. }
  1336. func (x *AIRobotInfo) GetStatus() string {
  1337. if x != nil {
  1338. return x.Status
  1339. }
  1340. return ""
  1341. }
  1342. func (x *AIRobotInfo) GetCreateTime() int64 {
  1343. if x != nil {
  1344. return x.CreateTime
  1345. }
  1346. return 0
  1347. }
  1348. func (x *AIRobotInfo) GetUserName() string {
  1349. if x != nil {
  1350. return x.UserName
  1351. }
  1352. return ""
  1353. }
  1354. func (x *AIRobotInfo) GetExpirationTime() int64 {
  1355. if x != nil {
  1356. return x.ExpirationTime
  1357. }
  1358. return 0
  1359. }
  1360. type FindAIRobotListRequest struct {
  1361. state protoimpl.MessageState
  1362. sizeCache protoimpl.SizeCache
  1363. unknownFields protoimpl.UnknownFields
  1364. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1365. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1366. }
  1367. func (x *FindAIRobotListRequest) Reset() {
  1368. *x = FindAIRobotListRequest{}
  1369. if protoimpl.UnsafeEnabled {
  1370. mi := &file_ai_proto_msgTypes[23]
  1371. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1372. ms.StoreMessageInfo(mi)
  1373. }
  1374. }
  1375. func (x *FindAIRobotListRequest) String() string {
  1376. return protoimpl.X.MessageStringOf(x)
  1377. }
  1378. func (*FindAIRobotListRequest) ProtoMessage() {}
  1379. func (x *FindAIRobotListRequest) ProtoReflect() protoreflect.Message {
  1380. mi := &file_ai_proto_msgTypes[23]
  1381. if protoimpl.UnsafeEnabled && x != nil {
  1382. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1383. if ms.LoadMessageInfo() == nil {
  1384. ms.StoreMessageInfo(mi)
  1385. }
  1386. return ms
  1387. }
  1388. return mi.MessageOf(x)
  1389. }
  1390. // Deprecated: Use FindAIRobotListRequest.ProtoReflect.Descriptor instead.
  1391. func (*FindAIRobotListRequest) Descriptor() ([]byte, []int) {
  1392. return file_ai_proto_rawDescGZIP(), []int{23}
  1393. }
  1394. func (x *FindAIRobotListRequest) GetNextId() int64 {
  1395. if x != nil {
  1396. return x.NextId
  1397. }
  1398. return 0
  1399. }
  1400. func (x *FindAIRobotListRequest) GetOffset() int64 {
  1401. if x != nil {
  1402. return x.Offset
  1403. }
  1404. return 0
  1405. }
  1406. type UpdateAIRobotRequest struct {
  1407. state protoimpl.MessageState
  1408. sizeCache protoimpl.SizeCache
  1409. unknownFields protoimpl.UnknownFields
  1410. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1411. AiName string `protobuf:"bytes,2,opt,name=aiName,proto3" json:"aiName"` // 自定义ai名称
  1412. UserName string `protobuf:"bytes,3,opt,name=userName,proto3" json:"userName"` // ai对我的称呼
  1413. }
  1414. func (x *UpdateAIRobotRequest) Reset() {
  1415. *x = UpdateAIRobotRequest{}
  1416. if protoimpl.UnsafeEnabled {
  1417. mi := &file_ai_proto_msgTypes[24]
  1418. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1419. ms.StoreMessageInfo(mi)
  1420. }
  1421. }
  1422. func (x *UpdateAIRobotRequest) String() string {
  1423. return protoimpl.X.MessageStringOf(x)
  1424. }
  1425. func (*UpdateAIRobotRequest) ProtoMessage() {}
  1426. func (x *UpdateAIRobotRequest) ProtoReflect() protoreflect.Message {
  1427. mi := &file_ai_proto_msgTypes[24]
  1428. if protoimpl.UnsafeEnabled && x != nil {
  1429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1430. if ms.LoadMessageInfo() == nil {
  1431. ms.StoreMessageInfo(mi)
  1432. }
  1433. return ms
  1434. }
  1435. return mi.MessageOf(x)
  1436. }
  1437. // Deprecated: Use UpdateAIRobotRequest.ProtoReflect.Descriptor instead.
  1438. func (*UpdateAIRobotRequest) Descriptor() ([]byte, []int) {
  1439. return file_ai_proto_rawDescGZIP(), []int{24}
  1440. }
  1441. func (x *UpdateAIRobotRequest) GetId() int64 {
  1442. if x != nil {
  1443. return x.Id
  1444. }
  1445. return 0
  1446. }
  1447. func (x *UpdateAIRobotRequest) GetAiName() string {
  1448. if x != nil {
  1449. return x.AiName
  1450. }
  1451. return ""
  1452. }
  1453. func (x *UpdateAIRobotRequest) GetUserName() string {
  1454. if x != nil {
  1455. return x.UserName
  1456. }
  1457. return ""
  1458. }
  1459. type AIRobotIDRequest struct {
  1460. state protoimpl.MessageState
  1461. sizeCache protoimpl.SizeCache
  1462. unknownFields protoimpl.UnknownFields
  1463. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1464. }
  1465. func (x *AIRobotIDRequest) Reset() {
  1466. *x = AIRobotIDRequest{}
  1467. if protoimpl.UnsafeEnabled {
  1468. mi := &file_ai_proto_msgTypes[25]
  1469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1470. ms.StoreMessageInfo(mi)
  1471. }
  1472. }
  1473. func (x *AIRobotIDRequest) String() string {
  1474. return protoimpl.X.MessageStringOf(x)
  1475. }
  1476. func (*AIRobotIDRequest) ProtoMessage() {}
  1477. func (x *AIRobotIDRequest) ProtoReflect() protoreflect.Message {
  1478. mi := &file_ai_proto_msgTypes[25]
  1479. if protoimpl.UnsafeEnabled && x != nil {
  1480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1481. if ms.LoadMessageInfo() == nil {
  1482. ms.StoreMessageInfo(mi)
  1483. }
  1484. return ms
  1485. }
  1486. return mi.MessageOf(x)
  1487. }
  1488. // Deprecated: Use AIRobotIDRequest.ProtoReflect.Descriptor instead.
  1489. func (*AIRobotIDRequest) Descriptor() ([]byte, []int) {
  1490. return file_ai_proto_rawDescGZIP(), []int{25}
  1491. }
  1492. func (x *AIRobotIDRequest) GetId() int64 {
  1493. if x != nil {
  1494. return x.Id
  1495. }
  1496. return 0
  1497. }
  1498. type FindAITemplateRequest struct {
  1499. state protoimpl.MessageState
  1500. sizeCache protoimpl.SizeCache
  1501. unknownFields protoimpl.UnknownFields
  1502. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1503. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1504. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"` // 性别
  1505. }
  1506. func (x *FindAITemplateRequest) Reset() {
  1507. *x = FindAITemplateRequest{}
  1508. if protoimpl.UnsafeEnabled {
  1509. mi := &file_ai_proto_msgTypes[26]
  1510. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1511. ms.StoreMessageInfo(mi)
  1512. }
  1513. }
  1514. func (x *FindAITemplateRequest) String() string {
  1515. return protoimpl.X.MessageStringOf(x)
  1516. }
  1517. func (*FindAITemplateRequest) ProtoMessage() {}
  1518. func (x *FindAITemplateRequest) ProtoReflect() protoreflect.Message {
  1519. mi := &file_ai_proto_msgTypes[26]
  1520. if protoimpl.UnsafeEnabled && x != nil {
  1521. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1522. if ms.LoadMessageInfo() == nil {
  1523. ms.StoreMessageInfo(mi)
  1524. }
  1525. return ms
  1526. }
  1527. return mi.MessageOf(x)
  1528. }
  1529. // Deprecated: Use FindAITemplateRequest.ProtoReflect.Descriptor instead.
  1530. func (*FindAITemplateRequest) Descriptor() ([]byte, []int) {
  1531. return file_ai_proto_rawDescGZIP(), []int{26}
  1532. }
  1533. func (x *FindAITemplateRequest) GetNextId() int64 {
  1534. if x != nil {
  1535. return x.NextId
  1536. }
  1537. return 0
  1538. }
  1539. func (x *FindAITemplateRequest) GetOffset() int64 {
  1540. if x != nil {
  1541. return x.Offset
  1542. }
  1543. return 0
  1544. }
  1545. func (x *FindAITemplateRequest) GetSex() int64 {
  1546. if x != nil {
  1547. return x.Sex
  1548. }
  1549. return 0
  1550. }
  1551. type FindAITemplateReply struct {
  1552. state protoimpl.MessageState
  1553. sizeCache protoimpl.SizeCache
  1554. unknownFields protoimpl.UnknownFields
  1555. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1556. List []*AITemplateInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  1557. }
  1558. func (x *FindAITemplateReply) Reset() {
  1559. *x = FindAITemplateReply{}
  1560. if protoimpl.UnsafeEnabled {
  1561. mi := &file_ai_proto_msgTypes[27]
  1562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1563. ms.StoreMessageInfo(mi)
  1564. }
  1565. }
  1566. func (x *FindAITemplateReply) String() string {
  1567. return protoimpl.X.MessageStringOf(x)
  1568. }
  1569. func (*FindAITemplateReply) ProtoMessage() {}
  1570. func (x *FindAITemplateReply) ProtoReflect() protoreflect.Message {
  1571. mi := &file_ai_proto_msgTypes[27]
  1572. if protoimpl.UnsafeEnabled && x != nil {
  1573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1574. if ms.LoadMessageInfo() == nil {
  1575. ms.StoreMessageInfo(mi)
  1576. }
  1577. return ms
  1578. }
  1579. return mi.MessageOf(x)
  1580. }
  1581. // Deprecated: Use FindAITemplateReply.ProtoReflect.Descriptor instead.
  1582. func (*FindAITemplateReply) Descriptor() ([]byte, []int) {
  1583. return file_ai_proto_rawDescGZIP(), []int{27}
  1584. }
  1585. func (x *FindAITemplateReply) GetNextId() int64 {
  1586. if x != nil {
  1587. return x.NextId
  1588. }
  1589. return 0
  1590. }
  1591. func (x *FindAITemplateReply) GetList() []*AITemplateInfo {
  1592. if x != nil {
  1593. return x.List
  1594. }
  1595. return make([]*AITemplateInfo, 0)
  1596. }
  1597. type AITemplateInfo struct {
  1598. state protoimpl.MessageState
  1599. sizeCache protoimpl.SizeCache
  1600. unknownFields protoimpl.UnknownFields
  1601. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // ai模板ID
  1602. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"` // ai名称
  1603. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // ai头像
  1604. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // ai性别
  1605. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // ai年龄
  1606. Label []string `protobuf:"bytes,6,rep,name=label,proto3" json:"label"` // ai标签
  1607. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` // ai描述
  1608. Constellation string `protobuf:"bytes,8,opt,name=constellation,proto3" json:"constellation"` // ai星座
  1609. RelationList []*Relation `protobuf:"bytes,9,rep,name=relationList,proto3" json:"relationList"` // ai关系列表
  1610. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1611. }
  1612. func (x *AITemplateInfo) Reset() {
  1613. *x = AITemplateInfo{}
  1614. if protoimpl.UnsafeEnabled {
  1615. mi := &file_ai_proto_msgTypes[28]
  1616. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1617. ms.StoreMessageInfo(mi)
  1618. }
  1619. }
  1620. func (x *AITemplateInfo) String() string {
  1621. return protoimpl.X.MessageStringOf(x)
  1622. }
  1623. func (*AITemplateInfo) ProtoMessage() {}
  1624. func (x *AITemplateInfo) ProtoReflect() protoreflect.Message {
  1625. mi := &file_ai_proto_msgTypes[28]
  1626. if protoimpl.UnsafeEnabled && x != nil {
  1627. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1628. if ms.LoadMessageInfo() == nil {
  1629. ms.StoreMessageInfo(mi)
  1630. }
  1631. return ms
  1632. }
  1633. return mi.MessageOf(x)
  1634. }
  1635. // Deprecated: Use AITemplateInfo.ProtoReflect.Descriptor instead.
  1636. func (*AITemplateInfo) Descriptor() ([]byte, []int) {
  1637. return file_ai_proto_rawDescGZIP(), []int{28}
  1638. }
  1639. func (x *AITemplateInfo) GetId() int64 {
  1640. if x != nil {
  1641. return x.Id
  1642. }
  1643. return 0
  1644. }
  1645. func (x *AITemplateInfo) GetName() string {
  1646. if x != nil {
  1647. return x.Name
  1648. }
  1649. return ""
  1650. }
  1651. func (x *AITemplateInfo) GetAvatarUrl() string {
  1652. if x != nil {
  1653. return x.AvatarUrl
  1654. }
  1655. return ""
  1656. }
  1657. func (x *AITemplateInfo) GetSex() int64 {
  1658. if x != nil {
  1659. return x.Sex
  1660. }
  1661. return 0
  1662. }
  1663. func (x *AITemplateInfo) GetAge() int64 {
  1664. if x != nil {
  1665. return x.Age
  1666. }
  1667. return 0
  1668. }
  1669. func (x *AITemplateInfo) GetLabel() []string {
  1670. if x != nil {
  1671. return x.Label
  1672. }
  1673. return make([]string, 0)
  1674. }
  1675. func (x *AITemplateInfo) GetDescription() string {
  1676. if x != nil {
  1677. return x.Description
  1678. }
  1679. return ""
  1680. }
  1681. func (x *AITemplateInfo) GetConstellation() string {
  1682. if x != nil {
  1683. return x.Constellation
  1684. }
  1685. return ""
  1686. }
  1687. func (x *AITemplateInfo) GetRelationList() []*Relation {
  1688. if x != nil {
  1689. return x.RelationList
  1690. }
  1691. return make([]*Relation, 0)
  1692. }
  1693. func (x *AITemplateInfo) GetIntroduceVoice() string {
  1694. if x != nil {
  1695. return x.IntroduceVoice
  1696. }
  1697. return ""
  1698. }
  1699. type Relation struct {
  1700. state protoimpl.MessageState
  1701. sizeCache protoimpl.SizeCache
  1702. unknownFields protoimpl.UnknownFields
  1703. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 关系ID
  1704. Picture string `protobuf:"bytes,2,opt,name=picture,proto3" json:"picture"` // 图片
  1705. Relation string `protobuf:"bytes,3,opt,name=relation,proto3" json:"relation"` // 关系
  1706. }
  1707. func (x *Relation) Reset() {
  1708. *x = Relation{}
  1709. if protoimpl.UnsafeEnabled {
  1710. mi := &file_ai_proto_msgTypes[29]
  1711. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1712. ms.StoreMessageInfo(mi)
  1713. }
  1714. }
  1715. func (x *Relation) String() string {
  1716. return protoimpl.X.MessageStringOf(x)
  1717. }
  1718. func (*Relation) ProtoMessage() {}
  1719. func (x *Relation) ProtoReflect() protoreflect.Message {
  1720. mi := &file_ai_proto_msgTypes[29]
  1721. if protoimpl.UnsafeEnabled && x != nil {
  1722. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1723. if ms.LoadMessageInfo() == nil {
  1724. ms.StoreMessageInfo(mi)
  1725. }
  1726. return ms
  1727. }
  1728. return mi.MessageOf(x)
  1729. }
  1730. // Deprecated: Use Relation.ProtoReflect.Descriptor instead.
  1731. func (*Relation) Descriptor() ([]byte, []int) {
  1732. return file_ai_proto_rawDescGZIP(), []int{29}
  1733. }
  1734. func (x *Relation) GetId() int64 {
  1735. if x != nil {
  1736. return x.Id
  1737. }
  1738. return 0
  1739. }
  1740. func (x *Relation) GetPicture() string {
  1741. if x != nil {
  1742. return x.Picture
  1743. }
  1744. return ""
  1745. }
  1746. func (x *Relation) GetRelation() string {
  1747. if x != nil {
  1748. return x.Relation
  1749. }
  1750. return ""
  1751. }
  1752. type CreateAIRobotRequest struct {
  1753. state protoimpl.MessageState
  1754. sizeCache protoimpl.SizeCache
  1755. unknownFields protoimpl.UnknownFields
  1756. TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // ai模板ID
  1757. AiName string `protobuf:"bytes,2,opt,name=aiName,proto3" json:"aiName"` // 自定义ai名称
  1758. UserName string `protobuf:"bytes,3,opt,name=userName,proto3" json:"userName"` // ai对我的称呼
  1759. RelationId int64 `protobuf:"varint,4,opt,name=relationId,proto3" json:"relationId"` // 关系ID
  1760. }
  1761. func (x *CreateAIRobotRequest) Reset() {
  1762. *x = CreateAIRobotRequest{}
  1763. if protoimpl.UnsafeEnabled {
  1764. mi := &file_ai_proto_msgTypes[30]
  1765. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1766. ms.StoreMessageInfo(mi)
  1767. }
  1768. }
  1769. func (x *CreateAIRobotRequest) String() string {
  1770. return protoimpl.X.MessageStringOf(x)
  1771. }
  1772. func (*CreateAIRobotRequest) ProtoMessage() {}
  1773. func (x *CreateAIRobotRequest) ProtoReflect() protoreflect.Message {
  1774. mi := &file_ai_proto_msgTypes[30]
  1775. if protoimpl.UnsafeEnabled && x != nil {
  1776. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1777. if ms.LoadMessageInfo() == nil {
  1778. ms.StoreMessageInfo(mi)
  1779. }
  1780. return ms
  1781. }
  1782. return mi.MessageOf(x)
  1783. }
  1784. // Deprecated: Use CreateAIRobotRequest.ProtoReflect.Descriptor instead.
  1785. func (*CreateAIRobotRequest) Descriptor() ([]byte, []int) {
  1786. return file_ai_proto_rawDescGZIP(), []int{30}
  1787. }
  1788. func (x *CreateAIRobotRequest) GetTemplateId() int64 {
  1789. if x != nil {
  1790. return x.TemplateId
  1791. }
  1792. return 0
  1793. }
  1794. func (x *CreateAIRobotRequest) GetAiName() string {
  1795. if x != nil {
  1796. return x.AiName
  1797. }
  1798. return ""
  1799. }
  1800. func (x *CreateAIRobotRequest) GetUserName() string {
  1801. if x != nil {
  1802. return x.UserName
  1803. }
  1804. return ""
  1805. }
  1806. func (x *CreateAIRobotRequest) GetRelationId() int64 {
  1807. if x != nil {
  1808. return x.RelationId
  1809. }
  1810. return 0
  1811. }
  1812. type SendNextNeedPayMessage struct {
  1813. state protoimpl.MessageState
  1814. sizeCache protoimpl.SizeCache
  1815. unknownFields protoimpl.UnknownFields
  1816. RobotId int64 `protobuf:"varint,2,opt,name=robotId,proto3" json:"robotId"` // 机器人ID
  1817. }
  1818. func (x *SendNextNeedPayMessage) Reset() {
  1819. *x = SendNextNeedPayMessage{}
  1820. if protoimpl.UnsafeEnabled {
  1821. mi := &file_ai_proto_msgTypes[31]
  1822. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1823. ms.StoreMessageInfo(mi)
  1824. }
  1825. }
  1826. func (x *SendNextNeedPayMessage) String() string {
  1827. return protoimpl.X.MessageStringOf(x)
  1828. }
  1829. func (*SendNextNeedPayMessage) ProtoMessage() {}
  1830. func (x *SendNextNeedPayMessage) ProtoReflect() protoreflect.Message {
  1831. mi := &file_ai_proto_msgTypes[31]
  1832. if protoimpl.UnsafeEnabled && x != nil {
  1833. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1834. if ms.LoadMessageInfo() == nil {
  1835. ms.StoreMessageInfo(mi)
  1836. }
  1837. return ms
  1838. }
  1839. return mi.MessageOf(x)
  1840. }
  1841. // Deprecated: Use SendNextNeedPayMessage.ProtoReflect.Descriptor instead.
  1842. func (*SendNextNeedPayMessage) Descriptor() ([]byte, []int) {
  1843. return file_ai_proto_rawDescGZIP(), []int{31}
  1844. }
  1845. func (x *SendNextNeedPayMessage) GetRobotId() int64 {
  1846. if x != nil {
  1847. return x.RobotId
  1848. }
  1849. return 0
  1850. }
  1851. var File_ai_proto protoreflect.FileDescriptor
  1852. var file_ai_proto_rawDesc = []byte{
  1853. 0x0a, 0x08, 0x61, 0x69, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x61, 0x70, 0x69, 0x2e,
  1854. 0x61, 0x69, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
  1855. 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1856. 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1857. 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b,
  1858. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  1859. 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x96, 0x01, 0x0a, 0x1a,
  1860. 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65,
  1861. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x3a, 0x0a, 0x18, 0x6c, 0x69,
  1862. 0x6e, 0x6b, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  1863. 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x18, 0x6c, 0x69,
  1864. 0x6e, 0x6b, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  1865. 0x61, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3c, 0x0a, 0x19, 0x73, 0x68, 0x61, 0x72, 0x65, 0x53,
  1866. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  1867. 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x19, 0x73, 0x68, 0x61, 0x72, 0x65,
  1868. 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  1869. 0x65, 0x49, 0x64, 0x73, 0x22, 0x43, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x69, 0x50,
  1870. 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  1871. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  1872. 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20,
  1873. 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x48, 0x0a, 0x14, 0x53, 0x68, 0x61,
  1874. 0x72, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1875. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1876. 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x68, 0x61,
  1877. 0x72, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72,
  1878. 0x65, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x13, 0x53, 0x65, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c,
  1879. 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69,
  1880. 0x64, 0x65, 0x6f, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x76, 0x69,
  1881. 0x64, 0x65, 0x6f, 0x55, 0x72, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  1882. 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74,
  1883. 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49,
  1884. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64,
  1885. 0x22, 0x33, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x65, 0x51, 0x72, 0x63, 0x6f,
  1886. 0x64, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x71, 0x72, 0x63, 0x6f, 0x64,
  1887. 0x65, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x71, 0x72, 0x63, 0x6f,
  1888. 0x64, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x4c, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68,
  1889. 0x61, 0x72, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1890. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1891. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62,
  1892. 0x6f, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f,
  1893. 0x74, 0x49, 0x64, 0x22, 0x69, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72,
  1894. 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a,
  1895. 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18,
  1896. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f,
  1897. 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20,
  1898. 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x53,
  1899. 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xab,
  1900. 0x03, 0x0a, 0x0b, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14,
  1901. 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74,
  1902. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20,
  1903. 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72,
  1904. 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1905. 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b,
  1906. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
  1907. 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
  1908. 0x0a, 0x08, 0x74, 0x6f, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1909. 0x52, 0x08, 0x74, 0x6f, 0x70, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x6e,
  1910. 0x64, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x77, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x06, 0x20, 0x01,
  1911. 0x28, 0x09, 0x52, 0x0e, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x77, 0x4c, 0x61, 0x62,
  1912. 0x65, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x48, 0x69, 0x64, 0x65, 0x4c,
  1913. 0x61, 0x62, 0x65, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x75, 0x6e, 0x64, 0x65,
  1914. 0x72, 0x48, 0x69, 0x64, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73,
  1915. 0x56, 0x69, 0x70, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70,
  1916. 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e,
  1917. 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6c, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x0a, 0x20, 0x01,
  1918. 0x28, 0x03, 0x52, 0x06, 0x61, 0x6c, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x6e, 0x75,
  1919. 0x6d, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01,
  1920. 0x28, 0x09, 0x52, 0x0e, 0x6e, 0x75, 0x6d, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  1921. 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x18, 0x0c,
  1922. 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x12, 0x0e,
  1923. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  1924. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  1925. 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x18, 0x0f, 0x20,
  1926. 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x22, 0x4e, 0x0a, 0x16,
  1927. 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x41, 0x49, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1928. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65,
  1929. 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x12, 0x1c,
  1930. 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
  1931. 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x44, 0x0a, 0x10,
  1932. 0x47, 0x65, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1933. 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1934. 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f,
  1935. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74,
  1936. 0x49, 0x64, 0x22, 0xac, 0x01, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64,
  1937. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65,
  1938. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64,
  1939. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x12,
  1940. 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20,
  1941. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12,
  1942. 0x12, 0x0a, 0x04, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77,
  1943. 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x18, 0x04, 0x20,
  1944. 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x64,
  1945. 0x61, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x64, 0x61, 0x79, 0x12, 0x12, 0x0a,
  1946. 0x04, 0x68, 0x6f, 0x75, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x68, 0x6f, 0x75,
  1947. 0x72, 0x22, 0x57, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  1948. 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1949. 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01,
  1950. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64,
  1951. 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1952. 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x47,
  1953. 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
  1954. 0x69, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1955. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f,
  1956. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74,
  1957. 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1958. 0x52, 0x04, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e,
  1959. 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x10,
  1960. 0x0a, 0x03, 0x64, 0x61, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x64, 0x61, 0x79,
  1961. 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x75, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  1962. 0x68, 0x6f, 0x75, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  1963. 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  1964. 0x74, 0x65, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x26, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x69,
  1965. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d,
  1966. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x35,
  1967. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x61,
  1968. 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  1969. 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52,
  1970. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x61, 0x0a, 0x19, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f,
  1971. 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  1972. 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1973. 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1974. 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74,
  1975. 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69,
  1976. 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x20, 0x0a, 0x0e, 0x41, 0x49, 0x52, 0x6f,
  1977. 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1978. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x55, 0x0a, 0x11, 0x41, 0x49,
  1979. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  1980. 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e,
  1981. 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49,
  1982. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  1983. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  1984. 0x64, 0x22, 0xf5, 0x01, 0x0a, 0x0c, 0x41, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e,
  1985. 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64, 0x18,
  1986. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x64,
  1987. 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1988. 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x29, 0x0a, 0x07, 0x6d, 0x65,
  1989. 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x61, 0x70,
  1990. 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65,
  1991. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64,
  1992. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x12,
  1993. 0x16, 0x0a, 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
  1994. 0x06, 0x69, 0x73, 0x53, 0x65, 0x6c, 0x66, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54,
  1995. 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54,
  1996. 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20,
  1997. 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73,
  1998. 0x74, 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1999. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4d, 0x73, 0x67, 0x22, 0x23, 0x0a, 0x07, 0x4d, 0x65, 0x73,
  2000. 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18,
  2001. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x96,
  2002. 0x01, 0x0a, 0x11, 0x53, 0x65, 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71,
  2003. 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x18,
  2004. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x64, 0x12, 0x29,
  2005. 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2006. 0x0f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2007. 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67,
  2008. 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54,
  2009. 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74,
  2010. 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f,
  2011. 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x22, 0x5d, 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x41,
  2012. 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2013. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  2014. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16,
  2015. 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2016. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
  2017. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4e, 0x0a, 0x0b, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f,
  2018. 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  2019. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x27, 0x0a,
  2020. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70,
  2021. 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f,
  2022. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xf1, 0x02, 0x0a, 0x0b, 0x41, 0x49, 0x52, 0x6f, 0x62,
  2023. 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2024. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  2025. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  2026. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  2027. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  2028. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
  2029. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d,
  2030. 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20,
  2031. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
  2032. 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07,
  2033. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20,
  2034. 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x08, 0x20,
  2035. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  2036. 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x09, 0x20,
  2037. 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16,
  2038. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2039. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  2040. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61,
  2041. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61,
  2042. 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61,
  2043. 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2044. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69,
  2045. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x48, 0x0a, 0x16, 0x46, 0x69,
  2046. 0x6e, 0x64, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  2047. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01,
  2048. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  2049. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
  2050. 0x66, 0x73, 0x65, 0x74, 0x22, 0x5a, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x49,
  2051. 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02,
  2052. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06,
  2053. 0x61, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x69,
  2054. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
  2055. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
  2056. 0x22, 0x22, 0x0a, 0x10, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x71,
  2057. 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2058. 0x52, 0x02, 0x69, 0x64, 0x22, 0x59, 0x0a, 0x15, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65,
  2059. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  2060. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
  2061. 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  2062. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x10, 0x0a,
  2063. 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22,
  2064. 0x59, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  2065. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  2066. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x2a,
  2067. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61,
  2068. 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  2069. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xb2, 0x02, 0x0a, 0x0e, 0x41,
  2070. 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a,
  2071. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a,
  2072. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  2073. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03,
  2074. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12,
  2075. 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
  2076. 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  2077. 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x06, 0x20, 0x03,
  2078. 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73,
  2079. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  2080. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x0a, 0x0d, 0x63,
  2081. 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01,
  2082. 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2083. 0x6e, 0x12, 0x34, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
  2084. 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69,
  2085. 0x2e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74,
  2086. 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f,
  2087. 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
  2088. 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x22,
  2089. 0x50, 0x0a, 0x08, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  2090. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70,
  2091. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x69,
  2092. 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2093. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2094. 0x6e, 0x22, 0x8a, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f,
  2095. 0x62, 0x6f, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65,
  2096. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2097. 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x69,
  2098. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x69, 0x4e, 0x61,
  2099. 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03,
  2100. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e,
  2101. 0x0a, 0x0a, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  2102. 0x28, 0x03, 0x52, 0x0a, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x32,
  2103. 0x0a, 0x16, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x78, 0x74, 0x4e, 0x65, 0x65, 0x64, 0x50, 0x61,
  2104. 0x79, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x62, 0x6f,
  2105. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x62, 0x6f, 0x74,
  2106. 0x49, 0x64, 0x32, 0x8a, 0x11, 0x0a, 0x02, 0x41, 0x69, 0x12, 0x6e, 0x0a, 0x0e, 0x46, 0x69, 0x6e,
  2107. 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70,
  2108. 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  2109. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  2110. 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  2111. 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
  2112. 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  2113. 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x60, 0x0a, 0x0d, 0x43, 0x72, 0x65,
  2114. 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  2115. 0x2e, 0x61, 0x69, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f,
  2116. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
  2117. 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2118. 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
  2119. 0x69, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x0d, 0x44,
  2120. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12, 0x18, 0x2e, 0x61,
  2121. 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52,
  2122. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2123. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19,
  2124. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f,
  2125. 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x60, 0x0a, 0x0d, 0x55, 0x70, 0x64,
  2126. 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  2127. 0x2e, 0x61, 0x69, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f,
  2128. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
  2129. 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x44, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2130. 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
  2131. 0x69, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x46,
  2132. 0x69, 0x6e, 0x64, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1e,
  2133. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x52, 0x6f,
  2134. 0x62, 0x6f, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2135. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x4c,
  2136. 0x69, 0x73, 0x74, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70,
  2137. 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
  2138. 0x2a, 0x12, 0x59, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x12,
  2139. 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74,
  2140. 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2141. 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x6f, 0x62, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c,
  2142. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f,
  2143. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x14,
  2144. 0x46, 0x69, 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  2145. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69,
  2146. 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69,
  2147. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2148. 0x61, 0x69, 0x2e, 0x41, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2149. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61,
  2150. 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72,
  2151. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x58, 0x0a, 0x0a, 0x53, 0x65, 0x6e, 0x64, 0x41, 0x49, 0x43, 0x68,
  2152. 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x53, 0x65, 0x6e, 0x64,
  2153. 0x41, 0x49, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2154. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2155. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x17, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x11, 0x22, 0x0c, 0x2f,
  2156. 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x8c,
  2157. 0x01, 0x0a, 0x21, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2158. 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  2159. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2160. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2e, 0x2e, 0x61,
  2161. 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69,
  2162. 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  2163. 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3,
  2164. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x65,
  2165. 0x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a,
  2166. 0x14, 0x47, 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65,
  2167. 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47,
  2168. 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
  2169. 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69,
  2170. 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2171. 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82,
  2172. 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73,
  2173. 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a,
  2174. 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2175. 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
  2176. 0x69, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  2177. 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2178. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2179. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
  2180. 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
  2181. 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x11, 0x46,
  2182. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x41, 0x49, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2183. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2184. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61,
  2185. 0x69, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x41, 0x49, 0x4d, 0x65, 0x73, 0x73,
  2186. 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14,
  2187. 0x22, 0x0f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2188. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x49, 0x0a, 0x15, 0x43, 0x72, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x69,
  2189. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x16, 0x2e,
  2190. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2191. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2192. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  2193. 0x3f, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x12, 0x18, 0x2e, 0x61,
  2194. 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x52,
  2195. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2196. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  2197. 0x12, 0x77, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65,
  2198. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47,
  2199. 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2200. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69,
  2201. 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2202. 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
  2203. 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61, 0x69, 0x2f, 0x6d,
  2204. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0e, 0x47, 0x65, 0x74,
  2205. 0x53, 0x68, 0x61, 0x72, 0x65, 0x51, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70,
  2206. 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d,
  2207. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e,
  2208. 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x61, 0x72, 0x65, 0x51,
  2209. 0x72, 0x63, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93,
  2210. 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61,
  2211. 0x69, 0x2f, 0x71, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x62, 0x0a, 0x0c, 0x53,
  2212. 0x65, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  2213. 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x53, 0x65, 0x74, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e,
  2214. 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2215. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2216. 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73,
  2217. 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61, 0x69, 0x2f, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  2218. 0x61, 0x0a, 0x07, 0x56, 0x69, 0x70, 0x55, 0x70, 0x41, 0x49, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69,
  2219. 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4d, 0x65,
  2220. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2221. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2222. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61,
  2223. 0x70, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x2f, 0x61, 0x69, 0x2f, 0x76, 0x69, 0x70, 0x3a,
  2224. 0x01, 0x2a, 0x12, 0x47, 0x0a, 0x0d, 0x53, 0x68, 0x61, 0x72, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
  2225. 0x6e, 0x74, 0x6f, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x2e, 0x53, 0x68, 0x61,
  2226. 0x72, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2227. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2228. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x12, 0x47,
  2229. 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x69, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x43, 0x6f, 0x6e,
  2230. 0x66, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2231. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2232. 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x6e, 0x69, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61,
  2233. 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  2234. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f, 0x73, 0x68, 0x61, 0x72,
  2235. 0x65, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x15, 0x47, 0x65, 0x74,
  2236. 0x41, 0x49, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2237. 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2238. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69,
  2239. 0x2e, 0x61, 0x69, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x49, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  2240. 0x62, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f,
  2241. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x69, 0x2f,
  2242. 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2f, 0x69, 0x64, 0x3a, 0x01, 0x2a, 0x42,
  2243. 0x37, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x2e, 0x61, 0x69, 0x50, 0x01, 0x5a, 0x2b, 0x67, 0x69, 0x74,
  2244. 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76,
  2245. 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61,
  2246. 0x70, 0x69, 0x2f, 0x61, 0x69, 0x3b, 0x61, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2247. }
  2248. var (
  2249. file_ai_proto_rawDescOnce sync.Once
  2250. file_ai_proto_rawDescData = file_ai_proto_rawDesc
  2251. )
  2252. func file_ai_proto_rawDescGZIP() []byte {
  2253. file_ai_proto_rawDescOnce.Do(func() {
  2254. file_ai_proto_rawDescData = protoimpl.X.CompressGZIP(file_ai_proto_rawDescData)
  2255. })
  2256. return file_ai_proto_rawDescData
  2257. }
  2258. var file_ai_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
  2259. var file_ai_proto_goTypes = []interface{}{
  2260. (*GetAISubscribeMessageReply)(nil), // 0: api.ai.GetAISubscribeMessageReply
  2261. (*GetMiniProgramConfReply)(nil), // 1: api.ai.GetMiniProgramConfReply
  2262. (*ShareUserIntoRequest)(nil), // 2: api.ai.ShareUserIntoRequest
  2263. (*SetVideoLinkRequest)(nil), // 3: api.ai.SetVideoLinkRequest
  2264. (*GetShareQrcodeReply)(nil), // 4: api.ai.GetShareQrcodeReply
  2265. (*GetAIShareMessageRequest)(nil), // 5: api.ai.GetAIShareMessageRequest
  2266. (*GetAIShareMessageReply)(nil), // 6: api.ai.GetAIShareMessageReply
  2267. (*AIShareInfo)(nil), // 7: api.ai.AIShareInfo
  2268. (*FindUserAIMessageReply)(nil), // 8: api.ai.FindUserAIMessageReply
  2269. (*GetIsReadRequest)(nil), // 9: api.ai.GetIsReadRequest
  2270. (*UpdateAdditionalServiceRequest)(nil), // 10: api.ai.UpdateAdditionalServiceRequest
  2271. (*GetAdditionalServiceRequest)(nil), // 11: api.ai.GetAdditionalServiceRequest
  2272. (*GetAdditionalServiceReply)(nil), // 12: api.ai.GetAdditionalServiceReply
  2273. (*FindAdditionalServiceTemplateListReply)(nil), // 13: api.ai.FindAdditionalServiceTemplateListReply
  2274. (*AdditionalServiceTemplate)(nil), // 14: api.ai.AdditionalServiceTemplate
  2275. (*AIRobotIDReply)(nil), // 15: api.ai.AIRobotIDReply
  2276. (*AIRecordListReply)(nil), // 16: api.ai.AIRecordListReply
  2277. (*AIRecordInfo)(nil), // 17: api.ai.AIRecordInfo
  2278. (*Message)(nil), // 18: api.ai.Message
  2279. (*SendAIChatRequest)(nil), // 19: api.ai.SendAIChatRequest
  2280. (*FindAIChatRecordListRequest)(nil), // 20: api.ai.FindAIChatRecordListRequest
  2281. (*AIRobotList)(nil), // 21: api.ai.AIRobotList
  2282. (*AIRobotInfo)(nil), // 22: api.ai.AIRobotInfo
  2283. (*FindAIRobotListRequest)(nil), // 23: api.ai.FindAIRobotListRequest
  2284. (*UpdateAIRobotRequest)(nil), // 24: api.ai.UpdateAIRobotRequest
  2285. (*AIRobotIDRequest)(nil), // 25: api.ai.AIRobotIDRequest
  2286. (*FindAITemplateRequest)(nil), // 26: api.ai.FindAITemplateRequest
  2287. (*FindAITemplateReply)(nil), // 27: api.ai.FindAITemplateReply
  2288. (*AITemplateInfo)(nil), // 28: api.ai.AITemplateInfo
  2289. (*Relation)(nil), // 29: api.ai.Relation
  2290. (*CreateAIRobotRequest)(nil), // 30: api.ai.CreateAIRobotRequest
  2291. (*SendNextNeedPayMessage)(nil), // 31: api.ai.SendNextNeedPayMessage
  2292. (*emptypb.Empty)(nil), // 32: google.protobuf.Empty
  2293. }
  2294. var file_ai_proto_depIdxs = []int32{
  2295. 7, // 0: api.ai.GetAIShareMessageReply.list:type_name -> api.ai.AIShareInfo
  2296. 14, // 1: api.ai.FindAdditionalServiceTemplateListReply.list:type_name -> api.ai.AdditionalServiceTemplate
  2297. 17, // 2: api.ai.AIRecordListReply.list:type_name -> api.ai.AIRecordInfo
  2298. 18, // 3: api.ai.AIRecordInfo.message:type_name -> api.ai.Message
  2299. 18, // 4: api.ai.SendAIChatRequest.message:type_name -> api.ai.Message
  2300. 22, // 5: api.ai.AIRobotList.list:type_name -> api.ai.AIRobotInfo
  2301. 28, // 6: api.ai.FindAITemplateReply.list:type_name -> api.ai.AITemplateInfo
  2302. 29, // 7: api.ai.AITemplateInfo.relationList:type_name -> api.ai.Relation
  2303. 26, // 8: api.ai.Ai.FindAITemplate:input_type -> api.ai.FindAITemplateRequest
  2304. 30, // 9: api.ai.Ai.CreateAIRobot:input_type -> api.ai.CreateAIRobotRequest
  2305. 25, // 10: api.ai.Ai.DeleteAIRobot:input_type -> api.ai.AIRobotIDRequest
  2306. 24, // 11: api.ai.Ai.UpdateAIRobot:input_type -> api.ai.UpdateAIRobotRequest
  2307. 23, // 12: api.ai.Ai.FindAIRobotList:input_type -> api.ai.FindAIRobotListRequest
  2308. 25, // 13: api.ai.Ai.GetAIRobot:input_type -> api.ai.AIRobotIDRequest
  2309. 20, // 14: api.ai.Ai.FindAIChatRecordList:input_type -> api.ai.FindAIChatRecordListRequest
  2310. 19, // 15: api.ai.Ai.SendAIChat:input_type -> api.ai.SendAIChatRequest
  2311. 32, // 16: api.ai.Ai.FindAdditionalServiceTemplateList:input_type -> google.protobuf.Empty
  2312. 11, // 17: api.ai.Ai.GetAdditionalService:input_type -> api.ai.GetAdditionalServiceRequest
  2313. 10, // 18: api.ai.Ai.UpdateAdditionalService:input_type -> api.ai.UpdateAdditionalServiceRequest
  2314. 32, // 19: api.ai.Ai.FindUserAIMessage:input_type -> google.protobuf.Empty
  2315. 32, // 20: api.ai.Ai.CronAdditionalService:input_type -> google.protobuf.Empty
  2316. 9, // 21: api.ai.Ai.GetIsRead:input_type -> api.ai.GetIsReadRequest
  2317. 5, // 22: api.ai.Ai.GetAIShareMessage:input_type -> api.ai.GetAIShareMessageRequest
  2318. 5, // 23: api.ai.Ai.GetShareQrcode:input_type -> api.ai.GetAIShareMessageRequest
  2319. 3, // 24: api.ai.Ai.SetVideoLink:input_type -> api.ai.SetVideoLinkRequest
  2320. 5, // 25: api.ai.Ai.VipUpAI:input_type -> api.ai.GetAIShareMessageRequest
  2321. 2, // 26: api.ai.Ai.ShareUserInto:input_type -> api.ai.ShareUserIntoRequest
  2322. 32, // 27: api.ai.Ai.GetMiniProgramConf:input_type -> google.protobuf.Empty
  2323. 32, // 28: api.ai.Ai.GetAISubscribeMessage:input_type -> google.protobuf.Empty
  2324. 27, // 29: api.ai.Ai.FindAITemplate:output_type -> api.ai.FindAITemplateReply
  2325. 15, // 30: api.ai.Ai.CreateAIRobot:output_type -> api.ai.AIRobotIDReply
  2326. 32, // 31: api.ai.Ai.DeleteAIRobot:output_type -> google.protobuf.Empty
  2327. 15, // 32: api.ai.Ai.UpdateAIRobot:output_type -> api.ai.AIRobotIDReply
  2328. 21, // 33: api.ai.Ai.FindAIRobotList:output_type -> api.ai.AIRobotList
  2329. 22, // 34: api.ai.Ai.GetAIRobot:output_type -> api.ai.AIRobotInfo
  2330. 16, // 35: api.ai.Ai.FindAIChatRecordList:output_type -> api.ai.AIRecordListReply
  2331. 32, // 36: api.ai.Ai.SendAIChat:output_type -> google.protobuf.Empty
  2332. 13, // 37: api.ai.Ai.FindAdditionalServiceTemplateList:output_type -> api.ai.FindAdditionalServiceTemplateListReply
  2333. 12, // 38: api.ai.Ai.GetAdditionalService:output_type -> api.ai.GetAdditionalServiceReply
  2334. 32, // 39: api.ai.Ai.UpdateAdditionalService:output_type -> google.protobuf.Empty
  2335. 8, // 40: api.ai.Ai.FindUserAIMessage:output_type -> api.ai.FindUserAIMessageReply
  2336. 32, // 41: api.ai.Ai.CronAdditionalService:output_type -> google.protobuf.Empty
  2337. 32, // 42: api.ai.Ai.GetIsRead:output_type -> google.protobuf.Empty
  2338. 6, // 43: api.ai.Ai.GetAIShareMessage:output_type -> api.ai.GetAIShareMessageReply
  2339. 4, // 44: api.ai.Ai.GetShareQrcode:output_type -> api.ai.GetShareQrcodeReply
  2340. 32, // 45: api.ai.Ai.SetVideoLink:output_type -> google.protobuf.Empty
  2341. 32, // 46: api.ai.Ai.VipUpAI:output_type -> google.protobuf.Empty
  2342. 32, // 47: api.ai.Ai.ShareUserInto:output_type -> google.protobuf.Empty
  2343. 1, // 48: api.ai.Ai.GetMiniProgramConf:output_type -> api.ai.GetMiniProgramConfReply
  2344. 0, // 49: api.ai.Ai.GetAISubscribeMessage:output_type -> api.ai.GetAISubscribeMessageReply
  2345. 29, // [29:50] is the sub-list for method output_type
  2346. 8, // [8:29] is the sub-list for method input_type
  2347. 8, // [8:8] is the sub-list for extension type_name
  2348. 8, // [8:8] is the sub-list for extension extendee
  2349. 0, // [0:8] is the sub-list for field type_name
  2350. }
  2351. func init() { file_ai_proto_init() }
  2352. func file_ai_proto_init() {
  2353. if File_ai_proto != nil {
  2354. return
  2355. }
  2356. if !protoimpl.UnsafeEnabled {
  2357. file_ai_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2358. switch v := v.(*GetAISubscribeMessageReply); i {
  2359. case 0:
  2360. return &v.state
  2361. case 1:
  2362. return &v.sizeCache
  2363. case 2:
  2364. return &v.unknownFields
  2365. default:
  2366. return nil
  2367. }
  2368. }
  2369. file_ai_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2370. switch v := v.(*GetMiniProgramConfReply); i {
  2371. case 0:
  2372. return &v.state
  2373. case 1:
  2374. return &v.sizeCache
  2375. case 2:
  2376. return &v.unknownFields
  2377. default:
  2378. return nil
  2379. }
  2380. }
  2381. file_ai_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2382. switch v := v.(*ShareUserIntoRequest); i {
  2383. case 0:
  2384. return &v.state
  2385. case 1:
  2386. return &v.sizeCache
  2387. case 2:
  2388. return &v.unknownFields
  2389. default:
  2390. return nil
  2391. }
  2392. }
  2393. file_ai_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2394. switch v := v.(*SetVideoLinkRequest); i {
  2395. case 0:
  2396. return &v.state
  2397. case 1:
  2398. return &v.sizeCache
  2399. case 2:
  2400. return &v.unknownFields
  2401. default:
  2402. return nil
  2403. }
  2404. }
  2405. file_ai_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2406. switch v := v.(*GetShareQrcodeReply); i {
  2407. case 0:
  2408. return &v.state
  2409. case 1:
  2410. return &v.sizeCache
  2411. case 2:
  2412. return &v.unknownFields
  2413. default:
  2414. return nil
  2415. }
  2416. }
  2417. file_ai_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2418. switch v := v.(*GetAIShareMessageRequest); i {
  2419. case 0:
  2420. return &v.state
  2421. case 1:
  2422. return &v.sizeCache
  2423. case 2:
  2424. return &v.unknownFields
  2425. default:
  2426. return nil
  2427. }
  2428. }
  2429. file_ai_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2430. switch v := v.(*GetAIShareMessageReply); i {
  2431. case 0:
  2432. return &v.state
  2433. case 1:
  2434. return &v.sizeCache
  2435. case 2:
  2436. return &v.unknownFields
  2437. default:
  2438. return nil
  2439. }
  2440. }
  2441. file_ai_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2442. switch v := v.(*AIShareInfo); i {
  2443. case 0:
  2444. return &v.state
  2445. case 1:
  2446. return &v.sizeCache
  2447. case 2:
  2448. return &v.unknownFields
  2449. default:
  2450. return nil
  2451. }
  2452. }
  2453. file_ai_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2454. switch v := v.(*FindUserAIMessageReply); i {
  2455. case 0:
  2456. return &v.state
  2457. case 1:
  2458. return &v.sizeCache
  2459. case 2:
  2460. return &v.unknownFields
  2461. default:
  2462. return nil
  2463. }
  2464. }
  2465. file_ai_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2466. switch v := v.(*GetIsReadRequest); i {
  2467. case 0:
  2468. return &v.state
  2469. case 1:
  2470. return &v.sizeCache
  2471. case 2:
  2472. return &v.unknownFields
  2473. default:
  2474. return nil
  2475. }
  2476. }
  2477. file_ai_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2478. switch v := v.(*UpdateAdditionalServiceRequest); i {
  2479. case 0:
  2480. return &v.state
  2481. case 1:
  2482. return &v.sizeCache
  2483. case 2:
  2484. return &v.unknownFields
  2485. default:
  2486. return nil
  2487. }
  2488. }
  2489. file_ai_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2490. switch v := v.(*GetAdditionalServiceRequest); i {
  2491. case 0:
  2492. return &v.state
  2493. case 1:
  2494. return &v.sizeCache
  2495. case 2:
  2496. return &v.unknownFields
  2497. default:
  2498. return nil
  2499. }
  2500. }
  2501. file_ai_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2502. switch v := v.(*GetAdditionalServiceReply); i {
  2503. case 0:
  2504. return &v.state
  2505. case 1:
  2506. return &v.sizeCache
  2507. case 2:
  2508. return &v.unknownFields
  2509. default:
  2510. return nil
  2511. }
  2512. }
  2513. file_ai_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2514. switch v := v.(*FindAdditionalServiceTemplateListReply); i {
  2515. case 0:
  2516. return &v.state
  2517. case 1:
  2518. return &v.sizeCache
  2519. case 2:
  2520. return &v.unknownFields
  2521. default:
  2522. return nil
  2523. }
  2524. }
  2525. file_ai_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2526. switch v := v.(*AdditionalServiceTemplate); i {
  2527. case 0:
  2528. return &v.state
  2529. case 1:
  2530. return &v.sizeCache
  2531. case 2:
  2532. return &v.unknownFields
  2533. default:
  2534. return nil
  2535. }
  2536. }
  2537. file_ai_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2538. switch v := v.(*AIRobotIDReply); i {
  2539. case 0:
  2540. return &v.state
  2541. case 1:
  2542. return &v.sizeCache
  2543. case 2:
  2544. return &v.unknownFields
  2545. default:
  2546. return nil
  2547. }
  2548. }
  2549. file_ai_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2550. switch v := v.(*AIRecordListReply); i {
  2551. case 0:
  2552. return &v.state
  2553. case 1:
  2554. return &v.sizeCache
  2555. case 2:
  2556. return &v.unknownFields
  2557. default:
  2558. return nil
  2559. }
  2560. }
  2561. file_ai_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2562. switch v := v.(*AIRecordInfo); i {
  2563. case 0:
  2564. return &v.state
  2565. case 1:
  2566. return &v.sizeCache
  2567. case 2:
  2568. return &v.unknownFields
  2569. default:
  2570. return nil
  2571. }
  2572. }
  2573. file_ai_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2574. switch v := v.(*Message); i {
  2575. case 0:
  2576. return &v.state
  2577. case 1:
  2578. return &v.sizeCache
  2579. case 2:
  2580. return &v.unknownFields
  2581. default:
  2582. return nil
  2583. }
  2584. }
  2585. file_ai_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2586. switch v := v.(*SendAIChatRequest); i {
  2587. case 0:
  2588. return &v.state
  2589. case 1:
  2590. return &v.sizeCache
  2591. case 2:
  2592. return &v.unknownFields
  2593. default:
  2594. return nil
  2595. }
  2596. }
  2597. file_ai_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2598. switch v := v.(*FindAIChatRecordListRequest); i {
  2599. case 0:
  2600. return &v.state
  2601. case 1:
  2602. return &v.sizeCache
  2603. case 2:
  2604. return &v.unknownFields
  2605. default:
  2606. return nil
  2607. }
  2608. }
  2609. file_ai_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2610. switch v := v.(*AIRobotList); i {
  2611. case 0:
  2612. return &v.state
  2613. case 1:
  2614. return &v.sizeCache
  2615. case 2:
  2616. return &v.unknownFields
  2617. default:
  2618. return nil
  2619. }
  2620. }
  2621. file_ai_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2622. switch v := v.(*AIRobotInfo); i {
  2623. case 0:
  2624. return &v.state
  2625. case 1:
  2626. return &v.sizeCache
  2627. case 2:
  2628. return &v.unknownFields
  2629. default:
  2630. return nil
  2631. }
  2632. }
  2633. file_ai_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2634. switch v := v.(*FindAIRobotListRequest); i {
  2635. case 0:
  2636. return &v.state
  2637. case 1:
  2638. return &v.sizeCache
  2639. case 2:
  2640. return &v.unknownFields
  2641. default:
  2642. return nil
  2643. }
  2644. }
  2645. file_ai_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2646. switch v := v.(*UpdateAIRobotRequest); i {
  2647. case 0:
  2648. return &v.state
  2649. case 1:
  2650. return &v.sizeCache
  2651. case 2:
  2652. return &v.unknownFields
  2653. default:
  2654. return nil
  2655. }
  2656. }
  2657. file_ai_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2658. switch v := v.(*AIRobotIDRequest); i {
  2659. case 0:
  2660. return &v.state
  2661. case 1:
  2662. return &v.sizeCache
  2663. case 2:
  2664. return &v.unknownFields
  2665. default:
  2666. return nil
  2667. }
  2668. }
  2669. file_ai_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2670. switch v := v.(*FindAITemplateRequest); i {
  2671. case 0:
  2672. return &v.state
  2673. case 1:
  2674. return &v.sizeCache
  2675. case 2:
  2676. return &v.unknownFields
  2677. default:
  2678. return nil
  2679. }
  2680. }
  2681. file_ai_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2682. switch v := v.(*FindAITemplateReply); i {
  2683. case 0:
  2684. return &v.state
  2685. case 1:
  2686. return &v.sizeCache
  2687. case 2:
  2688. return &v.unknownFields
  2689. default:
  2690. return nil
  2691. }
  2692. }
  2693. file_ai_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2694. switch v := v.(*AITemplateInfo); i {
  2695. case 0:
  2696. return &v.state
  2697. case 1:
  2698. return &v.sizeCache
  2699. case 2:
  2700. return &v.unknownFields
  2701. default:
  2702. return nil
  2703. }
  2704. }
  2705. file_ai_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2706. switch v := v.(*Relation); i {
  2707. case 0:
  2708. return &v.state
  2709. case 1:
  2710. return &v.sizeCache
  2711. case 2:
  2712. return &v.unknownFields
  2713. default:
  2714. return nil
  2715. }
  2716. }
  2717. file_ai_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2718. switch v := v.(*CreateAIRobotRequest); i {
  2719. case 0:
  2720. return &v.state
  2721. case 1:
  2722. return &v.sizeCache
  2723. case 2:
  2724. return &v.unknownFields
  2725. default:
  2726. return nil
  2727. }
  2728. }
  2729. file_ai_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  2730. switch v := v.(*SendNextNeedPayMessage); i {
  2731. case 0:
  2732. return &v.state
  2733. case 1:
  2734. return &v.sizeCache
  2735. case 2:
  2736. return &v.unknownFields
  2737. default:
  2738. return nil
  2739. }
  2740. }
  2741. }
  2742. type x struct{}
  2743. out := protoimpl.TypeBuilder{
  2744. File: protoimpl.DescBuilder{
  2745. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2746. RawDescriptor: file_ai_proto_rawDesc,
  2747. NumEnums: 0,
  2748. NumMessages: 32,
  2749. NumExtensions: 0,
  2750. NumServices: 1,
  2751. },
  2752. GoTypes: file_ai_proto_goTypes,
  2753. DependencyIndexes: file_ai_proto_depIdxs,
  2754. MessageInfos: file_ai_proto_msgTypes,
  2755. }.Build()
  2756. File_ai_proto = out.File
  2757. file_ai_proto_rawDesc = nil
  2758. file_ai_proto_goTypes = nil
  2759. file_ai_proto_depIdxs = nil
  2760. }