types.go 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. // The basic response with data | 基础带数据信息
  4. // swagger:model BaseDataInfo
  5. type BaseDataInfo struct {
  6. // Error code | 错误代码
  7. Code int `json:"code"`
  8. // Message | 提示信息
  9. Msg string `json:"msg"`
  10. // Data | 数据
  11. Data string `json:"data,omitempty"`
  12. }
  13. // The basic response with data | 基础带数据信息
  14. // swagger:model BaseListInfo
  15. type BaseListInfo struct {
  16. // The total number of data | 数据总数
  17. Total uint64 `json:"total"`
  18. // Data | 数据
  19. Data string `json:"data,omitempty"`
  20. }
  21. // The basic response without data | 基础不带数据信息
  22. // swagger:model BaseMsgResp
  23. type BaseMsgResp struct {
  24. // Error code | 错误代码
  25. Code int `json:"code"`
  26. // Message | 提示信息
  27. Msg string `json:"msg"`
  28. }
  29. // The page request parameters | 列表请求参数
  30. // swagger:model PageInfo
  31. type PageInfo struct {
  32. // Page number | 第几页
  33. // required : true
  34. // min : 0
  35. Page uint64 `json:"page" validate:"required,number,gt=0"`
  36. // Page size | 单页数据行数
  37. // required : true
  38. // max : 100000
  39. PageSize uint64 `json:"pageSize" validate:"required,number,lt=100000"`
  40. }
  41. // Basic ID request | 基础ID参数请求
  42. // swagger:model IDReq
  43. type IDReq struct {
  44. // ID
  45. // Required: true
  46. Id uint64 `json:"id" validate:"number"`
  47. }
  48. // Basic IDs request | 基础ID数组参数请求
  49. // swagger:model IDsReq
  50. type IDsReq struct {
  51. // IDs
  52. // Required: true
  53. Ids []uint64 `json:"ids"`
  54. }
  55. // Basic ID request | 基础ID地址参数请求
  56. // swagger:model IDPathReq
  57. type IDPathReq struct {
  58. // ID
  59. // Required: true
  60. Id uint64 `path:"id"`
  61. }
  62. // Basic ID request (int32) | 基础ID参数请求 (int32)
  63. // swagger:model IDInt32Req
  64. type IDInt32Req struct {
  65. // ID
  66. // Required: true
  67. Id int32 `json:"id" validate:"number"`
  68. }
  69. // Basic IDs request (int32) | 基础ID数组参数请求 (int32)
  70. // swagger:model IDsInt32Req
  71. type IDsInt32Req struct {
  72. // IDs
  73. // Required: true
  74. Ids []int32 `json:"ids"`
  75. }
  76. // Basic ID request (int32) | 基础ID地址参数请求 (int32)
  77. // swagger:model IDInt32PathReq
  78. type IDInt32PathReq struct {
  79. // ID
  80. // Required: true
  81. Id int32 `path:"id"`
  82. }
  83. // Basic ID request (uint32) | 基础ID参数请求 (uint32)
  84. // swagger:model IDUint32Req
  85. type IDUint32Req struct {
  86. // ID
  87. // Required: true
  88. Id uint32 `json:"id" validate:"number"`
  89. }
  90. // Basic IDs request (uint32) | 基础ID数组参数请求 (uint32)
  91. // swagger:model IDsUint32Req
  92. type IDsUint32Req struct {
  93. // IDs
  94. // Required: true
  95. Ids []uint32 `json:"ids"`
  96. }
  97. // Basic ID request (uint32) | 基础ID地址参数请求 (uint32)
  98. // swagger:model IDUint32PathReq
  99. type IDUint32PathReq struct {
  100. // ID
  101. // Required: true
  102. Id uint32 `path:"id"`
  103. }
  104. // Basic ID request (int64) | 基础ID参数请求 (int64)
  105. // swagger:model IDInt64Req
  106. type IDInt64Req struct {
  107. // ID
  108. // Required: true
  109. Id int64 `json:"id" validate:"number"`
  110. }
  111. // Basic IDs request (int64) | 基础ID数组参数请求 (int64)
  112. // swagger:model IDsInt64Req
  113. type IDsInt64Req struct {
  114. // IDs
  115. // Required: true
  116. Ids []int64 `json:"ids"`
  117. }
  118. // Basic ID request (int64) | 基础ID地址参数请求 (int64)
  119. // swagger:model IDInt64PathReq
  120. type IDInt64PathReq struct {
  121. // ID
  122. // Required: true
  123. Id int64 `path:"id"`
  124. }
  125. // Basic UUID request in path | 基础UUID地址参数请求
  126. // swagger:model UUIDPathReq
  127. type UUIDPathReq struct {
  128. // ID
  129. // Required: true
  130. Id string `path:"id"`
  131. }
  132. // Basic UUID request | 基础UUID参数请求
  133. // swagger:model UUIDReq
  134. type UUIDReq struct {
  135. // ID
  136. // required : true
  137. // max length : 36
  138. // min length : 36
  139. Id string `json:"id" validate:"required,len=36"`
  140. }
  141. // Basic UUID array request | 基础UUID数组参数请求
  142. // swagger:model UUIDsReq
  143. type UUIDsReq struct {
  144. // Ids
  145. // Required: true
  146. Ids []string `json:"ids"`
  147. }
  148. // The base ID response data | 基础ID信息
  149. // swagger:model BaseIDInfo
  150. type BaseIDInfo struct {
  151. // ID
  152. Id *uint64 `json:"id,optional"`
  153. // Create date | 创建日期
  154. CreatedAt *int64 `json:"createdAt,optional"`
  155. // Update date | 更新日期
  156. UpdatedAt *int64 `json:"updatedAt,optional"`
  157. }
  158. // The base ID response data (int64) | 基础ID信息 (int64)
  159. // swagger:model BaseIDInt64Info
  160. type BaseIDInt64Info struct {
  161. // ID
  162. Id *int64 `json:"id,optional"`
  163. // Create date | 创建日期
  164. CreatedAt *int64 `json:"createdAt,optional"`
  165. // Update date | 更新日期
  166. UpdatedAt *int64 `json:"updatedAt,optional"`
  167. }
  168. // The base ID response data (int32) | 基础ID信息 (int32)
  169. // swagger:model BaseIDInt32Info
  170. type BaseIDInt32Info struct {
  171. // ID
  172. Id *int32 `json:"id,optional"`
  173. // Create date | 创建日期
  174. CreatedAt *int64 `json:"createdAt,optional"`
  175. // Update date | 更新日期
  176. UpdatedAt *int64 `json:"updatedAt,optional"`
  177. }
  178. // The base ID response data (uint32) | 基础ID信息 (uint32)
  179. // swagger:model BaseIDUint32Info
  180. type BaseIDUint32Info struct {
  181. // ID
  182. Id *uint32 `json:"id,optional"`
  183. // Create date | 创建日期
  184. CreatedAt *int64 `json:"createdAt,optional"`
  185. // Update date | 更新日期
  186. UpdatedAt *int64 `json:"updatedAt,optional"`
  187. }
  188. // The base UUID response data | 基础UUID信息
  189. // swagger:model BaseUUIDInfo
  190. type BaseUUIDInfo struct {
  191. // ID
  192. Id *string `json:"id,optional"`
  193. // Create date | 创建日期
  194. CreatedAt *int64 `json:"createdAt,optional"`
  195. // Update date | 更新日期
  196. UpdatedAt *int64 `json:"updatedAt,optional"`
  197. }
  198. type Condition struct {
  199. Equal int `json:"equal"`
  200. LabelIdList []uint64 `json:"labelIdList"`
  201. }
  202. type Action struct {
  203. Type int `json:"type"`
  204. Content string `json:"content"`
  205. Meta Meta `json:"meta,optional"`
  206. }
  207. type Meta struct {
  208. Filename string `json:"filename,optional"`
  209. }
  210. type ActionForward struct {
  211. Wxid string `json:"wxid"`
  212. Action []Action `json:"action"`
  213. }
  214. // The response data of server information | Server信息
  215. // swagger:model ServerInfo
  216. type ServerInfo struct {
  217. BaseIDInfo
  218. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  219. Status *uint8 `json:"status,optional"`
  220. // 名称
  221. Name *string `json:"name,optional"`
  222. // 公网ip
  223. PublicIp *string `json:"publicIp,optional"`
  224. // 内网ip
  225. PrivateIp *string `json:"privateIp,optional"`
  226. // 管理端口
  227. AdminPort *string `json:"adminPort,optional"`
  228. }
  229. // The response data of server list | Server列表数据
  230. // swagger:model ServerListResp
  231. type ServerListResp struct {
  232. BaseDataInfo
  233. // Server list data | Server列表数据
  234. Data ServerListInfo `json:"data"`
  235. }
  236. // Server list data | Server列表数据
  237. // swagger:model ServerListInfo
  238. type ServerListInfo struct {
  239. BaseListInfo
  240. // The API list data | Server列表数据
  241. Data []ServerInfo `json:"data"`
  242. }
  243. // Get server list request params | Server列表请求参数
  244. // swagger:model ServerListReq
  245. type ServerListReq struct {
  246. PageInfo
  247. // 名称
  248. Name *string `json:"name,optional"`
  249. // 公网ip
  250. PublicIp *string `json:"publicIp,optional"`
  251. // 内网ip
  252. PrivateIp *string `json:"privateIp,optional"`
  253. }
  254. // Server information response | Server信息返回体
  255. // swagger:model ServerInfoResp
  256. type ServerInfoResp struct {
  257. BaseDataInfo
  258. // Server information | Server数据
  259. Data ServerInfo `json:"data"`
  260. }
  261. // The response data of wx information | Wx信息
  262. // swagger:model WxInfo
  263. type WxInfo struct {
  264. BaseIDInfo
  265. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  266. Status *uint8 `json:"status,optional"`
  267. // 服务器id
  268. ServerId *uint64 `json:"serverId,optional"`
  269. // 服务器名称
  270. ServerName *string `json:"serverName,optional"`
  271. // 端口号
  272. Port *string `json:"port,optional"`
  273. // 进程号
  274. ProcessId *string `json:"processId,optional"`
  275. // 回调地址
  276. Callback *string `json:"callback,optional"`
  277. // 微信id
  278. Wxid *string `json:"wxid,optional"`
  279. // 微信账号
  280. Account *string `json:"account,optional"`
  281. // 微信昵称
  282. Nickname *string `json:"nickname,optional"`
  283. // 手机号
  284. Tel *string `json:"tel,optional"`
  285. // 微信头像
  286. HeadBig *string `json:"headBig,optional"`
  287. // 组织ID
  288. OrganizationId *uint64 `json:"organizationId,optional"`
  289. // 组织名称
  290. OrganizationName *string `json:"organizationName,optional"`
  291. // 模式ID
  292. AgentId *uint64 `json:"agentId,optional"`
  293. // 模式信息
  294. AgentInfo *AgentInfo `json:"agentInfo,optional"`
  295. // 大模型服务地址
  296. ApiBase *string `json:"apiBase,optional"`
  297. // 大模型服务密钥
  298. ApiKey *string `json:"apiKey,optional"`
  299. // 白名单
  300. AllowList []ContactInfo `json:"allowList,optional"`
  301. // 群白名单
  302. GroupAllowList []ContactInfo `json:"groupAllowList,optional"`
  303. // 黑名单
  304. BlockList []ContactInfo `json:"blockList,optional"`
  305. // 群黑名单
  306. GroupBlockList []ContactInfo `json:"groupBlockList,optional"`
  307. // 使用token总数
  308. TotalTokens *uint64 `json:"totalTokens,optional"`
  309. }
  310. // swagger:model UpdateBlockAndAllowListReq
  311. type UpdateBlockAndAllowListReq struct {
  312. BaseIDInfo
  313. // 白名单
  314. AllowList []string `json:"allowList,optional"`
  315. // 群白名单
  316. GroupAllowList []string `json:"groupAllowList,optional"`
  317. // 黑名单
  318. BlockList []string `json:"blockList,optional"`
  319. // 群黑名单
  320. GroupBlockList []string `json:"groupBlockList,optional"`
  321. }
  322. // The response data of wx list | Wx列表数据
  323. // swagger:model WxListResp
  324. type WxListResp struct {
  325. BaseDataInfo
  326. // Wx list data | Wx列表数据
  327. Data WxListInfo `json:"data"`
  328. }
  329. // Wx list data | Wx列表数据
  330. // swagger:model WxListInfo
  331. type WxListInfo struct {
  332. BaseListInfo
  333. // The API list data | Wx列表数据
  334. Data []WxInfo `json:"data"`
  335. }
  336. // Get wx list request params | Wx列表请求参数
  337. // swagger:model WxListReq
  338. type WxListReq struct {
  339. PageInfo
  340. // 服务器id
  341. ServerId *uint64 `json:"serverId,optional"`
  342. // 租户id
  343. OrganizationId *uint64 `json:"organizationId,optional"`
  344. // 租户名称
  345. OrganizationName *string `json:"organizationName,optional"`
  346. // 端口号
  347. Port *string `json:"port,optional"`
  348. // 进程号
  349. ProcessId *string `json:"processId,optional"`
  350. // 回调地址
  351. Callback *string `json:"callback,optional"`
  352. }
  353. // Get wx list request params | Wx列表请求参数
  354. // swagger:model WxSelectListReq
  355. type WxSelectListReq struct {
  356. // 租户id
  357. OrganizationId *uint64 `json:"organizationId,optional"`
  358. }
  359. // The response data of wx list | Wx列表数据
  360. // swagger:model WxSelectListResp
  361. type WxSelectListResp struct {
  362. BaseDataInfo
  363. // Wx list data | Wx列表数据
  364. Data []WxSelectListInfo `json:"data"`
  365. }
  366. // swagger:model WxSelectListInfo
  367. type WxSelectListInfo struct {
  368. BaseIDInfo
  369. // 微信id
  370. Wxid *string `json:"wxid,optional"`
  371. // 微信昵称
  372. Nickname *string `json:"nickname,optional"`
  373. }
  374. // Wx information response | Wx信息返回体
  375. // swagger:model WxInfoResp
  376. type WxInfoResp struct {
  377. BaseDataInfo
  378. // Wx information | Wx数据
  379. Data WxInfo `json:"data"`
  380. }
  381. // 获取黑白名单列表返回体
  382. // swagger:model AllowBlockListResp
  383. type AllowBlockListResp struct {
  384. BaseDataInfo
  385. // Wx information | Wx数据
  386. Data AllowBlockListRespData `json:"data"`
  387. }
  388. // AllowBlockListRespData
  389. type AllowBlockListRespData struct {
  390. // 白名单
  391. AllowList []*AllowBlockData `json:"allowList,optional"`
  392. // 群白名单
  393. GroupAllowList []*AllowBlockData `json:"groupAllowList,optional"`
  394. // 黑名单
  395. BlockList []*AllowBlockData `json:"blockList,optional"`
  396. // 群黑名单
  397. GroupBlockList []*AllowBlockData `json:"groupBlockList,optional"`
  398. }
  399. // AllowBlockData
  400. type AllowBlockData struct {
  401. // 微信id 公众号微信ID
  402. Wxid string `json:"wxid,optional"`
  403. // 微信昵称 群备注名称
  404. Nickname string `json:"nickname,optional"`
  405. }
  406. // The data of agent information | Agent信息
  407. // swagger:model AgentInfo
  408. type AgentInfo struct {
  409. BaseIDInfo
  410. // name | 角色名称
  411. Name *string `json:"name,optional"`
  412. // role | 角色设定
  413. Role *string `json:"role,optional"`
  414. // status | 状态 1-正常 2-禁用
  415. Status *int `json:"status,optional"`
  416. // background | 背景介绍
  417. Background *string `json:"background,optional"`
  418. // examples | 对话案例
  419. Examples *string `json:"examples,optional"`
  420. DatasetId *string `json:"dataset_id,optional"`
  421. CollectionId *string `json:"collection_id,optional"`
  422. }
  423. // The response data of agent list | Agent列表数据
  424. // swagger:model AgentListResp
  425. type AgentListResp struct {
  426. BaseDataInfo
  427. // Agent list data | Agent列表数据
  428. Data AgentListInfo `json:"data"`
  429. }
  430. // Agent list data | Agent列表数据
  431. // swagger:model AgentListInfo
  432. type AgentListInfo struct {
  433. BaseListInfo
  434. // The API list data | Agent列表数据
  435. Data []AgentInfo `json:"data"`
  436. }
  437. // Get agent list request params | Agent列表请求参数
  438. // swagger:model AgentListReq
  439. type AgentListReq struct {
  440. PageInfo
  441. // name | 角色名称
  442. Name *string `json:"name,optional"`
  443. // role | 角色设定
  444. Role *string `json:"role,optional"`
  445. // background | 背景介绍
  446. Background *string `json:"background,optional"`
  447. // status | 状态 1-可用 2-不可用
  448. Status *int `json:"status,optional"`
  449. // 租户id
  450. OrganizationId *uint64 `json:"organizationId,optional"`
  451. }
  452. // Agent information response | Agent信息返回体
  453. // swagger:model AgentInfoResp
  454. type AgentInfoResp struct {
  455. BaseDataInfo
  456. // Agent information | Agent数据
  457. Data AgentInfo `json:"data"`
  458. }
  459. type VectorModel struct {
  460. Model *string `json:"model"`
  461. Name *string `json:"name"`
  462. CharsPointsPrice *uint64 `json:"charsPointsPrice"`
  463. DefaultToken *uint64 `json:"defaultToken"`
  464. MaxToken *uint64 `json:"maxToken"`
  465. Weight *uint64 `json:"weight"`
  466. }
  467. type AgentModel struct {
  468. Model *string `json:"model"`
  469. Name *string `json:"name"`
  470. MaxContext *uint64 `json:"maxContext"`
  471. MaxResponse *uint64 `json:"maxResponse"`
  472. CharsPointsPrice *uint64 `json:"charsPointsPrice"`
  473. }
  474. type DatasetId struct {
  475. ID *string `json:"id"`
  476. ParentID *string `json:"parentId"`
  477. TeamId *string `json:"teamId"`
  478. TmbId *string `json:"tmbId"`
  479. Type *string `json:"type"`
  480. Status *string `json:"status"`
  481. Avatar *string `json:"avatar"`
  482. Name *string `json:"name"`
  483. VectorModel *string `json:"vectorModel"`
  484. AgentModel *string `json:"agentModel"`
  485. Intro *string `json:"intro"`
  486. }
  487. // Dataset info | 知识库详情
  488. // swagger:model DatasetInfo
  489. type DatasetInfo struct {
  490. ID *string `json:"id"`
  491. ParentID *string `json:"parentId"`
  492. TeamId *string `json:"teamId"`
  493. TmbId *string `json:"tmbId"`
  494. Type *string `json:"type"`
  495. Name *string `json:"name"`
  496. Intro *string `json:"intro"`
  497. Status *string `json:"status"`
  498. Avatar *string `json:"avatar"`
  499. VectorModel VectorModel `json:"vectorModel"`
  500. AgentModel AgentModel `json:"agentModel"`
  501. Permission *string `json:"permission"`
  502. CanWrite *bool `json:"canWrite"`
  503. IsOwner *bool `json:"isOwner"`
  504. }
  505. type Index struct {
  506. DefaultIndex *bool `json:"defaultIndex"`
  507. Type *string `json:"type"`
  508. DataId *string `json:"dataId"`
  509. Text *string `json:"text"`
  510. ID *string `json:"id"`
  511. }
  512. // Collection Info | 集合详情
  513. // swagger:model CollectionInfo
  514. type CollectionInfo struct {
  515. ID *string `json:"id"`
  516. ParentID *string `json:"parentId"`
  517. TmbId *string `json:"tmbId,optional"`
  518. Type *string `json:"type"`
  519. Name *string `json:"name"`
  520. DataAmount *uint64 `json:"dataAmount,optional"`
  521. TrainingAmount *uint64 `json:"trainingAmount,optional"`
  522. TrainingType *string `json:"trainingType,optional"`
  523. ChunkSize *uint64 `json:"chunkSize,optional"`
  524. ChunkSplitter *string `json:"chunkSplitter,optional"`
  525. QaPrompt *string `json:"qaPrompt,optional"`
  526. RawTextLength *uint64 `json:"rawTextLength,optional"`
  527. CanWrite *bool `json:"canWrite,optional"`
  528. SourceName *string `json:"sourceName,optional"`
  529. DatasetId DatasetId `json:"datasetId,optional"`
  530. }
  531. // swagger:model CollectionDetailReq
  532. type CollectionDetailReq struct {
  533. ID *string `json:"id"`
  534. }
  535. // swagger:model CollectionInfoResp
  536. type CollectionInfoResp struct {
  537. BaseDataInfo
  538. Data CollectionInfo `json:"data"`
  539. }
  540. // swagger:model DataDetailReq
  541. type DataDetailReq struct {
  542. ID *string `json:"id"`
  543. }
  544. // swagger:model DataDetailResp
  545. type DataDetailResp struct {
  546. BaseDataInfo
  547. Data DataInfo `json:"data"`
  548. }
  549. // swagger:model CollectionSimpleInfo
  550. type CollectionSimpleInfo struct {
  551. ID *string `json:"id"`
  552. ParentID *string `json:"parentId"`
  553. TmbId *string `json:"tmbId,optional"`
  554. Type *string `json:"type"`
  555. Name *string `json:"name"`
  556. DataAmount *uint64 `json:"dataAmount,optional"`
  557. TrainingAmount *uint64 `json:"trainingAmount,optional"`
  558. }
  559. // swagger:model DataInfo
  560. type DataInfo struct {
  561. ID *string `json:"id"`
  562. Q *string `json:"q"`
  563. A *string `json:"a"`
  564. ChunkIndex *uint64 `json:"chunkIndex"`
  565. Indexes []Index `json:"indexes"`
  566. DatasetId *string `json:"datasetId"`
  567. CollectionId *string `json:"collectionId"`
  568. SourceName *string `json:"sourceName"`
  569. CanWrite *bool `json:"canWrite"`
  570. IsOwner *bool `json:"isOwner"`
  571. }
  572. // swagger:model DataSimpleInfo
  573. type DataSimpleInfo struct {
  574. ID *string `json:"id"`
  575. Q *string `json:"q"`
  576. A *string `json:"a"`
  577. ChunkIndex *uint64 `json:"chunkIndex"`
  578. DatasetId *string `json:"datasetId"`
  579. CollectionId *string `json:"collectionId"`
  580. }
  581. // Get collection list request params | Collection列表请求参数
  582. // swagger:model CollectionListReq
  583. type CollectionListReq struct {
  584. // required : true
  585. // min : 0
  586. PageNum *int `json:"pageNum" validate:"required,number,gt=0"`
  587. // required : true
  588. // max : 100000
  589. PageSize *int `json:"pageSize" validate:"required,number,lt=100000"`
  590. // required : true
  591. DatasetId *string `json:"datasetId" validate:"required"`
  592. }
  593. // Collection list response | Collection List信息返回体
  594. // swagger:model CollectionListResp
  595. type CollectionListResp struct {
  596. BaseDataInfo
  597. // Agent information | Agent数据
  598. Data []CollectionSimpleInfo `json:"data"`
  599. // required : true
  600. // min : 0
  601. PageNum *int `json:"pageNum" validate:"required,number,gt=0"`
  602. // required : true
  603. // max : 100000
  604. PageSize *int `json:"pageSize" validate:"required,number,lt=100000"`
  605. Total *int `json:"total"`
  606. }
  607. // Get collection list request params | Collection列表请求参数
  608. // swagger:model DataListReq
  609. type DataListReq struct {
  610. // required : true
  611. // min : 0
  612. Page *int `json:"page" validate:"required,number,gt=0"`
  613. // required : true
  614. // max : 100000
  615. PageSize *int `json:"pageSize" validate:"required,number,lt=100000"`
  616. // required : true
  617. CollectionId *string `json:"collectionId" validate:"required"`
  618. }
  619. // Data list response | Data List信息返回体
  620. // swagger:model DataListResp
  621. type DataListResp struct {
  622. BaseDataInfo
  623. // Agent information | Agent数据
  624. Data BatchSimpleInfo `json:"data"`
  625. }
  626. // swagger:model BatchSimpleInfo
  627. type BatchSimpleInfo struct {
  628. BaseListInfo
  629. // The API list data | BatchMsg列表数据
  630. Data []DataSimpleInfo `json:"data"`
  631. }
  632. // Data create request | 信息请求体
  633. // swagger:model CreateDataInfoReq
  634. type CreateDataInfoReq struct {
  635. // required : true
  636. CollectionId *string `json:"collectionId" validate:"required"`
  637. // Q
  638. // required : true
  639. Q *string `json:"q" validate:"required"`
  640. // A
  641. // required : true
  642. A *string `json:"a" validate:"required"`
  643. }
  644. // IndexSingle {
  645. // Text A *string `json:"text"`
  646. // }
  647. //
  648. // Data create request | 信息返回体
  649. // swagger:model UpdateDataInfoReq
  650. type UpdateDataInfoReq struct {
  651. // ID
  652. // required : true
  653. DataId *string `json:"id" validate:"required"`
  654. // Q
  655. // required : true
  656. Q *string `json:"q" validate:"required"`
  657. // A
  658. // required : true
  659. A *string `json:"a" validate:"required"`
  660. }
  661. // swagger:model DeleteDataReq
  662. type DeleteDataReq struct {
  663. // required : true
  664. ID *string `json:"id" validate:"required"`
  665. }
  666. // swagger:model UploadDataReq
  667. type UploadDataReq struct {
  668. AgentId *string `form:"agentId"`
  669. }
  670. type BatchDeleteIds struct {
  671. Ids []string `json:"ids"`
  672. }
  673. // ContactLabelList | Contact标签列表
  674. type ContactLabelList struct {
  675. // label
  676. Label *string `json:"label,optional"`
  677. // value
  678. Value *uint64 `json:"value,optional"`
  679. }
  680. // The response data of contact information | Contact信息
  681. // swagger:model ContactInfo
  682. type ContactInfo struct {
  683. BaseIDInfo
  684. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  685. Status *uint8 `json:"status,optional"`
  686. // 属主微信id
  687. WxWxid *string `json:"wxWxid,optional"`
  688. // 属主微信昵称
  689. WxWxidNickname *string `json:"wxWxidNickname,optional"`
  690. // 联系人类型:1好友,2群组,3公众号,4企业微信联系人
  691. Type *int `json:"type,optional"`
  692. // 微信id 公众号微信ID
  693. Wxid *string `json:"wxid,optional"`
  694. // 微信账号
  695. Account *string `json:"account,optional"`
  696. // 微信昵称 群备注名称
  697. Nickname *string `json:"nickname,optional"`
  698. // 备注名
  699. Markname *string `json:"markname,optional"`
  700. // 头像
  701. Headimg *string `json:"headimg,optional"`
  702. // 性别 0未知 1男 2女
  703. Sex *int `json:"sex,optional"`
  704. // 星标 65/67=星标 1/3=未星标
  705. Starrole *string `json:"starrole,optional"`
  706. // 不让他看我的朋友圈 0可以看 1不让看
  707. Dontseeit *int `json:"dontseeit,optional"`
  708. // 不看他的朋友圈 0可以看 1不看 1=开启了不看他 128/129=仅聊天
  709. Dontseeme *int `json:"dontseeme,optional"`
  710. // 所属标签id清单,多开会用逗号隔开
  711. Lag *string `json:"lag,optional"`
  712. // 群组id
  713. Gid *string `json:"gid,optional"`
  714. // 群组名称
  715. Gname *string `json:"gname,optional"`
  716. // v3数据
  717. V3 *string `json:"v3,optional"`
  718. // Label Relationships | 标签关系
  719. LabelRelationships []ContactLabelList `json:"labelRelationships,optional"`
  720. // 组织ID
  721. OrganizationId *uint64 `json:"organizationId,optional"`
  722. // 是否在黑名单中
  723. IsInBlockList *bool `json:"isInBlockList,optional"`
  724. Ctype *uint64 `json:"ctype,optional"`
  725. Cname *string `json:"cname,optional"`
  726. Cage *int `json:"cage,optional"`
  727. Carea *string `json:"carea,optional"`
  728. Cbirthday *string `json:"cbirthday,optional"`
  729. Cbirtharea *string `json:"cbirtharea,optional"`
  730. CidcardNo *string `json:"cidcardNo,optional"`
  731. Ctitle *string `json:"ctitle,optional"`
  732. Cc *string `json:"cc,optional"`
  733. Phone *string `json:"phone,optional"`
  734. }
  735. // The response data of label information | Label信息
  736. // swagger:model LabelInfo
  737. type LabelInfo struct {
  738. BaseIDInfo
  739. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  740. Status *uint8 `json:"status,optional"`
  741. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  742. Type *int `json:"type,optional"`
  743. // 标签名称
  744. Name *string `json:"name,optional"`
  745. // 标签来源:1后台创建 2个微同步
  746. From *int `json:"from,optional"`
  747. // 标签模式:1动态 2静态
  748. Mode *int `json:"mode,optional"`
  749. // 标签的触达条件
  750. Conditions *string `json:"conditions,optional"`
  751. // 组织ID
  752. OrganizationId *uint64 `json:"organizationId,optional"`
  753. // Label Relationships | 标签关系
  754. LabelRelationships []LabelRelationshipInfo `json:"labelRelationships,optional"`
  755. // 内容类型:1-微信 2-whatsapp
  756. Ctype *uint64 `json:"ctype,optional"`
  757. }
  758. // The response data of label relationship information | LabelRelationship信息
  759. // swagger:model LabelRelationshipInfo
  760. type LabelRelationshipInfo struct {
  761. BaseIDInfo
  762. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  763. Status *uint8 `json:"status,optional"`
  764. // 标签 ID
  765. LabelId *uint64 `json:"labelId,optional"`
  766. // 联系人 ID
  767. ContactId *uint64 `json:"contactId,optional"`
  768. // Contact information | 联系人信息
  769. Contact ContactInfo `json:"contact,optional"`
  770. // Label information | 标签信息
  771. Label LabelInfo `json:"label,optional"`
  772. // 组织ID
  773. OrganizationId *uint64 `json:"organizationId,optional"`
  774. }
  775. // The response data of label relationship information | LabelRelationship信息
  776. // swagger:model LabelRelationshipsInfo
  777. type LabelRelationshipsInfo struct {
  778. BaseIDInfo
  779. // 更新类型:为空或“all”时表示全量更新,为 “add” 时表示仅追加
  780. UpdateType *string `json:"updateType,optional"`
  781. // 标签 ID
  782. LabelIds []uint64 `json:"labelIds,optional"`
  783. // 联系人 ID
  784. ContactId *uint64 `json:"contactId,optional"`
  785. }
  786. // swagger:model BatchLabelRelationshipsInfo
  787. type BatchLabelRelationshipsInfo struct {
  788. // 更新类型:为1 时表示增加标签,为 -1 时表示移除标签
  789. UpdateType int `json:"updateType,optional"`
  790. // 标签 ID
  791. LabelIds []uint64 `json:"labelIds,optional"`
  792. // 联系人 ID
  793. ContactIds []uint64 `json:"contactIds,optional"`
  794. }
  795. // The response data of label relationship list | LabelRelationship列表数据
  796. // swagger:model LabelRelationshipListResp
  797. type LabelRelationshipListResp struct {
  798. BaseDataInfo
  799. // LabelRelationship list data | LabelRelationship列表数据
  800. Data LabelRelationshipListInfo `json:"data"`
  801. }
  802. // LabelRelationship list data | LabelRelationship列表数据
  803. // swagger:model LabelRelationshipListInfo
  804. type LabelRelationshipListInfo struct {
  805. BaseListInfo
  806. // The API list data | LabelRelationship列表数据
  807. Data []LabelRelationshipInfo `json:"data"`
  808. }
  809. // Get label relationship list request params | LabelRelationship列表请求参数
  810. // swagger:model LabelRelationshipListReq
  811. type LabelRelationshipListReq struct {
  812. PageInfo
  813. }
  814. // LabelRelationship information response | LabelRelationship信息返回体
  815. // swagger:model LabelRelationshipInfoResp
  816. type LabelRelationshipInfoResp struct {
  817. BaseDataInfo
  818. // LabelRelationship information | LabelRelationship数据
  819. Data LabelRelationshipInfo `json:"data"`
  820. }
  821. type LoginQRStatus struct {
  822. // 登陆二维码
  823. QRCode string `json:"qRCode,optional"`
  824. // 登陆二维码状态
  825. Status string `json:"status,optional"`
  826. // 登陆二维码状态描述
  827. StatusDesc string `json:"statusDesc,optional"`
  828. }
  829. // 刷新登陆二维码请求参数
  830. // swagger:model RefreshLoginQRReq
  831. type RefreshLoginQRReq struct {
  832. // 服务器id
  833. ServerId *uint64 `json:"serverId,optional"`
  834. // 端口号
  835. Port *string `json:"port,optional"`
  836. // 回调地址
  837. Callback *string `json:"callback,optional"`
  838. }
  839. // 刷新登陆二维码返回参数
  840. // swagger:model RefreshLoginQRResp
  841. type RefreshLoginQRResp struct {
  842. BaseDataInfo
  843. // 二维码Base64
  844. Data LoginQRStatus `json:"data,optional"`
  845. }
  846. // 发送微信文本消息请求参数
  847. // swagger:model SendTextMsgReq
  848. type SendTextMsgReq struct {
  849. // 属主微信id
  850. WxWxid *string `json:"senderWxId"`
  851. // 微信id 公众号微信ID
  852. Wxid *string `json:"receiverWxId"`
  853. // 微信文本消息内容
  854. Msg *string `json:"msg"`
  855. }
  856. // 发送微信图片消息请求参数
  857. // swagger:model SendPicMsgReq
  858. type SendPicMsgReq struct {
  859. // 属主微信id
  860. WxWxid *string `json:"wxWxid"`
  861. // 微信id 公众号微信ID
  862. Wxid *string `json:"wxid"`
  863. // 微信图片路径(本地或网络,本地需要上传操作,如:C:\\x.jpg)
  864. Picpath *string `json:"picpath"`
  865. // 微信图片自定义名称(此属性只有网络图片有)
  866. Diyfilename *string `json:"diyfilename,optional"`
  867. }
  868. // 发送微信图片(本地)请求参数
  869. // swagger:model SendPicMsgLocalReq
  870. type SendPicMsgLocalReq struct {
  871. // 属主微信id
  872. WxWxid *string `json:"wxWxid"`
  873. // 微信id 公众号微信ID
  874. Wxid *string `json:"wxid"`
  875. // 微信图片路径(本地或网络,本地需要上传操作,如:C:\\x.jpg)
  876. Picpath *string `json:"picpath"`
  877. }
  878. // The response data of contact list | Contact列表数据
  879. // swagger:model ContactListResp
  880. type ContactListResp struct {
  881. BaseDataInfo
  882. // Contact list data | Contact列表数据
  883. Data ContactListInfo `json:"data"`
  884. }
  885. // Contact list data | Contact列表数据
  886. // swagger:model ContactListInfo
  887. type ContactListInfo struct {
  888. BaseListInfo
  889. // The API list data | Contact列表数据
  890. Data []ContactInfo `json:"data"`
  891. }
  892. // Get contact list request params | Contact列表请求参数
  893. // swagger:model ContactListReq
  894. type ContactListReq struct {
  895. PageInfo
  896. // Label ID list | 标签ID列表
  897. LabelIDs []uint64 `json:"labelIDs,optional"`
  898. // 属主微信id
  899. WxWxid *string `json:"wxWxid,optional"`
  900. // 微信id 公众号微信ID
  901. Wxid *string `json:"wxid,optional"`
  902. // 微信账号
  903. Account *string `json:"account,optional"`
  904. // 昵称
  905. Nickname *string `json:"nickname,optional"`
  906. // 联系人类型:1好友,2群组,3公众号,4企业微信联系人
  907. Type *int `json:"type,optional"`
  908. }
  909. // Contact information response | Contact信息返回体
  910. // swagger:model ContactInfoResp
  911. type ContactInfoResp struct {
  912. BaseDataInfo
  913. // Contact information | Contact数据
  914. Data ContactInfo `json:"data"`
  915. }
  916. // swagger:model AddNewFriendReq
  917. type AddNewFriendReq struct {
  918. OwnerWxid string `json:"ownerWxid"`
  919. Wxid string `json:"wxid"`
  920. Gid string `json:"gid"`
  921. Desc string `json:"desc"`
  922. AddType string `json:"addType"`
  923. }
  924. // swagger:model changeBlockListReq
  925. type ChangeBlockListReq struct {
  926. OwnerWxid string `json:"ownerWxid"`
  927. Wxid string `json:"wxid"`
  928. Type *int `json:"type,optional"`
  929. Ai *bool `json:"ai,optional"`
  930. }
  931. // swagger:model ImportWhatsappContactReq
  932. type ImportWhatsappContactReq struct {
  933. File *string `form:"file,optional"`
  934. }
  935. // swagger:model WhatsappContactListReq
  936. type WhatsappContactListReq struct {
  937. PageInfo
  938. // 标签ID列表
  939. LabelIDs []uint64 `json:"labelIDs,optional"`
  940. // 电话
  941. Phone *string `json:"phone,optional"`
  942. // 名称
  943. Name *string `json:"name,optional"`
  944. }
  945. // swagger:model CreateWhatsappContactReq
  946. type CreateWhatsappContactReq struct {
  947. BaseIDInfo
  948. // 国家区号
  949. Cc *string `json:"cc"`
  950. Phone *string `json:"phone"`
  951. // 备注名
  952. Markname *string `json:"markname,optional"`
  953. Ctype *uint64 `json:"ctype,optional"`
  954. Cname *string `json:"cname,optional"`
  955. Sex *int `json:"sex,optional"`
  956. Cage *int `json:"cage,optional"`
  957. Carea *string `json:"carea,optional"`
  958. Cbirthday *string `json:"cbirthday,optional"`
  959. Cbirtharea *string `json:"cbirtharea,optional"`
  960. CidcardNo *string `json:"cidcardNo,optional"`
  961. Ctitle *string `json:"ctitle,optional"`
  962. }
  963. // The response data of message information | Message信息
  964. // swagger:model MessageInfo
  965. type MessageInfo struct {
  966. BaseIDInfo
  967. // 属主微信id
  968. WxWxid *string `json:"wxWxid"`
  969. // 微信id 公众号微信ID
  970. Wxid *string `json:"wxid"`
  971. // 微信消息内容
  972. Msg *string `json:"msg"`
  973. }
  974. // The response data of message list | Message列表数据
  975. // swagger:model MessageListResp
  976. type MessageListResp struct {
  977. BaseDataInfo
  978. // Message list data | Message列表数据
  979. Data MessageListInfo `json:"data"`
  980. }
  981. // Message list data | Message列表数据
  982. // swagger:model MessageListInfo
  983. type MessageListInfo struct {
  984. BaseListInfo
  985. // The API list data | Message列表数据
  986. Data []MessageInfo `json:"data"`
  987. }
  988. // Get message list request params | Message列表请求参数
  989. // swagger:model MessageListReq
  990. type MessageListReq struct {
  991. PageInfo
  992. // 属主微信id
  993. WxWxid *string `json:"wxWxid,optional"`
  994. // 微信id 公众号微信ID
  995. Wxid *string `json:"wxid,optional"`
  996. }
  997. // Message information response | Message信息返回体
  998. // swagger:model MessageInfoResp
  999. type MessageInfoResp struct {
  1000. BaseDataInfo
  1001. // Message information | Message数据
  1002. Data MessageInfo `json:"data"`
  1003. }
  1004. // The response data of label list | Label列表数据
  1005. // swagger:model LabelSelectListResp
  1006. type LabelSelectListResp struct {
  1007. BaseDataInfo
  1008. // Label list data | Label列表数据
  1009. Data []LabelSelectListInfo `json:"data"`
  1010. }
  1011. // The response data of label list | Label群发列表数据
  1012. // swagger:model LabelBatchSelectListResp
  1013. type LabelBatchSelectListResp struct {
  1014. BaseDataInfo
  1015. // Label list data | Label列表数据
  1016. Data LabelBatchSelectListData `json:"data"`
  1017. }
  1018. // The response data of label list | Label群发列表数据
  1019. type LabelBatchSelectListData struct {
  1020. Contact []LabelSelectListInfo `json:"contact"`
  1021. Group []LabelSelectListInfo `json:"group"`
  1022. }
  1023. // The response data of label list | Label列表数据
  1024. // swagger:model LabelListResp
  1025. type LabelListResp struct {
  1026. BaseDataInfo
  1027. // Label list data | Label列表数据
  1028. Data LabelListInfo `json:"data"`
  1029. }
  1030. // Label list data | Label列表数据
  1031. // swagger:model LabelListInfo
  1032. type LabelListInfo struct {
  1033. BaseListInfo
  1034. // The API list data | Label列表数据
  1035. Data []LabelInfo `json:"data"`
  1036. }
  1037. // Get label list request params | Label列表请求参数
  1038. // swagger:model LabelListReq
  1039. type LabelListReq struct {
  1040. PageInfo
  1041. // Label ID list | Label ID列表
  1042. LabelIDs []uint64 `json:"labelIDs,optional"`
  1043. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  1044. Type *int `json:"type,optional"`
  1045. // 标签名称
  1046. Name *string `json:"name,optional"`
  1047. // 标签来源:1后台创建 2个微同步
  1048. From *int `json:"from,optional"`
  1049. // 标签模式:1动态 2静态
  1050. Mode *int `json:"mode,optional"`
  1051. // 内容类型:1-微信 2-whatsapp
  1052. Ctype *uint64 `json:"ctype,optional"`
  1053. }
  1054. // Label information response | Label信息返回体
  1055. // swagger:model LabelInfoResp
  1056. type LabelInfoResp struct {
  1057. BaseDataInfo
  1058. // Label information | Label数据
  1059. Data LabelInfo `json:"data"`
  1060. }
  1061. // swagger:model LabelSelectListInfo
  1062. type LabelSelectListInfo struct {
  1063. // label
  1064. Label *string `json:"label,optional"`
  1065. // value
  1066. Value *uint64 `json:"value,optional"`
  1067. }
  1068. // The data of label tagging information | LabelTagging信息
  1069. // swagger:model LabelTaggingInfo
  1070. type LabelTaggingInfo struct {
  1071. BaseIDInfo
  1072. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1073. Status *uint8 `json:"status,optional"`
  1074. // 机构 ID
  1075. OrganizationId *uint64 `json:"organizationId,optional"`
  1076. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  1077. Type *int `json:"type,optional"`
  1078. // 关键词
  1079. Conditions string `json:"conditions,optional"`
  1080. // 命中后需要打的标签
  1081. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1082. // 命中后需要移除的标签
  1083. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1084. LabelAddInfo []string `json:"labelAddInfo,optional"`
  1085. }
  1086. // The response data of label tagging list | LabelTagging信息列表数据
  1087. // swagger:model LabelTaggingListResp
  1088. type LabelTaggingListResp struct {
  1089. BaseDataInfo
  1090. // The label tagging list data | LabelTagging信息列表数据
  1091. Data LabelTaggingListInfo `json:"data"`
  1092. }
  1093. // The label tagging list data | LabelTagging信息列表数据
  1094. // swagger:model LabelTaggingListInfo
  1095. type LabelTaggingListInfo struct {
  1096. BaseListInfo
  1097. // The label tagging list data | LabelTagging信息列表数据
  1098. Data []LabelTaggingInfo `json:"data"`
  1099. }
  1100. // Get label tagging list request params | LabelTagging信息列表请求参数
  1101. // swagger:model LabelTaggingListReq
  1102. type LabelTaggingListReq struct {
  1103. PageInfo
  1104. }
  1105. // The label tagging information response | LabelTagging信息返回体
  1106. // swagger:model LabelTaggingInfoResp
  1107. type LabelTaggingInfoResp struct {
  1108. BaseDataInfo
  1109. // label tagging information | LabelTagging信息数据
  1110. Data LabelTaggingInfo `json:"data"`
  1111. }
  1112. // The response data of sop task list | SopTask列表数据
  1113. // swagger:model SopTaskListResp
  1114. type SopTaskListResp struct {
  1115. BaseDataInfo
  1116. // SopTask list data | SopTask列表数据
  1117. Data SopTaskListInfo `json:"data"`
  1118. }
  1119. // The response data of sop task record list | SopTask列表数据
  1120. // swagger:model SopTaskRecordListResp
  1121. type SopTaskRecordListResp struct {
  1122. BaseDataInfo
  1123. // SopTask list data | SopTask列表数据
  1124. Data []SopTaskRecordInfo `json:"data"`
  1125. }
  1126. // SopTask list data | SopTask列表数据
  1127. // swagger:model SopTaskRecordInfo
  1128. type SopTaskRecordInfo struct {
  1129. // NodeId 节点ID
  1130. SourceType *int `json:"sourceType,optional"`
  1131. // NodeId 节点ID
  1132. SourceId *uint64 `json:"sourceId,optional"`
  1133. // 节点名称
  1134. Name *string `json:"name,optional"`
  1135. // 消息总数
  1136. TotalCount *int64 `json:"totalCount,optional"`
  1137. // 成功数
  1138. SuccessCount *int64 `json:"successCount,optional"`
  1139. // 失败数
  1140. FailureCount *int64 `json:"failureCount,optional"`
  1141. // 成功率
  1142. SuccessRate *int64 `json:"successRate,optional"`
  1143. }
  1144. // SopTask list data | SopTask列表数据
  1145. // swagger:model SopTaskListInfo
  1146. type SopTaskListInfo struct {
  1147. BaseListInfo
  1148. // The API list data | SopTask列表数据
  1149. Data []SopTaskInfo `json:"data"`
  1150. }
  1151. // Get sop task list request params | SopTask列表请求参数
  1152. // swagger:model SopTaskListReq
  1153. type SopTaskListReq struct {
  1154. PageInfo
  1155. // SOP 任务名称
  1156. Name *string `json:"name,optional"`
  1157. // 创建者 id
  1158. CreatorId *string `json:"creatorId,optional"`
  1159. }
  1160. // SopTask information response | SopTask信息返回体
  1161. // swagger:model SopTaskInfoResp
  1162. type SopTaskInfoResp struct {
  1163. BaseDataInfo
  1164. // SopTask information | SopTask数据
  1165. Data SopTaskInfo `json:"data"`
  1166. }
  1167. // SopTask create response | SopTask创建回体
  1168. // swagger:model SopTaskCreateResp
  1169. type SopTaskCreateResp struct {
  1170. BaseDataInfo
  1171. // SopTask id | SopTask id
  1172. Data uint64 `json:"data"`
  1173. }
  1174. // swagger:model CopyReq
  1175. type CopyReq struct {
  1176. // SopTask id | SopTask id
  1177. Id uint64 `json:"id"`
  1178. // SOP 任务名称
  1179. Name *string `json:"name,optional"`
  1180. // Organization id | Organization id
  1181. OrganizationId uint64 `json:"organizationId,optional"`
  1182. }
  1183. // swagger:model MessageVarResp
  1184. type MessageVarResp struct {
  1185. BaseDataInfo
  1186. Data MessageVarRespData `json:"data"`
  1187. }
  1188. type MessageVarRespData struct {
  1189. // 消息变量
  1190. MessageVar []MessageVarInfo `json:"messageVar"`
  1191. // 转发变量
  1192. ForwardVar []MessageVarInfo `json:"forwardVar"`
  1193. }
  1194. // swagger:model MessageVarInfo
  1195. type MessageVarInfo struct {
  1196. // 显示名称
  1197. Label string `json:"label"`
  1198. // 变量
  1199. Value string `json:"value"`
  1200. }
  1201. // swagger:model SopTaskOutlineResp
  1202. type SopTaskOutlineResp struct {
  1203. BaseDataInfo
  1204. Data []SopTaskOutlineInfo `json:"data"`
  1205. }
  1206. // swagger:model SopTaskOutlineInfo
  1207. type SopTaskOutlineInfo struct {
  1208. // 标题
  1209. Title string `json:"title,optional"`
  1210. // key
  1211. Key string `json:"key,optional"`
  1212. // 子节点
  1213. Children []SopTaskOutlineInfo `json:"children,optional"`
  1214. }
  1215. // swagger:model TestNodeReq
  1216. type TestNodeReq struct {
  1217. Type int `json:"type"`
  1218. Id uint64 `json:"id"`
  1219. Content string `json:"content"`
  1220. }
  1221. // swagger:model TestNodeResp
  1222. type TestNodeResp struct {
  1223. BaseDataInfo
  1224. Data []string `json:"data"`
  1225. }
  1226. // swagger:model SopApiListReq
  1227. type SopApiListReq struct {
  1228. // required : true
  1229. // min : 0
  1230. Page uint64 `json:"page" validate:"required,number,gt=0"`
  1231. // required : true
  1232. // max : 2000
  1233. PageSize uint64 `json:"pageSize" validate:"required,number,lt=2000"`
  1234. }
  1235. // swagger:model GenerateAiAnswerReq
  1236. type GenerateAiAnswerReq struct {
  1237. Content string `json:"content"`
  1238. }
  1239. // swagger:model GenerateAiAnswerResp
  1240. type GenerateAiAnswerResp struct {
  1241. BaseDataInfo
  1242. Data string `json:"data"`
  1243. }
  1244. // The response data of sop stage information | SopStage信息
  1245. // swagger:model SopStageInfo
  1246. type SopStageInfo struct {
  1247. BaseIDInfo
  1248. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1249. Status *uint8 `json:"status,optional"`
  1250. // SOP 任务 ID
  1251. TaskId *uint64 `json:"taskId,optional"`
  1252. // 阶段名称
  1253. Name *string `json:"name,optional"`
  1254. // 客群筛选条件类型 1 按标签筛选 2 按客户基本信息筛选
  1255. ConditionType *int `json:"conditionType,optional"`
  1256. // 筛选条件关系 1 满足所有条件(and) 2 满足任意条件(or)
  1257. ConditionOperator *int `json:"conditionOperator,optional"`
  1258. // 筛选条件列表
  1259. ConditionList []Condition `json:"conditionList,optional"`
  1260. // 命中后发送的消息内容
  1261. ActionMessage []Action `json:"actionMessage,optional"`
  1262. // 命中后需要打的标签
  1263. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1264. // 命中后需要移除的标签
  1265. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1266. // 命中后转发的消息内容
  1267. ActionForward *ActionForward `json:"actionForward,optional"`
  1268. // 阶段顺序
  1269. IndexSort *int `json:"indexSort,optional"`
  1270. // sop 任务信息
  1271. TaskInfo *SopTaskInfo `json:"taskInfo,optional"`
  1272. // node 信息
  1273. NodeList []SopNodeInfo `json:"nodeList,optional"`
  1274. }
  1275. // The response data of sop task information | SopTask信息
  1276. // swagger:model SopTaskInfo
  1277. type SopTaskInfo struct {
  1278. BaseIDInfo
  1279. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1280. Status *uint8 `json:"status,optional"`
  1281. // SOP 任务名称
  1282. Name *string `json:"name,optional"`
  1283. // 机器人微信 id 列表
  1284. BotWxidList []string `json:"botWxidList,optional"`
  1285. // 标签类型:1好友,2群组,3企业微信联系人
  1286. Type *int `json:"type,optional"`
  1287. // 任务计划开始时间
  1288. PlanStartTime *int64 `json:"planStartTime,optional"`
  1289. // 任务计划结束时间
  1290. PlanEndTime *int64 `json:"planEndTime,optional"`
  1291. // 创建者 id
  1292. CreatorId *string `json:"creatorId,optional"`
  1293. // 阶段信息
  1294. StageList []SopStageInfo `json:"stageList,optional"`
  1295. // 组织ID
  1296. OrganizationId *uint64 `json:"organizationId,optional"`
  1297. // Token
  1298. Token []string `json:"token,optional"`
  1299. }
  1300. // The response data of sop node information | SopNode信息
  1301. // swagger:model SopNodeInfo
  1302. type SopNodeInfo struct {
  1303. BaseIDInfo
  1304. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1305. Status *uint8 `json:"status,optional"`
  1306. // 阶段 ID
  1307. StageId *uint64 `json:"stageId,optional"`
  1308. // 父节点 ID
  1309. ParentId *uint64 `json:"parentId,optional"`
  1310. // 节点名称
  1311. Name *string `json:"name,optional"`
  1312. // 触发条件类型 1 客户回复后触发 2 超时后触发
  1313. ConditionType *int `json:"conditionType,optional"`
  1314. // 触发语义列表 当为空时则代表用户回复任意内容后触发
  1315. ConditionList []string `json:"conditionList,optional"`
  1316. // 超时触发时间(分钟)
  1317. NoReplyCondition *uint64 `json:"noReplyCondition,optional"`
  1318. // 超时触发时间单位
  1319. NoReplyUnit *string `json:"noReplyUnit,optional"`
  1320. // 命中后发送的消息内容
  1321. ActionMessage []Action `json:"actionMessage,optional"`
  1322. // 命中后需要打的标签
  1323. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1324. // 命中后需要移除的标签
  1325. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1326. // 命中后转发的消息内容
  1327. ActionForward *ActionForward `json:"actionForward,optional"`
  1328. // 阶段信息
  1329. StageInfo *SopStageInfo `json:"stageInfo,optional"`
  1330. }
  1331. // The response data of sop node information | SopNode信息
  1332. type SopNodeInfoWithLable struct {
  1333. BaseIDInfo
  1334. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1335. Status *uint8 `json:"status,optional"`
  1336. // 阶段 ID
  1337. StageId *uint64 `json:"stageId,optional"`
  1338. // 父节点 ID
  1339. ParentId *uint64 `json:"parentId,optional"`
  1340. // 节点名称
  1341. Name *string `json:"name,optional"`
  1342. // 触发条件类型 1 客户回复后触发 2 超时后触发
  1343. ConditionType *int `json:"conditionType,optional"`
  1344. // 触发语义列表 当为空时则代表用户回复任意内容后触发
  1345. ConditionList []string `json:"conditionList,optional"`
  1346. // 超时触发时间(分钟)
  1347. NoReplyCondition *uint64 `json:"noReplyCondition,optional"`
  1348. // 超时触发时间单位
  1349. NoReplyUnit *string `json:"noReplyUnit,optional"`
  1350. // 命中后发送的消息内容
  1351. ActionMessage []Action `json:"actionMessage,optional"`
  1352. // 命中后需要打的标签
  1353. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1354. // 命中后需要移除的标签
  1355. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1356. // 命中后转发的消息内容
  1357. ActionForward *ActionForward `json:"actionForward,optional"`
  1358. ActionLabelAddList []string `json:"actionLabelAddList"`
  1359. ActionLabelDelList []string `json:"actionLabelDelList"`
  1360. }
  1361. // The response data of sop stage list | SopStage列表数据
  1362. // swagger:model SopStageListResp
  1363. type SopStageListResp struct {
  1364. BaseDataInfo
  1365. // SopStage list data | SopStage列表数据
  1366. Data SopStageListInfo `json:"data"`
  1367. }
  1368. // SopStage list data | SopStage列表数据
  1369. // swagger:model SopStageListInfo
  1370. type SopStageListInfo struct {
  1371. BaseListInfo
  1372. // The API list data | SopStage列表数据
  1373. Data []SopStageInfo `json:"data"`
  1374. }
  1375. // Get sop stage list request params | SopStage列表请求参数
  1376. // swagger:model SopStageListReq
  1377. type SopStageListReq struct {
  1378. TaskId *uint64 `json:"taskId"`
  1379. }
  1380. // Batch get sop stage list request params | SopStage列表请求参数
  1381. // swagger:model BatchSopStageListReq
  1382. type BatchSopStageListReq struct {
  1383. TaskIds []uint64 `json:"taskIds"`
  1384. }
  1385. // SopStage information response | SopStage信息返回体
  1386. // swagger:model SopStageInfoResp
  1387. type SopStageInfoResp struct {
  1388. BaseDataInfo
  1389. // SopStage information | SopStage数据
  1390. Data SopStageInfo `json:"data"`
  1391. }
  1392. // SopStage create response | SopStage创建回体
  1393. // swagger:model SopStageCreateResp
  1394. type SopStageCreateResp struct {
  1395. BaseDataInfo
  1396. // SopStage id | SopStage id
  1397. Data uint64 `json:"data"`
  1398. }
  1399. // Move sop stage request params | 移动阶段请求参数
  1400. // swagger:model SopStageMoveReq
  1401. type SopStageMoveReq struct {
  1402. BaseIDInfo
  1403. // 阶段名称
  1404. Offset *int `json:"offset,optional"`
  1405. }
  1406. // swagger:model StageCopyReq
  1407. type StageCopyReq struct {
  1408. // SopStage id | SopStage id
  1409. Id uint64 `json:"id"`
  1410. }
  1411. // The response data of sop node list | SopNode列表数据
  1412. // swagger:model SopNodeListResp
  1413. type SopNodeListResp struct {
  1414. BaseDataInfo
  1415. // SopNode list data | SopNode列表数据
  1416. Data []*SopChildNodeInfo `json:"data"`
  1417. }
  1418. // The response data of sop node list | SopNode列表数据
  1419. type SopNodeListResp2 struct {
  1420. BaseDataInfo
  1421. // SopNode list data | SopNode列表数据
  1422. Data []*SopNodeInfoWithLable `json:"data"`
  1423. }
  1424. // SopNode list data | SopNode列表数据
  1425. // swagger:model SopChildNodeInfo
  1426. type SopChildNodeInfo struct {
  1427. NodeName *string `json:"nodeName,optional"`
  1428. ChildNode *SopChildNodeInfo `json:"childNode,optional"`
  1429. // The API list data | SopNode列表数据
  1430. ConditionNodes []*SopChildNodeInfo `json:"conditionNodes"`
  1431. SopNodeInfo
  1432. }
  1433. // SopNode list data | SopNode列表数据
  1434. // swagger:model SopNodeListInfo
  1435. type SopNodeListInfo struct {
  1436. BaseListInfo
  1437. // The API list data | SopNode列表数据
  1438. Data []SopNodeInfo `json:"data"`
  1439. }
  1440. // Get sop node list request params | SopNode列表请求参数
  1441. // swagger:model SopNodeListReq
  1442. type SopNodeListReq struct {
  1443. StageId *uint64 `json:"stageId"`
  1444. }
  1445. // Get sop node list request params | SopNode列表请求参数
  1446. // swagger:model BatchSopNodeListReq
  1447. type BatchSopNodeListReq struct {
  1448. StageIds []uint64 `json:"stageIds"`
  1449. }
  1450. // SopNode information response | SopNode信息返回体
  1451. // swagger:model SopNodeInfoResp
  1452. type SopNodeInfoResp struct {
  1453. BaseDataInfo
  1454. // SopNode information | SopNode数据
  1455. Data SopNodeInfo `json:"data"`
  1456. }
  1457. // SopNode create response | SopNode创建返回体
  1458. // swagger:model SopNodeCreateResp
  1459. type SopNodeCreateResp struct {
  1460. BaseDataInfo
  1461. // SopNode id | SopNode id
  1462. Data uint64 `json:"data"`
  1463. }
  1464. // The response data of message records information | MessageRecords信息
  1465. // swagger:model MessageRecordsInfo
  1466. type MessageRecordsInfo struct {
  1467. BaseIDInfo
  1468. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1469. Status *uint8 `json:"status,optional"`
  1470. // 机器人微信 id
  1471. BotWxid *string `json:"botWxid,optional"`
  1472. // 联系人 id
  1473. ContactId *uint64 `json:"contactId,optional"`
  1474. // 类型:1好友,2群组,3企业微信联系人
  1475. ContactType *int `json:"contactType,optional"`
  1476. // 接收方微信 id
  1477. ContactWxid *string `json:"contactWxid,optional"`
  1478. // 内容类型 1 文本 2 文件
  1479. ContentType *int `json:"contentType,optional"`
  1480. // 发送内容
  1481. Content *string `json:"content,optional"`
  1482. // 元数据
  1483. Meta *Meta `json:"meta,optional"`
  1484. // 异常原因
  1485. ErrorDetail *string `json:"errorDetail,optional"`
  1486. // 发送时间
  1487. SendTime *int64 `json:"sendTime,optional"`
  1488. // 源类型 1 点发 2 群发 3 SOP
  1489. SourceType *int `json:"sourceType,optional"`
  1490. // 源 ID
  1491. SourceId *uint64 `json:"sourceId,optional"`
  1492. // 次源 ID
  1493. SubSourceId *uint64 `json:"subSourceId,optional"`
  1494. // 组织ID
  1495. OrganizationId *uint64 `json:"organizationId,optional"`
  1496. }
  1497. // The response data of message records list | MessageRecords列表数据
  1498. // swagger:model MessageRecordsListResp
  1499. type MessageRecordsListResp struct {
  1500. BaseDataInfo
  1501. // MessageRecords list data | MessageRecords列表数据
  1502. Data MessageRecordsListInfo `json:"data"`
  1503. }
  1504. // MessageRecords list data | MessageRecords列表数据
  1505. // swagger:model MessageRecordsListInfo
  1506. type MessageRecordsListInfo struct {
  1507. BaseListInfo
  1508. // The API list data | MessageRecords列表数据
  1509. Data []MessageRecordsInfo `json:"data"`
  1510. }
  1511. // Get message records list request params | MessageRecords列表请求参数
  1512. // swagger:model MessageRecordsListReq
  1513. type MessageRecordsListReq struct {
  1514. PageInfo
  1515. // 群发消息ID
  1516. BatchMsgId *uint64 `json:"batchMsgId,optional"`
  1517. // 机器人微信 id
  1518. BotWxid *string `json:"botWxid,optional"`
  1519. // 消息类型:源类型 1 点发 2 群发 3 SOP 阶段 4 SOP 节点
  1520. SourceType *int `json:"sourceType,optional"`
  1521. // 消息源ID:
  1522. SourceId *uint64 `json:"sourceId,optional"`
  1523. // 接收方微信 id
  1524. ContactWxid *string `json:"contactWxid,optional"`
  1525. // 发送内容
  1526. Status *uint8 `json:"status,optional"`
  1527. }
  1528. // MessageRecords information response | MessageRecords信息返回体
  1529. // swagger:model MessageRecordsInfoResp
  1530. type MessageRecordsInfoResp struct {
  1531. BaseDataInfo
  1532. // MessageRecords information | MessageRecords数据
  1533. Data MessageRecordsInfo `json:"data"`
  1534. }
  1535. // The response data of chatroom member information | ChatroomMember信息
  1536. // swagger:model ChatroomMemberInfo
  1537. type ChatroomMemberInfo struct {
  1538. // 名称
  1539. Wxid *string `json:"wxid,optional"`
  1540. // 群组
  1541. ChatRoom *string `json:"chatRoom,optional"`
  1542. // 属主Wxid
  1543. OwnerWxid *string `json:"ownerWxid,optional"`
  1544. // 账号
  1545. Account *string `json:"account,optional"`
  1546. }
  1547. // The response data of chatroom member list | ChatroomMember列表数据
  1548. // swagger:model ChatroomMemberListResp
  1549. type ChatroomMemberListResp struct {
  1550. BaseDataInfo
  1551. // chatroom member list data | chatroom member 列表数据
  1552. Data ChatroomMemberListInfo `json:"data"`
  1553. }
  1554. // chatroom member list data | chatroom member列表数据
  1555. // swagger:model ChatroomMemberListInfo
  1556. type ChatroomMemberListInfo struct {
  1557. BaseListInfo
  1558. // The API list data | chatroom member列表数据
  1559. Data []ChatroomMemberInfo `json:"data"`
  1560. }
  1561. // Get chatroom member list request params | ChatroomMember列表请求参数
  1562. // swagger:model ChatroomMemberListReq
  1563. type ChatroomMemberListReq struct {
  1564. PageInfo
  1565. // 属主Wxid
  1566. OwnerWxid *string `json:"ownerWxid,optional"`
  1567. // 群组
  1568. ChatRoom *string `json:"chatRoom,optional"`
  1569. }
  1570. // chatroom member information response | ChatroomMember信息返回体
  1571. // swagger:model ChatroomMemberInfoResp
  1572. type ChatroomMemberInfoResp struct {
  1573. BaseDataInfo
  1574. // Server information | Server数据
  1575. Data ChatroomMemberInfo `json:"data"`
  1576. }
  1577. // The response data of user information | 用户信息
  1578. // swagger:model UserInfo
  1579. type UserInfo struct {
  1580. BaseUUIDInfo
  1581. // Status | 状态
  1582. // max : 20
  1583. Status *uint32 `json:"status,optional" validate:"omitempty,lt=20"`
  1584. // Username | 用户名
  1585. // max length : 50
  1586. Username *string `json:"username,optional" validate:"omitempty,max=50"`
  1587. // Nickname | 昵称
  1588. // max length : 40
  1589. Nickname *string `json:"nickname,optional" validate:"omitempty,max=40"`
  1590. // Password | 密码
  1591. // min length : 6
  1592. Password *string `json:"password,optional" validate:"omitempty,min=6"`
  1593. // Description | 描述
  1594. // max length : 100
  1595. Description *string `json:"description,optional" validate:"omitempty,max=100"`
  1596. // HomePath | 首页
  1597. // max length : 70
  1598. HomePath *string `json:"homePath,optional" validate:"omitempty,max=70"`
  1599. // RoleId | 角色ID
  1600. RoleIds []uint64 `json:"roleIds,optional"`
  1601. // Mobile | 手机号
  1602. // max length : 18
  1603. Mobile *string `json:"mobile,optional" validate:"omitempty,max=18"`
  1604. // Email | 邮箱
  1605. // max length : 80
  1606. Email *string `json:"email,optional" validate:"omitempty,max=80"`
  1607. // Avatar | 头像地址
  1608. // max length : 300
  1609. Avatar *string `json:"avatar,optional" validate:"omitempty,max=300"`
  1610. // Department ID | 部门ID
  1611. DepartmentId *uint64 `json:"departmentId,optional,omitempty"`
  1612. // Position ID | 职位ID
  1613. PositionIds []uint64 `json:"positionId,optional,omitempty"`
  1614. }
  1615. // User information response | 用户信息返回体
  1616. // swagger:model UserInfoResp
  1617. type UserInfoResp struct {
  1618. BaseDataInfo
  1619. // User information | User数据
  1620. Data UserInfo `json:"data"`
  1621. }
  1622. // The response data of user's basic information | 用户基本信息返回数据
  1623. // swagger:model UserBaseIDInfoResp
  1624. type UserBaseIDInfoResp struct {
  1625. BaseDataInfo
  1626. // The data of user's basic information | 用户基本信息
  1627. Data UserBaseIDInfo `json:"data"`
  1628. }
  1629. // The data of user's basic information | 用户基本信息
  1630. // swagger:model UserBaseIDInfo
  1631. type UserBaseIDInfo struct {
  1632. // User's UUID | 用户的UUID
  1633. UUID *string `json:"userId"`
  1634. // User's name | 用户名
  1635. Username *string `json:"username"`
  1636. // User's nickname | 用户的昵称
  1637. Nickname *string `json:"nickname"`
  1638. // The user's avatar path | 用户的头像路径
  1639. Avatar *string `json:"avatar"`
  1640. // The home page that the user enters after logging in | 用户登陆后进入的首页
  1641. HomePath *string `json:"homePath"`
  1642. // The description of user | 用户的描述信息
  1643. Description *string `json:"desc"`
  1644. // User's Role Name | 用户的角色名称
  1645. RoleName []string `json:"roleName"`
  1646. // Department Name | 部门名称
  1647. DepartmentName string `json:"departmentName,optional"`
  1648. // Department Name | 部门备注
  1649. DepartmentRemark string `json:"departmentRemark,optional"`
  1650. }
  1651. // swagger:model UserLoginReq
  1652. type UserLoginReq struct {
  1653. JsCode *string `json:"js_code,optional"`
  1654. }
  1655. // swagger:model UserLoginResp
  1656. type UserLoginResp struct {
  1657. BaseDataInfo
  1658. Data UserToken `json:"data,optional"`
  1659. }
  1660. // swagger:model GptsUserLoginReq
  1661. type GptsUserLoginReq struct {
  1662. Username *string `json:"username"`
  1663. Password *string `json:"password"`
  1664. }
  1665. // swagger:model GptsUserLoginResp
  1666. type GptsUserLoginResp struct {
  1667. BaseDataInfo
  1668. Data GptsUserToken `json:"data,optional"`
  1669. }
  1670. type GptsUserToken struct {
  1671. ID string `json:"id,optional"`
  1672. Token string `json:"token,optional"`
  1673. Username string `json:"username,optional"`
  1674. ExpireTime uint64 `json:"expireTime,optional"`
  1675. }
  1676. // swagger:model PasswordReq
  1677. type PasswordReq struct {
  1678. Password *string `json:"password"`
  1679. Password2 *string `json:"password2"`
  1680. }
  1681. type UserToken struct {
  1682. Token *string `json:"token,optional"`
  1683. ID *uint64 `json:"id,optional"`
  1684. Avatar *string `json:"avatar,optional"`
  1685. Nickname *string `json:"nickname,optional"`
  1686. IsVip *bool `json:"isVip,optional"`
  1687. }
  1688. // swagger:model UserVipResp
  1689. type UserVipResp struct {
  1690. BaseDataInfo
  1691. Data UserVip `json:"data,optional"`
  1692. }
  1693. type UserVip struct {
  1694. IsVip *bool `json:"isVip,optional"`
  1695. WechatAccount *string `json:"wechatAccount"`
  1696. }
  1697. // swagger:model UserBalanceResp
  1698. type UserBalanceResp struct {
  1699. BaseDataInfo
  1700. // User information | User数据
  1701. Data BalanceInfo `json:"data"`
  1702. }
  1703. // swagger:model BalanceInfo
  1704. type BalanceInfo struct {
  1705. Balance *float32 `json:"balance"`
  1706. }
  1707. // swagger:model WxidReq
  1708. type WxidReq struct {
  1709. Wxid string `json:"wxid"`
  1710. }
  1711. // The data of batch msg information | BatchMsg信息
  1712. // swagger:model BatchMsgInfo
  1713. type BatchMsgInfo struct {
  1714. BaseIDInfo
  1715. // 状态 0 未开始 1 开始发送 2 发送完成 3 发送中止
  1716. Status *uint8 `json:"status,optional"`
  1717. // 批次号
  1718. BatchNo *string `json:"batchNo,optional"`
  1719. // 任务名称
  1720. TaskName *string `json:"taskName,optional"`
  1721. // 发送方微信ID
  1722. Fromwxid *string `json:"fromwxid,optional"`
  1723. // 内容
  1724. Msg *string `json:"msg,optional"`
  1725. // 发送规则 all 全部 tag1,tag2 按tag发送
  1726. Tag *string `json:"tag,optional"`
  1727. // 总数
  1728. Total *int32 `json:"total,optional"`
  1729. // 成功数量
  1730. Success *int32 `json:"success,optional"`
  1731. // 失败数量
  1732. Fail *int32 `json:"fail,optional"`
  1733. // 开始时间
  1734. StartTime *int64 `json:"startTime,optional"`
  1735. StartTimeStr *string `json:"startTimeStr,optional"`
  1736. // 结束时间
  1737. StopTime *int64 `json:"stopTime,optional"`
  1738. // 发送时间
  1739. SendTime *int64 `json:"sendTime,optional"`
  1740. // 标签列表
  1741. Labels []uint64 `json:"labels,optional"`
  1742. GroupLabels []uint64 `json:"groupLabels,optional"`
  1743. // 标签列表
  1744. Type *int32 `json:"type,optional"`
  1745. // 内容类型:1-微信 2-whatsapp
  1746. Ctype *uint64 `json:"ctype,optional"`
  1747. Cc *string `json:"cc,optional"`
  1748. Phone *string `json:"phone,optional"`
  1749. TemplateCode *string `json:"templateCode,optional"`
  1750. Lang *string `json:"lang,optional"`
  1751. }
  1752. // The response data of batch msg list | BatchMsg列表数据
  1753. // swagger:model BatchMsgListResp
  1754. type BatchMsgListResp struct {
  1755. BaseDataInfo
  1756. // BatchMsg list data | BatchMsg列表数据
  1757. Data BatchMsgListInfo `json:"data"`
  1758. }
  1759. // BatchMsg list data | BatchMsg列表数据
  1760. // swagger:model BatchMsgListInfo
  1761. type BatchMsgListInfo struct {
  1762. BaseListInfo
  1763. // The API list data | BatchMsg列表数据
  1764. Data []BatchMsgInfo `json:"data"`
  1765. }
  1766. // Get batch msg list request params | BatchMsg列表请求参数
  1767. // swagger:model BatchMsgListReq
  1768. type BatchMsgListReq struct {
  1769. PageInfo
  1770. // 批次号
  1771. BatchNo *string `json:"batchNo,optional"`
  1772. // 发送方微信ID
  1773. Fromwxid *string `json:"fromwxid,optional"`
  1774. // 内容
  1775. Msg *string `json:"msg,optional"`
  1776. // 任务名称
  1777. TaskName *string `json:"taskName,optional"`
  1778. // 群发类型
  1779. Type *int32 `json:"type"`
  1780. }
  1781. // BatchMsg information response | BatchMsg信息返回体
  1782. // swagger:model BatchMsgInfoResp
  1783. type BatchMsgInfoResp struct {
  1784. BaseDataInfo
  1785. // BatchMsg information | BatchMsg数据
  1786. Data BatchMsgInfo `json:"data"`
  1787. }
  1788. // swagger:model WhatsappBatchMsgListReq
  1789. type WhatsappBatchMsgListReq struct {
  1790. PageInfo
  1791. // 批次号
  1792. BatchNo *string `json:"batchNo,optional"`
  1793. // 发送方微信ID
  1794. Phone *string `json:"phone,optional"`
  1795. // 内容
  1796. Msg *string `json:"msg,optional"`
  1797. }
  1798. // swagger:model WhatsappBatchMsgHistoryReq
  1799. type WhatsappBatchMsgHistoryReq struct {
  1800. PageInfo
  1801. IDReq
  1802. }
  1803. // swagger:model WhatsappBatchMsgHistoryResp
  1804. type WhatsappBatchMsgHistoryResp struct {
  1805. BaseDataInfo
  1806. Data HistoryListInfo `json:"data"`
  1807. }
  1808. // swagger:model HistoryListInfo
  1809. type HistoryListInfo struct {
  1810. BaseListInfo
  1811. Data []HistoryInfo `json:"data"`
  1812. }
  1813. // swagger:model HistoryInfo
  1814. type HistoryInfo struct {
  1815. Index *uint64 `json:"index,optional"`
  1816. From *string `json:"from,optional"`
  1817. To *string `json:"to,optional"`
  1818. SendTime *int64 `json:"sendTime,optional"`
  1819. BatchNo *string `json:"batchNo,optional"`
  1820. Cc *string `json:"cc,optional"`
  1821. Phone *string `json:"phone,optional"`
  1822. }
  1823. // swagger:model SendMsgReq
  1824. type SendMsgReq struct {
  1825. Phone *string `json:"phone"`
  1826. To *string `json:"to"`
  1827. Lang *string `json:"lang"`
  1828. TemplateCode *string `json:"templateCode"`
  1829. }
  1830. // The data of msg information | Msg信息
  1831. // swagger:model MsgInfo
  1832. type MsgInfo struct {
  1833. BaseIDInfo
  1834. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1835. Status *uint8 `json:"status,optional"`
  1836. // 发送方微信ID
  1837. Fromwxid *string `json:"fromwxid,optional"`
  1838. // 接收人微信ID/群ID
  1839. Toid *string `json:"toid,optional"`
  1840. // 消息类型
  1841. Msgtype *int32 `json:"msgtype,optional"`
  1842. // 消息
  1843. Msg *string `json:"msg,optional"`
  1844. // 批次号
  1845. BatchNo *string `json:"batchNo,optional"`
  1846. }
  1847. // The response data of msg list | Msg列表数据
  1848. // swagger:model MsgListResp
  1849. type MsgListResp struct {
  1850. BaseDataInfo
  1851. // Msg list data | Msg列表数据
  1852. Data MsgListInfo `json:"data"`
  1853. }
  1854. // Msg list data | Msg列表数据
  1855. // swagger:model MsgListInfo
  1856. type MsgListInfo struct {
  1857. BaseListInfo
  1858. // The API list data | Msg列表数据
  1859. Data []MsgInfo `json:"data"`
  1860. }
  1861. // Get msg list request params | Msg列表请求参数
  1862. // swagger:model MsgListReq
  1863. type MsgListReq struct {
  1864. PageInfo
  1865. // 状态
  1866. Status *uint8 `json:"status,optional"`
  1867. // 接收人微信ID/群ID
  1868. Toid *string `json:"toid,optional"`
  1869. // 群发消息ID
  1870. BatchId *uint64 `json:"batchId"`
  1871. }
  1872. // Msg information response | Msg信息返回体
  1873. // swagger:model MsgInfoResp
  1874. type MsgInfoResp struct {
  1875. BaseDataInfo
  1876. // Msg information | Msg数据
  1877. Data MsgInfo `json:"data"`
  1878. }
  1879. // The data of employee information | Employee信息
  1880. // swagger:model EmployeeInfo
  1881. type EmployeeInfo struct {
  1882. BaseIDInfo
  1883. // title | 标题
  1884. Title *string `json:"title,optional"`
  1885. // avatar | 头像
  1886. Avatar *string `json:"avatar,optional"`
  1887. // tags | 个人标签
  1888. Tags *string `json:"tags,optional"`
  1889. // hire_count | 被雇佣次数
  1890. HireCount *int `json:"hireCount,optional"`
  1891. // service_count | 已服务次数
  1892. ServiceCount *int `json:"serviceCount,optional"`
  1893. // achievement_count | 业绩单数
  1894. AchievementCount *int `json:"achievementCount,optional"`
  1895. // category_id | 分类ID
  1896. CategoryId *uint64 `json:"categoryId,optional"`
  1897. // intro | 个人介绍
  1898. Intro *string `json:"intro,optional"`
  1899. // estimate | 自我评价
  1900. Estimate *string `json:"estimate,optional"`
  1901. // skill | 技能卡
  1902. Skill *string `json:"skill,optional"`
  1903. // ability_type | 能力类型
  1904. AbilityType *string `json:"abilityType,optional"`
  1905. // scene | 使用场景
  1906. Scene *string `json:"scene,optional"`
  1907. SceneList []EmployeeConfigInfo `json:"sceneList,optional"`
  1908. // switch_in | 支持介入
  1909. SwitchIn *string `json:"switchIn,optional"`
  1910. SwitchInList []EmployeeConfigInfo `json:"switchInList,optional"`
  1911. Tutorial []TutorialInfo `json:"tutorial,optional"`
  1912. // video_url | 视频地址
  1913. VideoUrl *string `json:"videoUrl,optional"`
  1914. // work_experience | 工作经验
  1915. WorkExperience []WorkExperienceInfo `json:"workExperience,optional"`
  1916. ApiBase *string `json:"apiBase,optional"`
  1917. ApiKey *string `json:"apiKey,optional"`
  1918. // AI信息
  1919. AiInfo *string `json:"aiInfo,optional"`
  1920. ShowChat *bool `json:"showChat,optional"`
  1921. IsVip *bool `json:"isVip,optional"`
  1922. ChatUrl *string `json:"chatUrl,optional"`
  1923. }
  1924. // The response data of employee list | Employee列表数据
  1925. // swagger:model EmployeeListResp
  1926. type EmployeeListResp struct {
  1927. BaseDataInfo
  1928. // Employee list data | Employee列表数据
  1929. Data EmployeeListInfo `json:"data"`
  1930. }
  1931. // Employee list data | Employee列表数据
  1932. // swagger:model EmployeeListInfo
  1933. type EmployeeListInfo struct {
  1934. BaseListInfo
  1935. // The API list data | Employee列表数据
  1936. Data []EmployeeInfo `json:"data"`
  1937. }
  1938. // Get employee list request params | Employee列表请求参数
  1939. // swagger:model EmployeeListReq
  1940. type EmployeeListReq struct {
  1941. PageInfo
  1942. // title | 标题
  1943. Title *string `json:"title,optional"`
  1944. // tags | 个人标签
  1945. Tags *string `json:"tags,optional"`
  1946. // category_id | 分类ID
  1947. CategoryId *uint64 `json:"categoryId,optional"`
  1948. }
  1949. // Employee information response | Employee信息返回体
  1950. // swagger:model EmployeeInfoResp
  1951. type EmployeeInfoResp struct {
  1952. BaseDataInfo
  1953. // Employee information | Employee数据
  1954. Data EmployeeInfo `json:"data"`
  1955. }
  1956. // swagger:model AuthReq
  1957. type AuthReq struct {
  1958. Token *string `json:"token,optional"`
  1959. Data uint64 `json:"data,optional"`
  1960. }
  1961. // swagger:model AuthResp
  1962. type AuthResp struct {
  1963. Token *string `json:"token,optional"`
  1964. Data *uint64 `json:"data,optional"`
  1965. Original interface{} `json:"original,optional"`
  1966. OK interface{} `json:"ok,optional"`
  1967. SecretKey string `json:"secretKey,optional"`
  1968. }
  1969. // The data of work experience information | WorkExperience信息
  1970. // swagger:model WorkExperienceInfo
  1971. type WorkExperienceInfo struct {
  1972. BaseIDInfo
  1973. // employee_id | 员工ID
  1974. EmployeeId *uint64 `json:"employeeId,optional"`
  1975. // start_date | 开始时间
  1976. StartDate *int64 `json:"startDate,optional"`
  1977. StartDateStr *string `json:"startDateStr,optional"`
  1978. // end_date | 结束时间
  1979. EndDate *int64 `json:"endDate,optional"`
  1980. EndDateStr *string `json:"endDateStr,optional"`
  1981. // company | 公司名
  1982. Company *string `json:"company,optional"`
  1983. // experience | 工作内容
  1984. Experience *string `json:"experience,optional"`
  1985. }
  1986. // The response data of work experience list | WorkExperience列表数据
  1987. // swagger:model WorkExperienceListResp
  1988. type WorkExperienceListResp struct {
  1989. BaseDataInfo
  1990. // WorkExperience list data | WorkExperience列表数据
  1991. Data WorkExperienceListInfo `json:"data"`
  1992. }
  1993. // WorkExperience list data | WorkExperience列表数据
  1994. // swagger:model WorkExperienceListInfo
  1995. type WorkExperienceListInfo struct {
  1996. BaseListInfo
  1997. // The API list data | WorkExperience列表数据
  1998. Data []WorkExperienceInfo `json:"data"`
  1999. }
  2000. // Get work experience list request params | WorkExperience列表请求参数
  2001. // swagger:model WorkExperienceListReq
  2002. type WorkExperienceListReq struct {
  2003. PageInfo
  2004. // company | 公司名
  2005. Company *string `json:"company,optional"`
  2006. }
  2007. // WorkExperience information response | WorkExperience信息返回体
  2008. // swagger:model WorkExperienceInfoResp
  2009. type WorkExperienceInfoResp struct {
  2010. BaseDataInfo
  2011. // WorkExperience information | WorkExperience数据
  2012. Data WorkExperienceInfo `json:"data"`
  2013. }
  2014. // The data of tutorial information | Tutorial信息
  2015. // swagger:model TutorialInfo
  2016. type TutorialInfo struct {
  2017. BaseIDInfo
  2018. // employee_id | 员工ID
  2019. EmployeeId *uint64 `json:"employeeId,optional"`
  2020. // index | 序号
  2021. Index *int `json:"index,optional"`
  2022. // title | 标题
  2023. Title *string `json:"title,optional"`
  2024. // content | 内容
  2025. Content *string `json:"content,optional"`
  2026. }
  2027. // The response data of tutorial list | Tutorial列表数据
  2028. // swagger:model TutorialListResp
  2029. type TutorialListResp struct {
  2030. BaseDataInfo
  2031. // Tutorial list data | Tutorial列表数据
  2032. Data TutorialListInfo `json:"data"`
  2033. }
  2034. // Tutorial list data | Tutorial列表数据
  2035. // swagger:model TutorialListInfo
  2036. type TutorialListInfo struct {
  2037. BaseListInfo
  2038. // The API list data | Tutorial列表数据
  2039. Data []TutorialInfo `json:"data"`
  2040. }
  2041. // Get tutorial list request params | Tutorial列表请求参数
  2042. // swagger:model TutorialListReq
  2043. type TutorialListReq struct {
  2044. PageInfo
  2045. // title | 标题
  2046. Title *string `json:"title,optional"`
  2047. // content | 内容
  2048. Content *string `json:"content,optional"`
  2049. }
  2050. // Tutorial information response | Tutorial信息返回体
  2051. // swagger:model TutorialInfoResp
  2052. type TutorialInfoResp struct {
  2053. BaseDataInfo
  2054. // Tutorial information | Tutorial数据
  2055. Data TutorialInfo `json:"data"`
  2056. }
  2057. // The data of employee config information | EmployeeConfig信息
  2058. // swagger:model EmployeeConfigInfo
  2059. type EmployeeConfigInfo struct {
  2060. BaseIDInfo
  2061. // 类型:scene-场景 switch_in-接入方式
  2062. Stype *string `json:"stype,optional"`
  2063. // 标题
  2064. Title *string `json:"title,optional"`
  2065. // 图片地址
  2066. Photo *string `json:"photo,optional"`
  2067. }
  2068. // EmployeeConfig list data | EmployeeConfig列表数据
  2069. // swagger:model EmployeeConfigListInfo
  2070. type EmployeeConfigListInfo struct {
  2071. BaseListInfo
  2072. // The API list data | EmployeeConfig列表数据
  2073. Data []EmployeeConfigInfo `json:"data"`
  2074. }
  2075. // Employee config response | Employee配置信息返回体
  2076. // swagger:model EmployeeConfigListReq
  2077. type EmployeeConfigListReq struct {
  2078. /// 类型:scene-场景 switch_in-接入方式
  2079. Stype *string `json:"stype,optional"`
  2080. }
  2081. // EmployeeConfig information response | EmployeeConfig信息返回体
  2082. type EmployeeConfig struct {
  2083. Scene []EmployeeConfigInfo `json:"scene"`
  2084. SwitchIn []EmployeeConfigInfo `json:"switchIn"`
  2085. }
  2086. // Employee config response | Employee配置信息返回体
  2087. // swagger:model EmployeeConfigListResp
  2088. type EmployeeConfigListResp struct {
  2089. BaseDataInfo
  2090. // Employee information | Employee数据
  2091. Data EmployeeConfig `json:"data"`
  2092. }
  2093. // The data of token information | Token信息
  2094. // swagger:model TokenInfo
  2095. type TokenInfo struct {
  2096. BaseIDInfo
  2097. // 过期时间
  2098. ExpireAt *int64 `json:"expireAt,optional"`
  2099. ExpireAtStr *string `json:"expireAtStr,optional"`
  2100. // Token
  2101. Token *string `json:"token,optional"`
  2102. // Mac地址
  2103. Mac *string `json:"mac,optional"`
  2104. // 租户ID
  2105. OrganizationId *uint64 `json:"organization_id,optional"`
  2106. OrganizationName *string `json:"organizationName,optional"`
  2107. AgentId *uint64 `json:"agent_id,optional"`
  2108. AgentInfo *AgentInfo `json:"agent_info,optional"`
  2109. CustomAgentBase *string `json:"custom_agent_base,optional"`
  2110. CustomAgentKey *string `json:"custom_agent_key,optional"`
  2111. OpenaiBase *string `json:"openai_base,optional"`
  2112. OpenaiKey *string `json:"openai_key,optional"`
  2113. }
  2114. // The response data of token list | Token列表数据
  2115. // swagger:model TokenListResp
  2116. type TokenListResp struct {
  2117. BaseDataInfo
  2118. // Token list data | Token列表数据
  2119. Data TokenListInfo `json:"data"`
  2120. }
  2121. // Token list data | Token列表数据
  2122. // swagger:model TokenListInfo
  2123. type TokenListInfo struct {
  2124. BaseListInfo
  2125. // The API list data | Token列表数据
  2126. Data []TokenInfo `json:"data"`
  2127. }
  2128. // Get token list request params | Token列表请求参数
  2129. // swagger:model TokenListReq
  2130. type TokenListReq struct {
  2131. PageInfo
  2132. // Token
  2133. Token *string `json:"token,optional"`
  2134. // Mac地址
  2135. Mac *string `json:"mac,optional"`
  2136. OrganizationId *uint64 `json:"organization_id,optional"`
  2137. OrganizationName *string `json:"organizationName,optional"`
  2138. }
  2139. // Token information response | Token信息返回体
  2140. // swagger:model TokenInfoResp
  2141. type TokenInfoResp struct {
  2142. BaseDataInfo
  2143. // Token information | Token数据
  2144. Data TokenInfo `json:"data"`
  2145. }
  2146. // swagger:model CheckTokenReq
  2147. type CheckTokenReq struct {
  2148. // Token
  2149. Token *string `json:"token"`
  2150. // Mac地址
  2151. Mac *string `json:"mac"`
  2152. }
  2153. // swagger:model CheckTokenResp
  2154. type CheckTokenResp struct {
  2155. // 是否合法
  2156. Valid *bool `json:"valid"`
  2157. // Sign 签名内容
  2158. Sign *string `json:"sign"`
  2159. // Timestamp 时间戳
  2160. Timestamp *int64 `json:"timestamp"`
  2161. AgentInfo *AgentInfo `json:"agent_info"`
  2162. CustomAgentBase *string `json:"custom_agent_base"`
  2163. CustomAgentKey *string `json:"custom_agent_key"`
  2164. OpenaiBase *string `json:"openai_base"`
  2165. OpenaiKey *string `json:"openai_key"`
  2166. DatasetBase *string `json:"dataset_base"`
  2167. DatasetKey *string `json:"dataset_key"`
  2168. }
  2169. // The data of category information | Category信息
  2170. // swagger:model CategoryInfo
  2171. type CategoryInfo struct {
  2172. BaseIDInfo
  2173. // name | 角色名称
  2174. Name *string `json:"name,optional"`
  2175. // organization_id | 租户ID
  2176. OrganizationId *uint64 `json:"organizationId,optional"`
  2177. }
  2178. // The response data of category list | Category列表数据
  2179. // swagger:model CategoryListResp
  2180. type CategoryListResp struct {
  2181. BaseDataInfo
  2182. // Category list data | Category列表数据
  2183. Data CategoryListInfo `json:"data"`
  2184. }
  2185. // Category list data | Category列表数据
  2186. // swagger:model CategoryListInfo
  2187. type CategoryListInfo struct {
  2188. BaseListInfo
  2189. // The API list data | Category列表数据
  2190. Data []CategoryInfo `json:"data"`
  2191. }
  2192. // Get category list request params | Category列表请求参数
  2193. // swagger:model CategoryListReq
  2194. type CategoryListReq struct {
  2195. PageInfo
  2196. // name | 角色名称
  2197. Name *string `json:"name,optional"`
  2198. }
  2199. // Category information response | Category信息返回体
  2200. // swagger:model CategoryInfoResp
  2201. type CategoryInfoResp struct {
  2202. BaseDataInfo
  2203. // Category information | Category数据
  2204. Data CategoryInfo `json:"data"`
  2205. }
  2206. // The data of agent base information | AgentBase信息
  2207. // swagger:model AgentBaseInfo
  2208. type AgentBaseInfo struct {
  2209. Id *string `json:"id,optional"`
  2210. }
  2211. // The response data of agent base list | AgentBase列表数据
  2212. // swagger:model AgentBaseListResp
  2213. type AgentBaseListResp struct {
  2214. BaseDataInfo
  2215. // AgentBase list data | AgentBase列表数据
  2216. Data AgentBaseListInfo `json:"data"`
  2217. }
  2218. // AgentBase list data | AgentBase列表数据
  2219. // swagger:model AgentBaseListInfo
  2220. type AgentBaseListInfo struct {
  2221. BaseListInfo
  2222. // The API list data | AgentBase列表数据
  2223. Data []AgentBaseInfo `json:"data"`
  2224. }
  2225. // Get agent base list request params | AgentBase列表请求参数
  2226. // swagger:model AgentBaseListReq
  2227. type AgentBaseListReq struct {
  2228. PageInfo
  2229. // q
  2230. Q *string `json:"q,optional"`
  2231. // a
  2232. A *string `json:"a,optional"`
  2233. // dataset_id
  2234. DatasetId *string `json:"datasetId,optional"`
  2235. }
  2236. // AgentBase information response | AgentBase信息返回体
  2237. // swagger:model AgentBaseInfoResp
  2238. type AgentBaseInfoResp struct {
  2239. BaseDataInfo
  2240. // AgentBase information | AgentBase数据
  2241. Data AgentBaseInfo `json:"data"`
  2242. }
  2243. // The data of chat records information | ChatRecords信息
  2244. // swagger:model ChatRecordsInfo
  2245. type ChatRecordsInfo struct {
  2246. BaseIDInfo
  2247. // 内容
  2248. Content *string `json:"content,optional"`
  2249. // 内容类型:1-提问 2-回答
  2250. ContentType *uint8 `json:"contentType,optional"`
  2251. // 角色类型:1-用户 2-智能体
  2252. RoleType *string `json:"roleType,optional"`
  2253. // 会话ID
  2254. SessionId *uint64 `json:"sessionId,optional"`
  2255. // 用户ID
  2256. UserId *uint64 `json:"userId,optional"`
  2257. // 聊天ID
  2258. BotId *uint64 `json:"botId,optional"`
  2259. // 类型:1-微信 2-小程序card 3-智能体
  2260. BotType *uint8 `json:"botType,optional,options=1|2|3"`
  2261. Finish bool `json:"finish,optional"`
  2262. }
  2263. // The response data of chat records list | ChatRecords列表数据
  2264. // swagger:model ChatRecordsListResp
  2265. type ChatRecordsListResp struct {
  2266. BaseDataInfo
  2267. // ChatRecords list data | ChatRecords列表数据
  2268. Data ChatRecordsListInfo `json:"data"`
  2269. }
  2270. // ChatRecords list data | ChatRecords列表数据
  2271. // swagger:model ChatRecordsListInfo
  2272. type ChatRecordsListInfo struct {
  2273. BaseListInfo
  2274. // The API list data | ChatRecords列表数据
  2275. Data []ChatRecordsInfo `json:"data"`
  2276. }
  2277. // Get chat records list request params | ChatRecords列表请求参数
  2278. // swagger:model ChatRecordsListReq
  2279. type ChatRecordsListReq struct {
  2280. PageInfo
  2281. SessionId *uint64 `json:"sessionId"`
  2282. BotId *uint64 `json:"botId,optional"`
  2283. BotType *uint8 `json:"botType,optional"`
  2284. }
  2285. // ChatRecords information response | ChatRecords信息返回体
  2286. // swagger:model ChatRecordsInfoResp
  2287. type ChatRecordsInfoResp struct {
  2288. BaseDataInfo
  2289. // ChatRecords information | ChatRecords数据
  2290. Data ChatRecordsInfo `json:"data"`
  2291. }
  2292. // swagger:model ChatRecommendReq
  2293. type ChatRecommendReq struct {
  2294. SessionId *uint64 `json:"sessionId"`
  2295. }
  2296. // swagger:model ChatRecommendResp
  2297. type ChatRecommendResp struct {
  2298. BaseDataInfo
  2299. // The API list data | ChatRecords列表数据
  2300. Data ChatRecommend `json:"data"`
  2301. }
  2302. type ChatRecommend struct {
  2303. Data []string `json:"data"`
  2304. SessionId uint64 `json:"sessionId"`
  2305. }
  2306. // swagger:model ChatAskReq
  2307. type ChatAskReq struct {
  2308. CardId *uint64 `json:"cardId"`
  2309. Question *string `json:"question"`
  2310. SessionId *int `json:"sessionId"`
  2311. }
  2312. // swagger:model ChatAskResp
  2313. type ChatAskResp struct {
  2314. BaseDataInfo
  2315. Data *string `json:"data"`
  2316. }
  2317. // swagger:model GptChatReq
  2318. type GptChatReq struct {
  2319. ConversationId *string `json:"conversationId,optional"`
  2320. Content *string `json:"content"`
  2321. AgentId *uint64 `json:"agentId"`
  2322. }
  2323. // swagger:model GptMessageReq
  2324. type GptMessageReq struct {
  2325. ConversationId *string `json:"conversationId,optional"`
  2326. FirstId *string `json:"firstId,optional"`
  2327. Limit *int `json:"limit"`
  2328. AgentId *uint64 `json:"agentId"`
  2329. }
  2330. // swagger:model GptMessageResp
  2331. type GptMessageResp struct {
  2332. BaseDataInfo
  2333. Data GptMessageList `json:"data"`
  2334. }
  2335. type GptMessageList struct {
  2336. HasMore bool `json:"hasMore"`
  2337. Data []Message `json:"data"`
  2338. }
  2339. type Message struct {
  2340. Id *string `json:"id"`
  2341. ConversationId *string `json:"conversationId,optional"`
  2342. Query *string `json:"query"`
  2343. Answer *string `json:"answer"`
  2344. Inputs interface{} `json:"inputs"`
  2345. CreatedAt *int `json:"createdAt"`
  2346. }
  2347. // swagger:model GptsSessionReq
  2348. type GptsSessionReq struct {
  2349. Limit *int `json:"limit"`
  2350. LastId *string `json:"lastId,optional"`
  2351. AgentId *uint64 `json:"agentId"`
  2352. }
  2353. // swagger:model GptsSessionResp
  2354. type GptsSessionResp struct {
  2355. BaseDataInfo
  2356. Data GptsSessionList `json:"data"`
  2357. }
  2358. type GptsSessionList struct {
  2359. HasMore bool `json:"hasMore"`
  2360. Data []Session `json:"data"`
  2361. }
  2362. type Session struct {
  2363. Id *string `json:"id"`
  2364. Name *string `json:"name"`
  2365. CreatedAt *int `json:"createdAt"`
  2366. Inputs interface{} `json:"inputs"`
  2367. }
  2368. // swagger:model GptsDeleteSessionReq
  2369. type GptsDeleteSessionReq struct {
  2370. AgentId *uint64 `json:"agentId"`
  2371. ConversationId *string `json:"conversationId"`
  2372. }
  2373. // swagger:model GptsRenameSessionReq
  2374. type GptsRenameSessionReq struct {
  2375. AgentId *uint64 `json:"agentId"`
  2376. ConversationId *string `json:"conversationId"`
  2377. Name *string `json:"name"`
  2378. }
  2379. // The data of chat session information | ChatSession信息
  2380. // swagger:model ChatSessionInfo
  2381. type ChatSessionInfo struct {
  2382. BaseIDInfo
  2383. // 名称
  2384. Name *string `json:"name,optional"`
  2385. // 用户ID
  2386. UserId *uint64 `json:"userId,optional"`
  2387. UserName *string `json:"userName,optional"`
  2388. // 聊天ID
  2389. BotId *uint64 `json:"botId,optional"`
  2390. // 主体名称
  2391. BotName *string `json:"botName,optional"`
  2392. // 类型:1-微信 2-小程序card 3-智能体
  2393. BotType *uint8 `json:"botType,optional"`
  2394. // 类型:1-微信 2-小程序card 3-智能体
  2395. BotTypeStr *string `json:"botTypeStr,optional"`
  2396. }
  2397. // The response data of chat session list | ChatSession列表数据
  2398. // swagger:model ChatSessionListResp
  2399. type ChatSessionListResp struct {
  2400. BaseDataInfo
  2401. // ChatSession list data | ChatSession列表数据
  2402. Data ChatSessionListInfo `json:"data"`
  2403. }
  2404. // ChatSession list data | ChatSession列表数据
  2405. // swagger:model ChatSessionListInfo
  2406. type ChatSessionListInfo struct {
  2407. BaseListInfo
  2408. // The API list data | ChatSession列表数据
  2409. Data []ChatSessionInfo `json:"data"`
  2410. }
  2411. // Get chat session list request params | ChatSession列表请求参数
  2412. // swagger:model ChatSessionListReq
  2413. type ChatSessionListReq struct {
  2414. PageInfo
  2415. BotId *uint64 `json:"botId,optional"`
  2416. BotType *uint8 `json:"botType,optional"`
  2417. BotName *string `json:"botName,optional"`
  2418. }
  2419. // ChatSession information response | ChatSession信息返回体
  2420. // swagger:model ChatSessionInfoResp
  2421. type ChatSessionInfoResp struct {
  2422. BaseDataInfo
  2423. // ChatSession information | ChatSession数据
  2424. Data ChatSessionInfo `json:"data"`
  2425. }
  2426. // The data of wx card information | WxCard信息
  2427. // swagger:model WxCardInfo
  2428. type WxCardInfo struct {
  2429. BaseIDInfo
  2430. // user表ID
  2431. UserId *uint64 `json:"userId,optional"`
  2432. // wx表ID
  2433. WxUserId *uint64 `json:"wxUserId,optional"`
  2434. // 头像
  2435. Avatar *string `json:"avatar,optional"`
  2436. // logo
  2437. Logo *string `json:"logo,optional"`
  2438. // 名称
  2439. Name *string `json:"name,optional"`
  2440. // 公司
  2441. Company *string `json:"company,optional"`
  2442. // 地址
  2443. Address *string `json:"address,optional"`
  2444. // 手机号
  2445. Phone *string `json:"phone,optional"`
  2446. // 公众号
  2447. OfficialAccount *string `json:"officialAccount,optional"`
  2448. // 微信号
  2449. WechatAccount *string `json:"wechatAccount,optional"`
  2450. // 邮箱
  2451. Email *string `json:"email,optional"`
  2452. // 聊天信息
  2453. ApiBase *string `json:"apiBase,optional"`
  2454. ApiKey *string `json:"apiKey,optional"`
  2455. // AI信息
  2456. AiInfo *string `json:"aiInfo,optional"`
  2457. // 个人介绍
  2458. Intro *string `json:"intro,optional"`
  2459. ShowChat *bool `json:"showChat,optional"`
  2460. ShowAi *bool `json:"showAi,optional"`
  2461. IsVip *bool `json:"isVip,optional"`
  2462. }
  2463. // swagger:model WxCardSimpleInfo
  2464. type WxCardSimpleInfo struct {
  2465. ID *uint64 `json:"id,optional"`
  2466. // 头像
  2467. Avatar *string `json:"avatar,optional"`
  2468. // 名称
  2469. Name *string `json:"name,optional"`
  2470. Type *string `json:"type,optional"`
  2471. }
  2472. // The response data of wx card list | WxCard列表数据
  2473. // swagger:model WxCardListResp
  2474. type WxCardListResp struct {
  2475. BaseDataInfo
  2476. // WxCard list data | WxCard列表数据
  2477. Data WxCardListInfo `json:"data"`
  2478. }
  2479. // WxCard list data | WxCard列表数据
  2480. // swagger:model WxCardListInfo
  2481. type WxCardListInfo struct {
  2482. BaseListInfo
  2483. // The API list data | WxCard列表数据
  2484. Data []WxCardInfo `json:"data"`
  2485. }
  2486. // Get wx card list request params | WxCard列表请求参数
  2487. // swagger:model WxCardListReq
  2488. type WxCardListReq struct {
  2489. PageInfo
  2490. // 头像
  2491. Avatar *string `json:"avatar,optional"`
  2492. // logo
  2493. Logo *string `json:"logo,optional"`
  2494. // 名称
  2495. Name *string `json:"name,optional"`
  2496. }
  2497. // WxCard information response | WxCard信息返回体
  2498. // swagger:model WxCardInfoResp
  2499. type WxCardInfoResp struct {
  2500. BaseDataInfo
  2501. // WxCard information | WxCard数据
  2502. Data WxCardInfo `json:"data"`
  2503. }
  2504. // swagger:model QrcodeReq
  2505. type QrcodeReq struct {
  2506. Path string `form:"path"`
  2507. Width int64 `form:"width"`
  2508. EnvVersion string `form:"envVersion"`
  2509. }
  2510. // The data of wx card user information | WxCardUser信息
  2511. // swagger:model WxCardUserInfo
  2512. type WxCardUserInfo struct {
  2513. BaseIDInfo
  2514. // 微信id
  2515. Wxid *string `json:"wxid,optional"`
  2516. // 微信号
  2517. Account *string `json:"account,optional"`
  2518. // 头像
  2519. Avatar *string `json:"avatar,optional"`
  2520. // 昵称
  2521. Nickname *string `json:"nickname,optional"`
  2522. // 备注名
  2523. Remark *string `json:"remark,optional"`
  2524. // 手机号
  2525. Phone *string `json:"phone,optional"`
  2526. // OpenID
  2527. OpenId *string `json:"openId,optional"`
  2528. // UnionID
  2529. UnionId *string `json:"unionId,optional"`
  2530. // SessionKey
  2531. SessionKey *string `json:"sessionKey,optional"`
  2532. // IsVip
  2533. IsVip *string `json:"isVip,optional"`
  2534. }
  2535. // The response data of wx card user list | WxCardUser列表数据
  2536. // swagger:model WxCardUserListResp
  2537. type WxCardUserListResp struct {
  2538. BaseDataInfo
  2539. // WxCardUser list data | WxCardUser列表数据
  2540. Data WxCardUserListInfo `json:"data"`
  2541. }
  2542. // WxCardUser list data | WxCardUser列表数据
  2543. // swagger:model WxCardUserListInfo
  2544. type WxCardUserListInfo struct {
  2545. BaseListInfo
  2546. // The API list data | WxCardUser列表数据
  2547. Data []WxCardUserInfo `json:"data"`
  2548. }
  2549. // Get wx card user list request params | WxCardUser列表请求参数
  2550. // swagger:model WxCardUserListReq
  2551. type WxCardUserListReq struct {
  2552. PageInfo
  2553. // 微信id
  2554. Wxid *string `json:"wxid,optional"`
  2555. // 微信号
  2556. Account *string `json:"account,optional"`
  2557. // 头像
  2558. Avatar *string `json:"avatar,optional"`
  2559. // 昵称
  2560. Nickname *string `json:"nickname,optional"`
  2561. }
  2562. // WxCardUser information response | WxCardUser信息返回体
  2563. // swagger:model WxCardUserInfoResp
  2564. type WxCardUserInfoResp struct {
  2565. BaseDataInfo
  2566. // WxCardUser information | WxCardUser数据
  2567. Data WxCardUserInfo `json:"data"`
  2568. }
  2569. // The data of wx card visit information | WxCardVisit信息
  2570. // swagger:model WxCardVisitInfo
  2571. type WxCardVisitInfo struct {
  2572. BaseIDInfo
  2573. // user表ID
  2574. UserId *uint64 `json:"userId,optional"`
  2575. // user名
  2576. UserName *string `json:"userName,optional"`
  2577. // 被访ID
  2578. BotId *uint64 `json:"botId,optional"`
  2579. // 类型:1-微信 2-小程序 3-智能体
  2580. BotType *uint8 `json:"botType,optional"`
  2581. // 类型:1-微信 2-小程序 3-智能体
  2582. BotTypeStr *string `json:"botTypeStr,optional"`
  2583. CardInfo WxCardSimpleInfo `json:"cardInfo,optional,omitempty"`
  2584. }
  2585. // swagger:model WxCardVisitReq
  2586. type WxCardVisitReq struct {
  2587. BaseIDInfo
  2588. // user表ID
  2589. UserId *uint64 `json:"userId,optional"`
  2590. // 被访ID
  2591. BotId *uint64 `json:"botId,optional"`
  2592. // 类型:1-微信 2-小程序 3-智能体
  2593. BotType *uint8 `json:"botType,optional"`
  2594. }
  2595. // swagger:model WxCardVisitSingleInfo
  2596. type WxCardVisitSingleInfo struct {
  2597. BaseIDInfo
  2598. // user表ID
  2599. UserId *uint64 `json:"userId,optional"`
  2600. // 被访ID
  2601. BotId *uint64 `json:"botId,optional"`
  2602. // 类型:1-微信 2-小程序 3-智能体
  2603. BotType *uint8 `json:"botType,optional"`
  2604. CardInfo WxCardInfo `json:"cardInfo,optional"`
  2605. }
  2606. // The response data of wx card visit list | WxCardVisit列表数据
  2607. // swagger:model WxCardVisitListResp
  2608. type WxCardVisitListResp struct {
  2609. BaseDataInfo
  2610. // WxCardVisit list data | WxCardVisit列表数据
  2611. Data WxCardVisitListInfo `json:"data"`
  2612. }
  2613. // WxCardVisit list data | WxCardVisit列表数据
  2614. // swagger:model WxCardVisitListInfo
  2615. type WxCardVisitListInfo struct {
  2616. BaseListInfo
  2617. // The API list data | WxCardVisit列表数据
  2618. Data []WxCardVisitInfo `json:"data"`
  2619. }
  2620. // Get wx card visit list request params | WxCardVisit列表请求参数
  2621. // swagger:model WxCardVisitListReq
  2622. type WxCardVisitListReq struct {
  2623. PageInfo
  2624. BotId *uint64 `json:"botId,optional"`
  2625. BotType *uint8 `json:"botType,optional"`
  2626. BotName *string `json:"botName,optional"`
  2627. }
  2628. // WxCardVisit information response | WxCardVisit信息返回体
  2629. // swagger:model WxCardVisitInfoResp
  2630. type WxCardVisitInfoResp struct {
  2631. BaseDataInfo
  2632. // WxCardVisit information | WxCardVisit数据
  2633. Data WxCardVisitInfo `json:"data"`
  2634. }
  2635. // swagger:model AvatarInfo
  2636. type AvatarInfo struct {
  2637. RequestId *string `json:"requestId"`
  2638. SessionId *string `json:"SessionId"`
  2639. Token *string `json:"token"`
  2640. Channel Channel `json:"channel"`
  2641. }
  2642. type Channel struct {
  2643. ChannelId *string `json:"channelId"`
  2644. Token *string `json:"token"`
  2645. Type *string `json:"type"`
  2646. ExpiredTime *string `json:"expiredTime"`
  2647. Nonce *string `json:"nonce"`
  2648. UserId *string `json:"userId"`
  2649. AppId *string `json:"appId"`
  2650. UserInfoInChannel *string `json:"userInfoInChannel"`
  2651. Gslb []*string `json:"gslb"`
  2652. }
  2653. // start avatar request | 启动数字人
  2654. // swagger:model AvatarConfigReq
  2655. type AvatarConfigReq struct {
  2656. // 名片 ID
  2657. CardId *uint64 `json:"card_id,optional"`
  2658. }
  2659. // start avatar response | 启动数字人
  2660. // swagger:model AvatarConfigResp
  2661. type AvatarConfigResp struct {
  2662. BaseDataInfo
  2663. // Agent information | Agent数据
  2664. Data AvatarInfo `json:"data"`
  2665. Extra Extra `json:"extra"`
  2666. }
  2667. type Extra struct {
  2668. Live int64 `json:"live"`
  2669. Total int64 `json:"total"`
  2670. }
  2671. // swagger:model AvatarStsResp
  2672. type AvatarStsResp struct {
  2673. BaseDataInfo
  2674. // Sts information | Sts 数据
  2675. Data StsInfo `json:"data"`
  2676. }
  2677. // swagger:model StsInfo
  2678. type StsInfo struct {
  2679. Expiration *string `json:"expiration"`
  2680. AccessKeyId *string `json:"accessKeyId"`
  2681. AccessKeySecret *string `json:"accessKeySecret"`
  2682. SecurityToken *string `json:"securityToken"`
  2683. RequestId *string `json:"requestId"`
  2684. }
  2685. // swagger:model AvatarSignatureResp
  2686. type AvatarSignatureResp struct {
  2687. BaseDataInfo
  2688. // Sts information | Sts 数据
  2689. Data SignatureInfo `json:"data"`
  2690. }
  2691. // swagger:model SignatureInfo
  2692. type SignatureInfo struct {
  2693. Key *string `json:"key"`
  2694. OSSAccessKeyId *string `json:"OSSAccessKeyId"`
  2695. Policy *string `json:"policy"`
  2696. Signature *string `json:"signature"`
  2697. }
  2698. // send text | 数字人-发送消息
  2699. // swagger:model SendTextReq
  2700. type SendTextReq struct {
  2701. CardId *uint64 `json:"cardId"`
  2702. SessionId *string `json:"sessionId"`
  2703. Text *string `json:"text"`
  2704. IsStream *bool `json:"isStream,optional"`
  2705. Index *int32 `json:"index,optional"`
  2706. Position *string `json:"position,optional"`
  2707. }
  2708. // swagger:model SendTextResp
  2709. type SendTextResp struct {
  2710. BaseDataInfo
  2711. Data SendText `json:"data"`
  2712. }
  2713. type SendText struct {
  2714. SessionId *string `json:"sessionId"`
  2715. UniqueCode *string `json:"uniqueCode"`
  2716. }
  2717. // stop instance | 数字人-停止实例
  2718. // swagger:model StopInstanceReq
  2719. type StopInstanceReq struct {
  2720. CardId *uint64 `json:"cardId"`
  2721. SessionId *string `json:"sessionId"`
  2722. }
  2723. // swagger:model StopInstanceResp
  2724. type StopInstanceResp struct {
  2725. BaseDataInfo
  2726. Data StopInstance `json:"data"`
  2727. }
  2728. type StopInstance struct {
  2729. SessionId *string `json:"sessionId"`
  2730. RequestId *string `json:"requestId"`
  2731. }
  2732. // The data of aliyun avatar information | AliyunAvatar信息
  2733. // swagger:model AliyunAvatarInfo
  2734. type AliyunAvatarInfo struct {
  2735. BaseIDInfo
  2736. // user_id | wx_card_user_id
  2737. UserId *uint64 `json:"userId,optional"`
  2738. // biz_id | BizId
  2739. BizId *string `json:"bizId,optional"`
  2740. // access_key_id | AccessKeyId
  2741. AccessKeyId *string `json:"accessKeyId,optional"`
  2742. // access_key_secret | AccessKeySecret
  2743. AccessKeySecret *string `json:"accessKeySecret,optional"`
  2744. // app_id | AppId
  2745. AppId *string `json:"appId,optional"`
  2746. // tenant_id | TenantId
  2747. TenantId *uint64 `json:"TenantId,optional"`
  2748. // response | 阿里云avatar响应
  2749. Response *string `json:"response,optional"`
  2750. // token | Token
  2751. Token *string `json:"token,optional"`
  2752. // session_id | SessionId
  2753. SessionId *string `json:"sessionId,optional"`
  2754. }
  2755. // The response data of aliyun avatar list | AliyunAvatar列表数据
  2756. // swagger:model AliyunAvatarListResp
  2757. type AliyunAvatarListResp struct {
  2758. BaseDataInfo
  2759. // AliyunAvatar list data | AliyunAvatar列表数据
  2760. Data AliyunAvatarListInfo `json:"data"`
  2761. }
  2762. // AliyunAvatar list data | AliyunAvatar列表数据
  2763. // swagger:model AliyunAvatarListInfo
  2764. type AliyunAvatarListInfo struct {
  2765. BaseListInfo
  2766. // The API list data | AliyunAvatar列表数据
  2767. Data []AliyunAvatarInfo `json:"data"`
  2768. }
  2769. // Get aliyun avatar list request params | AliyunAvatar列表请求参数
  2770. // swagger:model AliyunAvatarListReq
  2771. type AliyunAvatarListReq struct {
  2772. PageInfo
  2773. // biz_id | BizId
  2774. BizId *string `json:"bizId,optional"`
  2775. // access_key_id | AccessKeyId
  2776. AccessKeyId *string `json:"accessKeyId,optional"`
  2777. // access_key_secret | AccessKeySecret
  2778. AccessKeySecret *string `json:"accessKeySecret,optional"`
  2779. }
  2780. // AliyunAvatar information response | AliyunAvatar信息返回体
  2781. // swagger:model AliyunAvatarInfoResp
  2782. type AliyunAvatarInfoResp struct {
  2783. BaseDataInfo
  2784. // AliyunAvatar information | AliyunAvatar数据
  2785. Data AliyunAvatarInfo `json:"data"`
  2786. }
  2787. // The response data of UsageDetail information | UsageDetail信息
  2788. // swagger:model UsageDetailInfo
  2789. type UsageDetailInfo struct {
  2790. BaseIDInfo
  2791. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  2792. Status *uint8 `json:"status,optional"`
  2793. // 1 微信 2 名片
  2794. Type *int
  2795. // 微信id
  2796. BotId *string `json:"botId,optional"`
  2797. // 微信id或open_id
  2798. ReceiverId *string `json:"receiverId,optional"`
  2799. // 1 cow-basic 2 cow-agent 3 cow-sop 4 mp-card 5 mp-employee
  2800. App *string
  2801. // 名片会话id
  2802. SessionId *uint64 `json:"sessionId,optional"`
  2803. // 请求内容
  2804. Request *string `json:"request,optional"`
  2805. // 响应内容
  2806. Response *string `json:"response,optional"`
  2807. // 使用token总数
  2808. TotalTokens *uint64 `json:"totalTokens,optional"`
  2809. // 请求token数
  2810. PromptTokens *uint64 `json:"promptTokens,optional"`
  2811. // 响应token数
  2812. CompletionTokens *uint64 `json:"completionTokens,optional"`
  2813. // 组织ID
  2814. OrganizationId *uint64 `json:"organizationId,optional"`
  2815. }
  2816. // The response data of UsageDetail list | UsageDetail列表数据
  2817. // swagger:model UsageDetailListResp
  2818. type UsageDetailListResp struct {
  2819. BaseDataInfo
  2820. // UsageDetail list data | UsageDetail列表数据
  2821. Data UsageDetailListInfo `json:"data"`
  2822. }
  2823. // UsageDetail list data | UsageDetail列表数据
  2824. // swagger:model UsageDetailListInfo
  2825. type UsageDetailListInfo struct {
  2826. BaseListInfo
  2827. // The API list data | UsageDetail列表数据
  2828. Data []UsageDetailInfo `json:"data"`
  2829. }
  2830. // Get wx list request params | Wx列表请求参数
  2831. // swagger:model UsageDetailListReq
  2832. type UsageDetailListReq struct {
  2833. PageInfo
  2834. // 租户id
  2835. BotId *string `json:"botId,optional"`
  2836. }
  2837. // swagger:model UsageDetailResp
  2838. type UsageDetailResp struct {
  2839. BaseDataInfo
  2840. Data UsageDetailInfo `json:"data"`
  2841. }
  2842. // The response data of UsageTotal information | UsageTotal信息
  2843. // swagger:model UsageTotalInfo
  2844. type UsageTotalInfo struct {
  2845. BaseIDInfo
  2846. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  2847. Status *uint8 `json:"status,optional"`
  2848. // 1 微信 2 名片
  2849. Type *int
  2850. // 微信或名片id
  2851. BotId *string `json:"botId,optional"`
  2852. // 使用token总数
  2853. TotalTokens *uint64 `json:"totalTokens,optional"`
  2854. // 重制后的起始usage_detail 索引
  2855. StartIndex *uint64 `json:"startIndex,optional"`
  2856. // usage_detail 索引
  2857. EndIndex *uint64 `json:"endIndex,optional"`
  2858. // 组织ID
  2859. OrganizationId *uint64 `json:"organizationId,optional"`
  2860. }
  2861. // The response data of UsageTotal list | UsageTotal列表数据
  2862. // swagger:model UsageTotalListResp
  2863. type UsageTotalListResp struct {
  2864. BaseDataInfo
  2865. // UsageTotal list data | UsageTotal列表数据
  2866. Data UsageTotalListInfo `json:"data"`
  2867. }
  2868. // UsageTotal list data | UsageTotal列表数据
  2869. // swagger:model UsageTotalListInfo
  2870. type UsageTotalListInfo struct {
  2871. BaseListInfo
  2872. // The API list data | UsageTotal列表数据
  2873. Data []UsageTotalInfo `json:"data"`
  2874. }
  2875. // Get wx list request params | Wx列表请求参数
  2876. // swagger:model UsageTotalListReq
  2877. type UsageTotalListReq struct {
  2878. PageInfo
  2879. // 租户id
  2880. OrganizationId *uint64 `json:"organizationId,optional"`
  2881. }
  2882. // The data of alloc agent information | AllocAgent信息
  2883. // swagger:model AllocAgentInfo
  2884. type AllocAgentInfo struct {
  2885. BaseIDInfo
  2886. // user_id | 前台用户ID
  2887. UserId *string `json:"userId,optional"`
  2888. // organization_id | 租户ID
  2889. OrganizationId *uint64 `json:"organizationId,optional"`
  2890. // agents | 分配的智能体IDs
  2891. Agents []uint64 `json:"agents,optional"`
  2892. // status | 状态 1-正常 2-禁用
  2893. Status *int `json:"status,optional"`
  2894. }
  2895. type AllocAgentQuery struct {
  2896. // user_id | 前台用户ID
  2897. UserId *string `json:"userId,optional"`
  2898. // organization_id | 租户ID
  2899. OrganizationId *uint64 `json:"organizationId,optional"`
  2900. }
  2901. // The response data of alloc agent list | AllocAgent列表数据
  2902. // swagger:model AllocAgentListResp
  2903. type AllocAgentListResp struct {
  2904. BaseDataInfo
  2905. // AllocAgent list data | AllocAgent列表数据
  2906. Data AllocAgentListInfo `json:"data"`
  2907. }
  2908. // AllocAgent list data | AllocAgent列表数据
  2909. // swagger:model AllocAgentListInfo
  2910. type AllocAgentListInfo struct {
  2911. BaseListInfo
  2912. // The API list data | AllocAgent列表数据
  2913. Data []AllocAgentInfo `json:"data"`
  2914. }
  2915. // Get alloc agent list request params | AllocAgent列表请求参数
  2916. // swagger:model AllocAgentListReq
  2917. type AllocAgentListReq struct {
  2918. PageInfo
  2919. // agents | 分配的智能体IDs
  2920. Agents *string `json:"agents,optional"`
  2921. }
  2922. // AllocAgent information response | AllocAgent信息返回体
  2923. // swagger:model AllocAgentInfoResp
  2924. type AllocAgentInfoResp struct {
  2925. BaseDataInfo
  2926. // AllocAgent information | AllocAgent数据
  2927. Data AllocAgentInfo `json:"data"`
  2928. }
  2929. // swagger:model SignatureResp
  2930. type SignatureResp struct {
  2931. BaseDataInfo
  2932. // 临时签名
  2933. Data *string `json:"data"`
  2934. }
  2935. // swagger:model MessageReq
  2936. type MessageReq struct {
  2937. // 大模型生成内容
  2938. UserId *uint64 `json:"user_id"`
  2939. Text *string `json:"text"`
  2940. }
  2941. // swagger:model ChatReq
  2942. type ChatReq struct {
  2943. // 大模型生成内容
  2944. AvatarId *string `json:"avatar_id"`
  2945. UserId *uint64 `json:"user_id"`
  2946. Text *string `json:"text"`
  2947. }
  2948. // swagger:model DashboardInfo
  2949. type DashboardInfo struct {
  2950. BaseIDInfo
  2951. }
  2952. // swagger:model ChartsReq
  2953. type ChartsReq struct {
  2954. StartDate *string `json:"start_date"`
  2955. EndDate *string `json:"end_date"`
  2956. // 租户id
  2957. OrganizationId *uint64 `json:"organizationId,optional"`
  2958. Wxid *string `json:"wxid,optional"`
  2959. }
  2960. // swagger:model ChartsResp
  2961. type ChartsResp struct {
  2962. BaseDataInfo
  2963. Data *ChartsData `json:"data"`
  2964. }
  2965. type ChartsData struct {
  2966. AiResponse *ChartsUint `json:"ai_response"`
  2967. SopRun *ChartsUint `json:"sop_run"`
  2968. TotalFriend *ChartsUint `json:"total_friend"`
  2969. TotalGroup *ChartsUint `json:"total_group"`
  2970. AccountBalance *ChartsUint `json:"account_balance"`
  2971. ConsumeToken *ChartsUint `json:"consume_token"`
  2972. ActiveUser *ChartsUint `json:"active_user"`
  2973. NewUser *ChartsInt `json:"new_user"`
  2974. LabelDist []LabelsData `json:"label_dist"`
  2975. }
  2976. type ChartsUint struct {
  2977. Count uint64 `json:"count"`
  2978. Rate *float32 `json:"rate"`
  2979. Label []string `json:"label"`
  2980. Val []uint64 `json:"val"`
  2981. LabelText string `json:"labelText"`
  2982. Tip *string `json:"tip"`
  2983. }
  2984. type ChartsInt struct {
  2985. Count int64 `json:"count"`
  2986. Rate *float32 `json:"rate"`
  2987. Label []string `json:"label"`
  2988. Val []int64 `json:"val"`
  2989. LabelText string `json:"labelText"`
  2990. Tip *string `json:"tip"`
  2991. }
  2992. type LabelsData struct {
  2993. Value uint64 `json:"value"`
  2994. Name string `json:"name"`
  2995. }
  2996. // swagger:model WxReq
  2997. type WxReq struct {
  2998. PageInfo
  2999. EndDate *string `json:"end_date"`
  3000. // 租户id
  3001. OrganizationId *uint64 `json:"organizationId,optional"`
  3002. Wxid *string `json:"wxid,optional"`
  3003. }
  3004. // swagger:model WxResp
  3005. type WxResp struct {
  3006. BaseDataInfo
  3007. Data WxList `json:"data"`
  3008. }
  3009. type WxList struct {
  3010. BaseListInfo
  3011. Data []WxData `json:"data"`
  3012. }
  3013. type WxData struct {
  3014. Nickname string `json:"nickname"`
  3015. TotalFriend uint64 `json:"total_friend"`
  3016. TotalGroup uint64 `json:"total_group"`
  3017. InteractionRate float32 `json:"interaction_rate"`
  3018. }
  3019. // The data of credit balance information | CreditBalance信息
  3020. // swagger:model CreditBalanceInfo
  3021. type CreditBalanceInfo struct {
  3022. BaseIDInfo
  3023. // user_id | 用户ID
  3024. UserId *string `json:"userId,optional"`
  3025. // role | 角色设定
  3026. Balance *float32 `json:"balance,optional"`
  3027. // status | 状态 1-正常 2-禁用
  3028. Status *int `json:"status,optional"`
  3029. // organization_id | 租户ID
  3030. OrganizationId *uint64 `json:"organizationId,optional"`
  3031. OrganizationName *string `json:"organizationName,optional"`
  3032. }
  3033. // The response data of credit balance list | CreditBalance列表数据
  3034. // swagger:model CreditBalanceListResp
  3035. type CreditBalanceListResp struct {
  3036. BaseDataInfo
  3037. // CreditBalance list data | CreditBalance列表数据
  3038. Data CreditBalanceListInfo `json:"data"`
  3039. }
  3040. // CreditBalance list data | CreditBalance列表数据
  3041. // swagger:model CreditBalanceListInfo
  3042. type CreditBalanceListInfo struct {
  3043. BaseListInfo
  3044. // The API list data | CreditBalance列表数据
  3045. Data []CreditBalanceInfo `json:"data"`
  3046. }
  3047. // Get credit balance list request params | CreditBalance列表请求参数
  3048. // swagger:model CreditBalanceListReq
  3049. type CreditBalanceListReq struct {
  3050. PageInfo
  3051. // user_id | 用户ID
  3052. UserId *string `json:"userId,optional"`
  3053. OrganizationId *uint64 `json:"organizationId,optional"`
  3054. }
  3055. // CreditBalance information response | CreditBalance信息返回体
  3056. // swagger:model CreditBalanceInfoResp
  3057. type CreditBalanceInfoResp struct {
  3058. BaseDataInfo
  3059. // CreditBalance information | CreditBalance数据
  3060. Data CreditBalanceInfo `json:"data"`
  3061. }
  3062. // swagger:model CreditBalanceOperateReq
  3063. type CreditBalanceOperateReq struct {
  3064. OrganizationId *uint64 `json:"organizationId,optional"`
  3065. Number *float32 `json:"number,optional"`
  3066. Reason *string `json:"reason,optional"`
  3067. }
  3068. // The data of credit usage information | CreditUsage信息
  3069. // swagger:model CreditUsageInfo
  3070. type CreditUsageInfo struct {
  3071. BaseIDInfo
  3072. // user_id | 用户ID
  3073. UserId *string `json:"userId,optional"`
  3074. UserInfo UserInfo `json:"userInfo,optional"`
  3075. // number | 积分改变量
  3076. Number *float32 `json:"number,optional"`
  3077. // status | 状态 1-正常 2-禁用
  3078. Status *int `json:"status,optional"`
  3079. // ntype | 积分变化类型:1-消耗 2-增加
  3080. Ntype *int `json:"ntype,optional"`
  3081. // table | 积分变化表名
  3082. Table *string `json:"table,optional"`
  3083. // organization_id | 租户ID
  3084. OrganizationId *uint64 `json:"organizationId,optional"`
  3085. OrganizationName *string `json:"organizationName,optional"`
  3086. // nid | 积分变化关联信息ID
  3087. Nid *uint64 `json:"nid,optional"`
  3088. // reason | 积分变动原因
  3089. Reason *string `json:"reason,optional"`
  3090. // operator | 积分变动人
  3091. Operator *string `json:"operator,optional"`
  3092. }
  3093. // The response data of credit usage list | CreditUsage列表数据
  3094. // swagger:model CreditUsageListResp
  3095. type CreditUsageListResp struct {
  3096. BaseDataInfo
  3097. // CreditUsage list data | CreditUsage列表数据
  3098. Data CreditUsageListInfo `json:"data"`
  3099. }
  3100. // CreditUsage list data | CreditUsage列表数据
  3101. // swagger:model CreditUsageListInfo
  3102. type CreditUsageListInfo struct {
  3103. BaseListInfo
  3104. // The API list data | CreditUsage列表数据
  3105. Data []CreditUsageInfo `json:"data"`
  3106. }
  3107. // Get credit usage list request params | CreditUsage列表请求参数
  3108. // swagger:model CreditUsageListReq
  3109. type CreditUsageListReq struct {
  3110. PageInfo
  3111. OrganizationId *uint64 `json:"organizationId,optional"`
  3112. }
  3113. // CreditUsage information response | CreditUsage信息返回体
  3114. // swagger:model CreditUsageInfoResp
  3115. type CreditUsageInfoResp struct {
  3116. BaseDataInfo
  3117. // CreditUsage information | CreditUsage数据
  3118. Data CreditUsageInfo `json:"data"`
  3119. }
  3120. // The data of pay recharge information | PayRecharge信息
  3121. // swagger:model PayRechargeInfo
  3122. type PayRechargeInfo struct {
  3123. BaseIDInfo
  3124. // user_id | 用户ID
  3125. UserId *string `json:"userId,optional"`
  3126. UserInfo UserInfo `json:"userInfo,optional"`
  3127. // number | 变化积分数
  3128. Number *float32 `json:"number,optional"`
  3129. // status | 状态 1-正常 2-禁用
  3130. Status *int `json:"status,optional"`
  3131. // money | 充值钱数
  3132. Money *float32 `json:"money,optional"`
  3133. // out_trade_no | 外部订单号
  3134. OutTradeNo *string `json:"outTradeNo,optional"`
  3135. // organization_id | 租户ID
  3136. OrganizationId *uint64 `json:"organizationId,optional"`
  3137. OrganizationName *string `json:"organizationName,optional"`
  3138. }
  3139. // The response data of pay recharge list | PayRecharge列表数据
  3140. // swagger:model PayRechargeListResp
  3141. type PayRechargeListResp struct {
  3142. BaseDataInfo
  3143. // PayRecharge list data | PayRecharge列表数据
  3144. Data PayRechargeListInfo `json:"data"`
  3145. }
  3146. // PayRecharge list data | PayRecharge列表数据
  3147. // swagger:model PayRechargeListInfo
  3148. type PayRechargeListInfo struct {
  3149. BaseListInfo
  3150. // The API list data | PayRecharge列表数据
  3151. Data []PayRechargeInfo `json:"data"`
  3152. }
  3153. // Get pay recharge list request params | PayRecharge列表请求参数
  3154. // swagger:model PayRechargeListReq
  3155. type PayRechargeListReq struct {
  3156. PageInfo
  3157. // user_id | 用户ID
  3158. UserId *string `json:"userId,optional"`
  3159. // out_trade_no | 外部订单号
  3160. OutTradeNo *string `json:"outTradeNo,optional"`
  3161. }
  3162. // PayRecharge information response | PayRecharge信息返回体
  3163. // swagger:model PayRechargeInfoResp
  3164. type PayRechargeInfoResp struct {
  3165. BaseDataInfo
  3166. // PayRecharge information | PayRecharge数据
  3167. Data PayRechargeInfo `json:"data"`
  3168. }
  3169. // The data of whatsapp information | Whatsapp信息
  3170. // swagger:model WhatsappInfo
  3171. type WhatsappInfo struct {
  3172. BaseIDInfo
  3173. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3174. Status *uint8 `json:"status,optional"`
  3175. WaId *string `json:"waId,optional"`
  3176. WaName *string `json:"waName,optional"`
  3177. // 回调地址
  3178. Callback *string `json:"callback,optional"`
  3179. // 模式ID
  3180. AgentId *uint64 `json:"agentId,optional"`
  3181. AgentInfo *AgentInfo `json:"agentInfo,optional"`
  3182. // 微信账号
  3183. Account *string `json:"account,optional"`
  3184. // 手机号
  3185. Phone *string `json:"phone,optional"`
  3186. Cc *string `json:"cc,optional"`
  3187. // 号码名称
  3188. PhoneName *string `json:"phoneName,optional"`
  3189. // 号码状态
  3190. PhoneStatus *string `json:"phoneStatus,optional"`
  3191. Tokens *uint64 `json:"tokens,optional"`
  3192. // 号码发送频率号码发送频率
  3193. Frequency *string `json:"frequency,optional"`
  3194. // 号码质量
  3195. Quality *string `json:"quality,optional"`
  3196. // 号码校验状态
  3197. VerifyStatus *string `json:"verifyStatus,optional"`
  3198. // 机构 ID
  3199. OrganizationId *uint64 `json:"organizationId,optional"`
  3200. OrganizationName *string `json:"organizationName,optional"`
  3201. // 大模型服务地址
  3202. ApiBase *string `json:"apiBase,optional"`
  3203. // 大模型服务密钥
  3204. ApiKey *string `json:"apiKey,optional"`
  3205. // 白名单
  3206. AllowList []ContactInfo `json:"allowList,optional"`
  3207. // 群白名单
  3208. GroupAllowList []ContactInfo `json:"groupAllowList,optional"`
  3209. // 黑名单
  3210. BlockList []ContactInfo `json:"blockList,optional"`
  3211. // 群黑名单
  3212. GroupBlockList []ContactInfo `json:"groupBlockList,optional"`
  3213. }
  3214. // swagger:model WhatsappPhoneInfo
  3215. type WhatsappPhoneInfo struct {
  3216. Avatar *string `json:"avatar,optional"`
  3217. Industry *string `json:"industry,optional"`
  3218. Intro *string `json:"intro,optional"`
  3219. Address *string `json:"address,optional"`
  3220. Email *string `json:"email,optional"`
  3221. Website *string `json:"website,optional"`
  3222. }
  3223. // The response data of whatsapp list | Whatsapp列表数据
  3224. // swagger:model WhatsappListResp
  3225. type WhatsappListResp struct {
  3226. BaseDataInfo
  3227. // Whatsapp list data | Whatsapp列表数据
  3228. Data WhatsappListInfo `json:"data"`
  3229. }
  3230. // Whatsapp list data | Whatsapp列表数据
  3231. // swagger:model WhatsappListInfo
  3232. type WhatsappListInfo struct {
  3233. BaseListInfo
  3234. // The API list data | Whatsapp列表数据
  3235. Data []WhatsappInfo `json:"data"`
  3236. }
  3237. // Get whatsapp list request params | Whatsapp列表请求参数
  3238. // swagger:model WhatsappListReq
  3239. type WhatsappListReq struct {
  3240. PageInfo
  3241. // 手机号
  3242. Phone *string `json:"phone,optional"`
  3243. // 号码名称
  3244. PhoneName *string `json:"phoneName,optional"`
  3245. WaId *string `json:"waId,optional"`
  3246. OrganizationId *uint64 `json:"organizationId,optional"`
  3247. }
  3248. // Whatsapp information response | Whatsapp信息返回体
  3249. // swagger:model WhatsappInfoResp
  3250. type WhatsappInfoResp struct {
  3251. BaseDataInfo
  3252. // Whatsapp information | Whatsapp数据
  3253. Data WhatsappInfo `json:"data"`
  3254. }
  3255. // swagger:model AutomationReq
  3256. type AutomationReq struct {
  3257. WaId *string `json:"waId,optional"`
  3258. Phone *string `json:"phone,optional"`
  3259. }
  3260. // swagger:model AutomationResp
  3261. type AutomationResp struct {
  3262. BaseDataInfo
  3263. // Whatsapp list data | Whatsapp列表数据
  3264. Data ConversationalAutomationInfo `json:"data"`
  3265. }
  3266. // swagger:model ConversationalAutomationInfo
  3267. type ConversationalAutomationInfo struct {
  3268. Prompts []string `json:"prompts,optional"`
  3269. Commands []Command `json:"commands,optional"`
  3270. Phone string `json:"phone,optional"`
  3271. EnableWelcomeMessage bool `json:"enableWelcomeMessage,optional"`
  3272. }
  3273. type Command struct {
  3274. CommandDescription string `json:"commandDescription,optional"`
  3275. CommandName string `json:"commandName,optional"`
  3276. }
  3277. // swagger:model SetAutomationReq
  3278. type SetAutomationReq struct {
  3279. EnableWelcomeMessage bool `json:"enableWelcomeMessage,optional"`
  3280. Phone string `json:"phone,optional"`
  3281. Commands []Command `json:"commands,optional"`
  3282. Prompts []string `json:"prompts,optional"`
  3283. WaId string `json:"waId,optional"`
  3284. }
  3285. // swagger:model sendCodeReq
  3286. type SendCodeReq struct {
  3287. Cc *string `json:"cc"`
  3288. Phone *string `json:"phone"`
  3289. WaId *string `json:"waId"`
  3290. Method *string `json:"method"`
  3291. Locale *string `json:"locale"`
  3292. }
  3293. // swagger:model submitCodeReq
  3294. type SubmitCodeReq struct {
  3295. Cc *string `json:"cc"`
  3296. Phone *string `json:"phone"`
  3297. WaId *string `json:"waId"`
  3298. Code *string `json:"code"`
  3299. }
  3300. // swagger:model getQrcodeReq
  3301. type GetQrcodeReq struct {
  3302. Phone *string `json:"phone"`
  3303. WaId *string `json:"waId"`
  3304. }
  3305. // swagger:model getQrcodeResp
  3306. type GetQrcodeResp struct {
  3307. BaseDataInfo
  3308. Data QrcodeListInfo `json:"data"`
  3309. }
  3310. // swagger:model QrcodeListInfo
  3311. type QrcodeListInfo struct {
  3312. BaseListInfo
  3313. Data []Qrcode `json:"data"`
  3314. }
  3315. type Qrcode struct {
  3316. Phone string `json:"phone,optional"`
  3317. QrdlCode string `json:"qrdlCode,optional"`
  3318. GenerateQrImage string `json:"generateQrImage,optional"`
  3319. PrefilledMessage string `json:"prefilledMessage,optional"`
  3320. DeepLinkUrl string `json:"deepLinkUrl,optional"`
  3321. QrImageUrl string `json:"qrImageUrl,optional"`
  3322. }
  3323. // swagger:model createQrcodeReq
  3324. type CreateQrcodeReq struct {
  3325. Phone string `json:"phone"`
  3326. GenerateQrImage string `json:"generateQrImage"`
  3327. PrefilledMessage string `json:"prefilledMessage"`
  3328. WaId string `json:"waId"`
  3329. }
  3330. // swagger:model updateQrcodeReq
  3331. type UpdateQrcodeReq struct {
  3332. Phone string `json:"phone,optional"`
  3333. GenerateQrImage string `json:"generateQrImage,optional"`
  3334. PrefilledMessage string `json:"prefilledMessage,optional"`
  3335. QrdlCode string `json:"qrdlCode,optional"`
  3336. WaId string `json:"waId"`
  3337. }
  3338. // swagger:model removeQrcodeReq
  3339. type RemoveQrcodeReq struct {
  3340. Phone string `json:"phone,optional"`
  3341. QrdlCode string `json:"qrdlCode,optional"`
  3342. WaId string `json:"waId"`
  3343. }
  3344. // swagger:model getBusinessReq
  3345. type GetBusinessReq struct {
  3346. Phone *string `json:"phone"`
  3347. WaId *string `json:"waId"`
  3348. }
  3349. // swagger:model getBusinessResp
  3350. type GetBusinessResp struct {
  3351. BaseDataInfo
  3352. Data BusinessInfo `json:"data"`
  3353. }
  3354. // swagger:model BusinessInfo
  3355. type BusinessInfo struct {
  3356. Vertical string `json:"vertical,optional"`
  3357. Description string `json:"description,optional"`
  3358. Email string `json:"email,optional"`
  3359. Address string `json:"address,optional"`
  3360. ProfilePictureUrl string `json:"profilePictureUrl,optional"`
  3361. Websites []string `json:"websites,optional"`
  3362. About string `json:"about,optional"`
  3363. }
  3364. // swagger:model setBusinessReq
  3365. type SetBusinessReq struct {
  3366. Phone *string `json:"phone"`
  3367. WaId *string `json:"waId"`
  3368. Vertical string `json:"vertical,optional"`
  3369. Description string `json:"description,optional"`
  3370. Email string `json:"email,optional"`
  3371. Address string `json:"address,optional"`
  3372. ProfilePictureUrl string `json:"profilePictureUrl,optional"`
  3373. Websites []string `json:"websites,optional"`
  3374. About string `json:"about,optional"`
  3375. }
  3376. // swagger:model registerReq
  3377. type RegisterReq struct {
  3378. Phone *string `json:"phone"`
  3379. WaId *string `json:"waId"`
  3380. }
  3381. // swagger:model deregisterReq
  3382. type DeregisterReq struct {
  3383. Phone *string `json:"phone"`
  3384. WaId *string `json:"waId"`
  3385. }
  3386. // swagger:model UpdateAgentReq
  3387. type UpdateAgentReq struct {
  3388. Id uint64 `json:"id"`
  3389. AgentId uint64 `json:"agentId"`
  3390. }
  3391. // 获取黑白名单列表返回体
  3392. // swagger:model WhatsappAllowBlockListResp
  3393. type WhatsappAllowBlockListResp struct {
  3394. BaseDataInfo
  3395. // Wx information | Wx数据
  3396. Data WhatsappAllowBlockListRespData `json:"data"`
  3397. }
  3398. // WhatsappAllowBlockListRespData
  3399. type WhatsappAllowBlockListRespData struct {
  3400. // 白名单
  3401. AllowList *string `json:"allowList,optional"`
  3402. // 群白名单
  3403. GroupAllowList *string `json:"groupAllowList,optional"`
  3404. // 黑名单
  3405. BlockList *string `json:"blockList,optional"`
  3406. // 群黑名单
  3407. GroupBlockList *string `json:"groupBlockList,optional"`
  3408. }
  3409. // swagger:model UpdateAllowAndBlockListReq
  3410. type UpdateAllowAndBlockListReq struct {
  3411. Id uint64 `json:"id"`
  3412. // 白名单
  3413. AllowList *string `json:"allowList,optional"`
  3414. // 群白名单
  3415. GroupAllowList *string `json:"groupAllowList,optional"`
  3416. // 黑名单
  3417. BlockList *string `json:"blockList,optional"`
  3418. // 群黑名单
  3419. GroupBlockList *string `json:"groupBlockList,optional"`
  3420. }
  3421. // swagger:model TemplateInfo
  3422. type TemplateInfo struct {
  3423. Category string `json:"category,optional"`
  3424. TemplateCode string `json:"templateCode,optional"`
  3425. Name string `json:"name,optional"`
  3426. Language string `json:"language,optional"`
  3427. TemplateType string `json:"templateType,optional"`
  3428. AuditStatus string `json:"auditStatus,optional"`
  3429. Components []TemplateComponent `json:"components,optional"`
  3430. QualityScore string `json:"qualityScore,optional"`
  3431. MessageSendTtlSeconds int `json:"messageSendTtlSeconds,optional"`
  3432. Reason string `json:"reason,optional"`
  3433. }
  3434. // swagger:model TemplateSingleInfo
  3435. type TemplateSingleInfo struct {
  3436. Category string `json:"category,optional"`
  3437. TemplateCode string `json:"templateCode,optional"`
  3438. Name string `json:"name,optional"`
  3439. Language string `json:"language,optional"`
  3440. TemplateType string `json:"templateType,optional"`
  3441. AuditStatus string `json:"auditStatus,optional"`
  3442. }
  3443. type TemplateComponent struct {
  3444. Type string `json:"type,optional"`
  3445. Url string `json:"url,optional"`
  3446. Text string `json:"text,optional"`
  3447. Caption string `json:"caption,optional"`
  3448. FileName string `json:"fileName,optional"`
  3449. Format string `json:"format,optional"`
  3450. Buttons []TemplateButton `json:"buttons,optional"`
  3451. ThumbUrl string `json:"thumbUrl,optional"`
  3452. Duration int `json:"duration,optional"`
  3453. FileType string `json:"fileType,optional"`
  3454. Latitude string `json:"latitude,optional"`
  3455. Longitude string `json:"longitude,optional"`
  3456. LocationName string `json:"locationName,optional"`
  3457. LocationAddress string `json:"locationAddress,optional"`
  3458. AddSecretRecommendation bool `json:"addSecretRecommendation,optional"`
  3459. CodeExpirationMinutes int `json:"codeExpirationMinutes,optional"`
  3460. HasExpiration bool `json:"hasExpiration,optional"`
  3461. OfferExpirationTimeMs string `json:"offerExpirationTimeMs,optional"`
  3462. }
  3463. type TemplateButton struct {
  3464. Type string `json:"type,optional"`
  3465. Text string `json:"text,optional"`
  3466. PhoneNumber string `json:"phoneNumber,optional"`
  3467. Url string `json:"url,optional"`
  3468. UrlType string `json:"urlType,optional"`
  3469. SignatureHash string `json:"signatureHash,optional"`
  3470. PackageName string `json:"packageName,optional"`
  3471. AutofillText string `json:"autofillText,optional"`
  3472. IsOptOut bool `json:"isOptOut,optional"`
  3473. ExtendAttrs []TemplateExtendAttr `json:"extendAttrs,optional"`
  3474. CouponCode string `json:"couponCode,optional"`
  3475. FlowId string `json:"flowId,optional"`
  3476. FlowAction string `json:"flowAction,optional"`
  3477. NavigateScreen string `json:"navigateScreen,optional"`
  3478. SupportedApps []TemplateSupportedApp `json:"supportedApps,optional"`
  3479. }
  3480. type TemplateSupportedApp struct {
  3481. SignatureHash string `json:"signatureHash,optional"`
  3482. PackageName string `json:"packageName,optional"`
  3483. }
  3484. type TemplateExtendAttr struct {
  3485. NextTemplateCode string `json:"nextTemplateCode,optional"`
  3486. NextTemplateName string `json:"nextTemplateName,optional"`
  3487. NextLanguageCode string `json:"nextLanguageCode,optional"`
  3488. Action string `json:"action,optional"`
  3489. IntentCode string `json:"intentCode,optional"`
  3490. }
  3491. // swagger:model createTemplateReq
  3492. type CreateTemplateReq struct {
  3493. Category string `json:"category"`
  3494. TemplateCode string `json:"templateCode"`
  3495. Name string `json:"name"`
  3496. Language string `json:"language"`
  3497. TemplateType string `json:"templateType,optional"`
  3498. AllowCategoryChange bool `json:"allowCategoryChange,optional"`
  3499. MessageSendTtlSeconds int `json:"messageSendTtlSeconds,optional"`
  3500. }
  3501. // swagger:model listTemplateReq
  3502. type ListTemplateReq struct {
  3503. Page int32 `json:"page"`
  3504. PageSize int32 `json:"pageSize"`
  3505. Name string `json:"name,optional"`
  3506. Language string `json:"language,optional"`
  3507. AuditStatus string `json:"auditStatus,optional"`
  3508. TemplateType string `json:"templateType,optional"`
  3509. Code string `json:"code,optional"`
  3510. WaId string `json:"waId,optional"`
  3511. }
  3512. // swagger:model listTemplateResp
  3513. type ListTemplateResp struct {
  3514. Code int `json:"code"`
  3515. Msg string `json:"msg"`
  3516. Data ListTemplate `json:"data,omitempty"`
  3517. }
  3518. type ListTemplate struct {
  3519. BaseListInfo
  3520. Data []TemplateSingleInfo `json:"data,omitempty"`
  3521. }
  3522. // swagger:model removeTemplateReq
  3523. type RemoveTemplateReq struct {
  3524. TemplateCode string `json:"templateCode,optional"`
  3525. TemplateName string `json:"templateName,optional"`
  3526. Language string `json:"language"`
  3527. TemplateType string `json:"templateType,optional"`
  3528. }
  3529. // swagger:model editTemplateReq
  3530. type EditTemplateReq struct {
  3531. Components []TemplateComponent `json:"components,optional"`
  3532. Language string `json:"language,optional"`
  3533. TemplateCode string `json:"templateCode,optional"`
  3534. Category string `json:"category,optional"`
  3535. TemplateType string `json:"templateType,optional"`
  3536. MessageSendTtlSeconds int `json:"messageSendTtlSeconds,optional"`
  3537. TemplateName string `json:"templateName,optional"`
  3538. }
  3539. // swagger:model getTemplateReq
  3540. type GetTemplateReq struct {
  3541. TemplateCode string `json:"templateCode,optional"`
  3542. Language string `json:"language"`
  3543. TemplateType string `json:"templateType,optional"`
  3544. TemplateName string `json:"templateName,optional"`
  3545. }
  3546. // swagger:model getTemplateResp
  3547. type GetTemplateResp struct {
  3548. Code int `json:"code"`
  3549. Msg string `json:"msg"`
  3550. Data TemplateSingleInfo `json:"data,omitempty"`
  3551. }
  3552. // The data of whatsapp channel information | WhatsappChannel信息
  3553. // swagger:model WhatsappChannelInfo
  3554. type WhatsappChannelInfo struct {
  3555. BaseIDInfo
  3556. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3557. Status *uint8 `json:"status,optional"`
  3558. // ak
  3559. Ak *string `json:"ak,optional"`
  3560. // 端口号
  3561. Sk *string `json:"sk,optional"`
  3562. // 通道ID
  3563. WaId *string `json:"waId,optional"`
  3564. // 通道名
  3565. WaName *string `json:"waName,optional"`
  3566. // WABA ID
  3567. WabaId *uint64 `json:"wabaId,optional"`
  3568. // 商业平台ID
  3569. BusinessId *uint64 `json:"businessId,optional"`
  3570. // 机构 ID
  3571. OrganizationId *uint64 `json:"organizationId,optional"`
  3572. OrganizationName *string `json:"organizationName,optional"`
  3573. // 认证主体
  3574. VerifyAccount *string `json:"verifyAccount,optional"`
  3575. }
  3576. // The response data of whatsapp channel list | WhatsappChannel列表数据
  3577. // swagger:model WhatsappChannelListResp
  3578. type WhatsappChannelListResp struct {
  3579. BaseDataInfo
  3580. // WhatsappChannel list data | WhatsappChannel列表数据
  3581. Data WhatsappChannelListInfo `json:"data"`
  3582. }
  3583. // WhatsappChannel list data | WhatsappChannel列表数据
  3584. // swagger:model WhatsappChannelListInfo
  3585. type WhatsappChannelListInfo struct {
  3586. BaseListInfo
  3587. // The API list data | WhatsappChannel列表数据
  3588. Data []WhatsappChannelInfo `json:"data"`
  3589. }
  3590. // Get whatsapp channel list request params | WhatsappChannel列表请求参数
  3591. // swagger:model WhatsappChannelListReq
  3592. type WhatsappChannelListReq struct {
  3593. PageInfo
  3594. OrganizationId *uint64 `json:"organizationId,optional"`
  3595. WaName *string `json:"waName,optional"`
  3596. WabaId *uint64 `json:"wabaId,optional"`
  3597. VerifyAccount *string `json:"verifyAccount,optional"`
  3598. }
  3599. // WhatsappChannel information response | WhatsappChannel信息返回体
  3600. // swagger:model WhatsappChannelInfoResp
  3601. type WhatsappChannelInfoResp struct {
  3602. BaseDataInfo
  3603. // WhatsappChannel information | WhatsappChannel数据
  3604. Data WhatsappChannelInfo `json:"data"`
  3605. }