ai.pb.go 82 KB

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