ai.pb.go 85 KB

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