ai.pb.go 103 KB

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