types.go 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751
  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. }
  308. // swagger:model UpdateBlockAndAllowListReq
  309. type UpdateBlockAndAllowListReq struct {
  310. BaseIDInfo
  311. // 白名单
  312. AllowList []string `json:"allowList,optional"`
  313. // 群白名单
  314. GroupAllowList []string `json:"groupAllowList,optional"`
  315. // 黑名单
  316. BlockList []string `json:"blockList,optional"`
  317. // 群黑名单
  318. GroupBlockList []string `json:"groupBlockList,optional"`
  319. }
  320. // The response data of wx list | Wx列表数据
  321. // swagger:model WxListResp
  322. type WxListResp struct {
  323. BaseDataInfo
  324. // Wx list data | Wx列表数据
  325. Data WxListInfo `json:"data"`
  326. }
  327. // Wx list data | Wx列表数据
  328. // swagger:model WxListInfo
  329. type WxListInfo struct {
  330. BaseListInfo
  331. // The API list data | Wx列表数据
  332. Data []WxInfo `json:"data"`
  333. }
  334. // Get wx list request params | Wx列表请求参数
  335. // swagger:model WxListReq
  336. type WxListReq struct {
  337. PageInfo
  338. // 服务器id
  339. ServerId *uint64 `json:"serverId,optional"`
  340. // 租户id
  341. OrganizationId *uint64 `json:"organizationId,optional"`
  342. // 租户名称
  343. OrganizationName *string `json:"organizationName,optional"`
  344. // 端口号
  345. Port *string `json:"port,optional"`
  346. // 进程号
  347. ProcessId *string `json:"processId,optional"`
  348. // 回调地址
  349. Callback *string `json:"callback,optional"`
  350. }
  351. // Wx information response | Wx信息返回体
  352. // swagger:model WxInfoResp
  353. type WxInfoResp struct {
  354. BaseDataInfo
  355. // Wx information | Wx数据
  356. Data WxInfo `json:"data"`
  357. }
  358. // 获取黑白名单列表返回体
  359. // swagger:model AllowBlockListResp
  360. type AllowBlockListResp struct {
  361. BaseDataInfo
  362. // Wx information | Wx数据
  363. Data AllowBlockListRespData `json:"data"`
  364. }
  365. // AllowBlockListRespData
  366. type AllowBlockListRespData struct {
  367. // 白名单
  368. AllowList []*AllowBlockData `json:"allowList,optional"`
  369. // 群白名单
  370. GroupAllowList []*AllowBlockData `json:"groupAllowList,optional"`
  371. // 黑名单
  372. BlockList []*AllowBlockData `json:"blockList,optional"`
  373. // 群黑名单
  374. GroupBlockList []*AllowBlockData `json:"groupBlockList,optional"`
  375. }
  376. // AllowBlockData
  377. type AllowBlockData struct {
  378. // 微信id 公众号微信ID
  379. Wxid string `json:"wxid,optional"`
  380. // 微信昵称 群备注名称
  381. Nickname string `json:"nickname,optional"`
  382. }
  383. // The data of agent information | Agent信息
  384. // swagger:model AgentInfo
  385. type AgentInfo struct {
  386. BaseIDInfo
  387. // name | 角色名称
  388. Name *string `json:"name,optional"`
  389. // role | 角色设定
  390. Role *string `json:"role,optional"`
  391. // status | 状态 1-正常 2-禁用
  392. Status *int `json:"status,optional"`
  393. // background | 背景介绍
  394. Background *string `json:"background,optional"`
  395. // examples | 对话案例
  396. Examples *string `json:"examples,optional"`
  397. DatasetId *string `json:"dataset_id,optional"`
  398. CollectionId *string `json:"collection_id,optional"`
  399. }
  400. // The response data of agent list | Agent列表数据
  401. // swagger:model AgentListResp
  402. type AgentListResp struct {
  403. BaseDataInfo
  404. // Agent list data | Agent列表数据
  405. Data AgentListInfo `json:"data"`
  406. }
  407. // Agent list data | Agent列表数据
  408. // swagger:model AgentListInfo
  409. type AgentListInfo struct {
  410. BaseListInfo
  411. // The API list data | Agent列表数据
  412. Data []AgentInfo `json:"data"`
  413. }
  414. // Get agent list request params | Agent列表请求参数
  415. // swagger:model AgentListReq
  416. type AgentListReq struct {
  417. PageInfo
  418. // name | 角色名称
  419. Name *string `json:"name,optional"`
  420. // role | 角色设定
  421. Role *string `json:"role,optional"`
  422. // background | 背景介绍
  423. Background *string `json:"background,optional"`
  424. // status | 状态 1-可用 2-不可用
  425. Status *int `json:"status,optional"`
  426. }
  427. // Agent information response | Agent信息返回体
  428. // swagger:model AgentInfoResp
  429. type AgentInfoResp struct {
  430. BaseDataInfo
  431. // Agent information | Agent数据
  432. Data AgentInfo `json:"data"`
  433. }
  434. type VectorModel struct {
  435. Model *string `json:"model"`
  436. Name *string `json:"name"`
  437. CharsPointsPrice *uint64 `json:"charsPointsPrice"`
  438. DefaultToken *uint64 `json:"defaultToken"`
  439. MaxToken *uint64 `json:"maxToken"`
  440. Weight *uint64 `json:"weight"`
  441. }
  442. type AgentModel struct {
  443. Model *string `json:"model"`
  444. Name *string `json:"name"`
  445. MaxContext *uint64 `json:"maxContext"`
  446. MaxResponse *uint64 `json:"maxResponse"`
  447. CharsPointsPrice *uint64 `json:"charsPointsPrice"`
  448. }
  449. type DatasetId struct {
  450. ID *string `json:"id"`
  451. ParentID *string `json:"parentId"`
  452. TeamId *string `json:"teamId"`
  453. TmbId *string `json:"tmbId"`
  454. Type *string `json:"type"`
  455. Status *string `json:"status"`
  456. Avatar *string `json:"avatar"`
  457. Name *string `json:"name"`
  458. VectorModel *string `json:"vectorModel"`
  459. AgentModel *string `json:"agentModel"`
  460. Intro *string `json:"intro"`
  461. }
  462. // Dataset info | 知识库详情
  463. // swagger:model DatasetInfo
  464. type DatasetInfo struct {
  465. ID *string `json:"id"`
  466. ParentID *string `json:"parentId"`
  467. TeamId *string `json:"teamId"`
  468. TmbId *string `json:"tmbId"`
  469. Type *string `json:"type"`
  470. Name *string `json:"name"`
  471. Intro *string `json:"intro"`
  472. Status *string `json:"status"`
  473. Avatar *string `json:"avatar"`
  474. VectorModel VectorModel `json:"vectorModel"`
  475. AgentModel AgentModel `json:"agentModel"`
  476. Permission *string `json:"permission"`
  477. CanWrite *bool `json:"canWrite"`
  478. IsOwner *bool `json:"isOwner"`
  479. }
  480. type Index struct {
  481. DefaultIndex *bool `json:"defaultIndex"`
  482. Type *string `json:"type"`
  483. DataId *string `json:"dataId"`
  484. Text *string `json:"text"`
  485. ID *string `json:"id"`
  486. }
  487. // Collection Info | 集合详情
  488. // swagger:model CollectionInfo
  489. type CollectionInfo struct {
  490. ID *string `json:"id"`
  491. ParentID *string `json:"parentId"`
  492. TmbId *string `json:"tmbId,optional"`
  493. Type *string `json:"type"`
  494. Name *string `json:"name"`
  495. DataAmount *uint64 `json:"dataAmount,optional"`
  496. TrainingAmount *uint64 `json:"trainingAmount,optional"`
  497. TrainingType *string `json:"trainingType,optional"`
  498. ChunkSize *uint64 `json:"chunkSize,optional"`
  499. ChunkSplitter *string `json:"chunkSplitter,optional"`
  500. QaPrompt *string `json:"qaPrompt,optional"`
  501. RawTextLength *uint64 `json:"rawTextLength,optional"`
  502. CanWrite *bool `json:"canWrite,optional"`
  503. SourceName *string `json:"sourceName,optional"`
  504. DatasetId DatasetId `json:"datasetId,optional"`
  505. }
  506. // swagger:model CollectionDetailReq
  507. type CollectionDetailReq struct {
  508. ID *string `json:"id"`
  509. }
  510. // swagger:model CollectionInfoResp
  511. type CollectionInfoResp struct {
  512. BaseDataInfo
  513. Data CollectionInfo `json:"data"`
  514. }
  515. // swagger:model DataDetailReq
  516. type DataDetailReq struct {
  517. ID *string `json:"id"`
  518. }
  519. // swagger:model DataDetailResp
  520. type DataDetailResp struct {
  521. BaseDataInfo
  522. Data DataInfo `json:"data"`
  523. }
  524. // swagger:model CollectionSimpleInfo
  525. type CollectionSimpleInfo struct {
  526. ID *string `json:"id"`
  527. ParentID *string `json:"parentId"`
  528. TmbId *string `json:"tmbId,optional"`
  529. Type *string `json:"type"`
  530. Name *string `json:"name"`
  531. DataAmount *uint64 `json:"dataAmount,optional"`
  532. TrainingAmount *uint64 `json:"trainingAmount,optional"`
  533. }
  534. // swagger:model DataInfo
  535. type DataInfo struct {
  536. ID *string `json:"id"`
  537. Q *string `json:"q"`
  538. A *string `json:"a"`
  539. ChunkIndex *uint64 `json:"chunkIndex"`
  540. Indexes []Index `json:"indexes"`
  541. DatasetId *string `json:"datasetId"`
  542. CollectionId *string `json:"collectionId"`
  543. SourceName *string `json:"sourceName"`
  544. CanWrite *bool `json:"canWrite"`
  545. IsOwner *bool `json:"isOwner"`
  546. }
  547. // swagger:model DataSimpleInfo
  548. type DataSimpleInfo struct {
  549. ID *string `json:"id"`
  550. Q *string `json:"q"`
  551. A *string `json:"a"`
  552. ChunkIndex *uint64 `json:"chunkIndex"`
  553. DatasetId *string `json:"datasetId"`
  554. CollectionId *string `json:"collectionId"`
  555. }
  556. // Get collection list request params | Collection列表请求参数
  557. // swagger:model CollectionListReq
  558. type CollectionListReq struct {
  559. // required : true
  560. // min : 0
  561. PageNum *int `json:"pageNum" validate:"required,number,gt=0"`
  562. // required : true
  563. // max : 100000
  564. PageSize *int `json:"pageSize" validate:"required,number,lt=100000"`
  565. // required : true
  566. DatasetId *string `json:"datasetId" validate:"required"`
  567. }
  568. // Collection list response | Collection List信息返回体
  569. // swagger:model CollectionListResp
  570. type CollectionListResp struct {
  571. BaseDataInfo
  572. // Agent information | Agent数据
  573. Data []CollectionSimpleInfo `json:"data"`
  574. // required : true
  575. // min : 0
  576. PageNum *int `json:"pageNum" validate:"required,number,gt=0"`
  577. // required : true
  578. // max : 100000
  579. PageSize *int `json:"pageSize" validate:"required,number,lt=100000"`
  580. Total *int `json:"total"`
  581. }
  582. // Get collection list request params | Collection列表请求参数
  583. // swagger:model DataListReq
  584. type DataListReq struct {
  585. // required : true
  586. // min : 0
  587. Page *int `json:"page" validate:"required,number,gt=0"`
  588. // required : true
  589. // max : 100000
  590. PageSize *int `json:"pageSize" validate:"required,number,lt=100000"`
  591. // required : true
  592. CollectionId *string `json:"collectionId" validate:"required"`
  593. }
  594. // Data list response | Data List信息返回体
  595. // swagger:model DataListResp
  596. type DataListResp struct {
  597. BaseDataInfo
  598. // Agent information | Agent数据
  599. Data BatchSimpleInfo `json:"data"`
  600. }
  601. // swagger:model BatchSimpleInfo
  602. type BatchSimpleInfo struct {
  603. BaseListInfo
  604. // The API list data | BatchMsg列表数据
  605. Data []DataSimpleInfo `json:"data"`
  606. }
  607. // Data create request | 信息请求体
  608. // swagger:model CreateDataInfoReq
  609. type CreateDataInfoReq struct {
  610. // required : true
  611. CollectionId *string `json:"collectionId" validate:"required"`
  612. // Q
  613. // required : true
  614. Q *string `json:"q" validate:"required"`
  615. // A
  616. // required : true
  617. A *string `json:"a" validate:"required"`
  618. }
  619. // IndexSingle {
  620. // Text A *string `json:"text"`
  621. // }
  622. //
  623. // Data create request | 信息返回体
  624. // swagger:model UpdateDataInfoReq
  625. type UpdateDataInfoReq struct {
  626. // ID
  627. // required : true
  628. DataId *string `json:"id" validate:"required"`
  629. // Q
  630. // required : true
  631. Q *string `json:"q" validate:"required"`
  632. // A
  633. // required : true
  634. A *string `json:"a" validate:"required"`
  635. }
  636. // swagger:model DeleteDataReq
  637. type DeleteDataReq struct {
  638. // required : true
  639. ID *string `json:"id" validate:"required"`
  640. }
  641. // swagger:model UploadDataReq
  642. type UploadDataReq struct {
  643. AgentId *string `form:"agentId"`
  644. }
  645. type BatchDeleteIds struct {
  646. Ids []string `json:"ids"`
  647. }
  648. // ContactLabelList | Contact标签列表
  649. type ContactLabelList struct {
  650. // label
  651. Label *string `json:"label,optional"`
  652. // value
  653. Value *uint64 `json:"value,optional"`
  654. }
  655. // The response data of contact information | Contact信息
  656. // swagger:model ContactInfo
  657. type ContactInfo struct {
  658. BaseIDInfo
  659. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  660. Status *uint8 `json:"status,optional"`
  661. // 属主微信id
  662. WxWxid *string `json:"wxWxid,optional"`
  663. // 属主微信昵称
  664. WxWxidNickname *string `json:"wxWxidNickname,optional"`
  665. // 联系人类型:1好友,2群组,3公众号,4企业微信联系人
  666. Type *int `json:"type,optional"`
  667. // 微信id 公众号微信ID
  668. Wxid *string `json:"wxid,optional"`
  669. // 微信账号
  670. Account *string `json:"account,optional"`
  671. // 微信昵称 群备注名称
  672. Nickname *string `json:"nickname,optional"`
  673. // 备注名
  674. Markname *string `json:"markname,optional"`
  675. // 头像
  676. Headimg *string `json:"headimg,optional"`
  677. // 性别 0未知 1男 2女
  678. Sex *int `json:"sex,optional"`
  679. // 星标 65/67=星标 1/3=未星标
  680. Starrole *string `json:"starrole,optional"`
  681. // 不让他看我的朋友圈 0可以看 1不让看
  682. Dontseeit *int `json:"dontseeit,optional"`
  683. // 不看他的朋友圈 0可以看 1不看 1=开启了不看他 128/129=仅聊天
  684. Dontseeme *int `json:"dontseeme,optional"`
  685. // 所属标签id清单,多开会用逗号隔开
  686. Lag *string `json:"lag,optional"`
  687. // 群组id
  688. Gid *string `json:"gid,optional"`
  689. // 群组名称
  690. Gname *string `json:"gname,optional"`
  691. // v3数据
  692. V3 *string `json:"v3,optional"`
  693. // Label Relationships | 标签关系
  694. LabelRelationships []ContactLabelList `json:"labelRelationships,optional"`
  695. // 组织ID
  696. OrganizationId *uint64 `json:"organizationId,optional"`
  697. }
  698. // The response data of label information | Label信息
  699. // swagger:model LabelInfo
  700. type LabelInfo struct {
  701. BaseIDInfo
  702. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  703. Status *uint8 `json:"status,optional"`
  704. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  705. Type *int `json:"type,optional"`
  706. // 标签名称
  707. Name *string `json:"name,optional"`
  708. // 标签来源:1后台创建 2个微同步
  709. From *int `json:"from,optional"`
  710. // 标签模式:1动态 2静态
  711. Mode *int `json:"mode,optional"`
  712. // 标签的触达条件
  713. Conditions *string `json:"conditions,optional"`
  714. // 组织ID
  715. OrganizationId *uint64 `json:"organizationId,optional"`
  716. // Label Relationships | 标签关系
  717. LabelRelationships []LabelRelationshipInfo `json:"labelRelationships,optional"`
  718. }
  719. // The response data of label relationship information | LabelRelationship信息
  720. // swagger:model LabelRelationshipInfo
  721. type LabelRelationshipInfo struct {
  722. BaseIDInfo
  723. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  724. Status *uint8 `json:"status,optional"`
  725. // 标签 ID
  726. LabelId *uint64 `json:"labelId,optional"`
  727. // 联系人 ID
  728. ContactId *uint64 `json:"contactId,optional"`
  729. // Contact information | 联系人信息
  730. Contact ContactInfo `json:"contact,optional"`
  731. // Label information | 标签信息
  732. Label LabelInfo `json:"label,optional"`
  733. // 组织ID
  734. OrganizationId *uint64 `json:"organizationId,optional"`
  735. }
  736. // The response data of label relationship information | LabelRelationship信息
  737. // swagger:model LabelRelationshipsInfo
  738. type LabelRelationshipsInfo struct {
  739. BaseIDInfo
  740. // 更新类型:为空或“all”时表示全量更新,为 “add” 时表示仅追加
  741. UpdateType *string `json:"updateType,optional"`
  742. // 标签 ID
  743. LabelIds []uint64 `json:"labelIds,optional"`
  744. // 联系人 ID
  745. ContactId *uint64 `json:"contactId,optional"`
  746. }
  747. // swagger:model BatchLabelRelationshipsInfo
  748. type BatchLabelRelationshipsInfo struct {
  749. // 更新类型:为1 时表示增加标签,为 -1 时表示移除标签
  750. UpdateType int `json:"updateType,optional"`
  751. // 标签 ID
  752. LabelIds []uint64 `json:"labelIds,optional"`
  753. // 联系人 ID
  754. ContactIds []uint64 `json:"contactIds,optional"`
  755. }
  756. // The response data of label relationship list | LabelRelationship列表数据
  757. // swagger:model LabelRelationshipListResp
  758. type LabelRelationshipListResp struct {
  759. BaseDataInfo
  760. // LabelRelationship list data | LabelRelationship列表数据
  761. Data LabelRelationshipListInfo `json:"data"`
  762. }
  763. // LabelRelationship list data | LabelRelationship列表数据
  764. // swagger:model LabelRelationshipListInfo
  765. type LabelRelationshipListInfo struct {
  766. BaseListInfo
  767. // The API list data | LabelRelationship列表数据
  768. Data []LabelRelationshipInfo `json:"data"`
  769. }
  770. // Get label relationship list request params | LabelRelationship列表请求参数
  771. // swagger:model LabelRelationshipListReq
  772. type LabelRelationshipListReq struct {
  773. PageInfo
  774. }
  775. // LabelRelationship information response | LabelRelationship信息返回体
  776. // swagger:model LabelRelationshipInfoResp
  777. type LabelRelationshipInfoResp struct {
  778. BaseDataInfo
  779. // LabelRelationship information | LabelRelationship数据
  780. Data LabelRelationshipInfo `json:"data"`
  781. }
  782. type LoginQRStatus struct {
  783. // 登陆二维码
  784. QRCode string `json:"qRCode,optional"`
  785. // 登陆二维码状态
  786. Status string `json:"status,optional"`
  787. // 登陆二维码状态描述
  788. StatusDesc string `json:"statusDesc,optional"`
  789. }
  790. // 刷新登陆二维码请求参数
  791. // swagger:model RefreshLoginQRReq
  792. type RefreshLoginQRReq struct {
  793. // 服务器id
  794. ServerId *uint64 `json:"serverId,optional"`
  795. // 端口号
  796. Port *string `json:"port,optional"`
  797. // 回调地址
  798. Callback *string `json:"callback,optional"`
  799. }
  800. // 刷新登陆二维码返回参数
  801. // swagger:model RefreshLoginQRResp
  802. type RefreshLoginQRResp struct {
  803. BaseDataInfo
  804. // 二维码Base64
  805. Data LoginQRStatus `json:"data,optional"`
  806. }
  807. // 发送微信文本消息请求参数
  808. // swagger:model SendTextMsgReq
  809. type SendTextMsgReq struct {
  810. // 属主微信id
  811. WxWxid *string `json:"senderWxId"`
  812. // 微信id 公众号微信ID
  813. Wxid *string `json:"receiverWxId"`
  814. // 微信文本消息内容
  815. Msg *string `json:"msg"`
  816. }
  817. // 发送微信图片消息请求参数
  818. // swagger:model SendPicMsgReq
  819. type SendPicMsgReq struct {
  820. // 属主微信id
  821. WxWxid *string `json:"wxWxid"`
  822. // 微信id 公众号微信ID
  823. Wxid *string `json:"wxid"`
  824. // 微信图片路径(本地或网络,本地需要上传操作,如:C:\\x.jpg)
  825. Picpath *string `json:"picpath"`
  826. // 微信图片自定义名称(此属性只有网络图片有)
  827. Diyfilename *string `json:"diyfilename,optional"`
  828. }
  829. // 发送微信图片(本地)请求参数
  830. // swagger:model SendPicMsgLocalReq
  831. type SendPicMsgLocalReq struct {
  832. // 属主微信id
  833. WxWxid *string `json:"wxWxid"`
  834. // 微信id 公众号微信ID
  835. Wxid *string `json:"wxid"`
  836. // 微信图片路径(本地或网络,本地需要上传操作,如:C:\\x.jpg)
  837. Picpath *string `json:"picpath"`
  838. }
  839. // The response data of contact list | Contact列表数据
  840. // swagger:model ContactListResp
  841. type ContactListResp struct {
  842. BaseDataInfo
  843. // Contact list data | Contact列表数据
  844. Data ContactListInfo `json:"data"`
  845. }
  846. // Contact list data | Contact列表数据
  847. // swagger:model ContactListInfo
  848. type ContactListInfo struct {
  849. BaseListInfo
  850. // The API list data | Contact列表数据
  851. Data []ContactInfo `json:"data"`
  852. }
  853. // Get contact list request params | Contact列表请求参数
  854. // swagger:model ContactListReq
  855. type ContactListReq struct {
  856. PageInfo
  857. // Label ID list | 标签ID列表
  858. LabelIDs []uint64 `json:"labelIDs,optional"`
  859. // 属主微信id
  860. WxWxid *string `json:"wxWxid,optional"`
  861. // 微信id 公众号微信ID
  862. Wxid *string `json:"wxid,optional"`
  863. // 微信账号
  864. Account *string `json:"account,optional"`
  865. // 昵称
  866. Nickname *string `json:"nickname,optional"`
  867. // 联系人类型:1好友,2群组,3公众号,4企业微信联系人
  868. Type *int `json:"type,optional"`
  869. }
  870. // Contact information response | Contact信息返回体
  871. // swagger:model ContactInfoResp
  872. type ContactInfoResp struct {
  873. BaseDataInfo
  874. // Contact information | Contact数据
  875. Data ContactInfo `json:"data"`
  876. }
  877. // swagger:model AddNewFriendReq
  878. type AddNewFriendReq struct {
  879. OwnerWxid string `json:"ownerWxid"`
  880. Wxid string `json:"wxid"`
  881. Gid string `json:"gid"`
  882. Desc string `json:"desc"`
  883. AddType string `json:"addType"`
  884. }
  885. // The response data of message information | Message信息
  886. // swagger:model MessageInfo
  887. type MessageInfo struct {
  888. BaseIDInfo
  889. // 属主微信id
  890. WxWxid *string `json:"wxWxid"`
  891. // 微信id 公众号微信ID
  892. Wxid *string `json:"wxid"`
  893. // 微信消息内容
  894. Msg *string `json:"msg"`
  895. }
  896. // The response data of message list | Message列表数据
  897. // swagger:model MessageListResp
  898. type MessageListResp struct {
  899. BaseDataInfo
  900. // Message list data | Message列表数据
  901. Data MessageListInfo `json:"data"`
  902. }
  903. // Message list data | Message列表数据
  904. // swagger:model MessageListInfo
  905. type MessageListInfo struct {
  906. BaseListInfo
  907. // The API list data | Message列表数据
  908. Data []MessageInfo `json:"data"`
  909. }
  910. // Get message list request params | Message列表请求参数
  911. // swagger:model MessageListReq
  912. type MessageListReq struct {
  913. PageInfo
  914. // 属主微信id
  915. WxWxid *string `json:"wxWxid,optional"`
  916. // 微信id 公众号微信ID
  917. Wxid *string `json:"wxid,optional"`
  918. }
  919. // Message information response | Message信息返回体
  920. // swagger:model MessageInfoResp
  921. type MessageInfoResp struct {
  922. BaseDataInfo
  923. // Message information | Message数据
  924. Data MessageInfo `json:"data"`
  925. }
  926. // The response data of label list | Label列表数据
  927. // swagger:model LabelSelectListResp
  928. type LabelSelectListResp struct {
  929. BaseDataInfo
  930. // Label list data | Label列表数据
  931. Data []LabelSelectListInfo `json:"data"`
  932. }
  933. // The response data of label list | Label群发列表数据
  934. // swagger:model LabelBatchSelectListResp
  935. type LabelBatchSelectListResp struct {
  936. BaseDataInfo
  937. // Label list data | Label列表数据
  938. Data LabelBatchSelectListData `json:"data"`
  939. }
  940. // The response data of label list | Label群发列表数据
  941. type LabelBatchSelectListData struct {
  942. Contact []LabelSelectListInfo `json:"contact"`
  943. Group []LabelSelectListInfo `json:"group"`
  944. }
  945. // The response data of label list | Label列表数据
  946. // swagger:model LabelListResp
  947. type LabelListResp struct {
  948. BaseDataInfo
  949. // Label list data | Label列表数据
  950. Data LabelListInfo `json:"data"`
  951. }
  952. // Label list data | Label列表数据
  953. // swagger:model LabelListInfo
  954. type LabelListInfo struct {
  955. BaseListInfo
  956. // The API list data | Label列表数据
  957. Data []LabelInfo `json:"data"`
  958. }
  959. // Get label list request params | Label列表请求参数
  960. // swagger:model LabelListReq
  961. type LabelListReq struct {
  962. PageInfo
  963. // Label ID list | Label ID列表
  964. LabelIDs []uint64 `json:"labelIDs,optional"`
  965. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  966. Type *int `json:"type,optional"`
  967. // 标签名称
  968. Name *string `json:"name,optional"`
  969. // 标签来源:1后台创建 2个微同步
  970. From *int `json:"from,optional"`
  971. // 标签模式:1动态 2静态
  972. Mode *int `json:"mode,optional"`
  973. }
  974. // Label information response | Label信息返回体
  975. // swagger:model LabelInfoResp
  976. type LabelInfoResp struct {
  977. BaseDataInfo
  978. // Label information | Label数据
  979. Data LabelInfo `json:"data"`
  980. }
  981. // swagger:model LabelSelectListInfo
  982. type LabelSelectListInfo struct {
  983. // label
  984. Label *string `json:"label,optional"`
  985. // value
  986. Value *uint64 `json:"value,optional"`
  987. }
  988. // The response data of sop task list | SopTask列表数据
  989. // swagger:model SopTaskListResp
  990. type SopTaskListResp struct {
  991. BaseDataInfo
  992. // SopTask list data | SopTask列表数据
  993. Data SopTaskListInfo `json:"data"`
  994. }
  995. // The response data of sop task record list | SopTask列表数据
  996. // swagger:model SopTaskRecordListResp
  997. type SopTaskRecordListResp struct {
  998. BaseDataInfo
  999. // SopTask list data | SopTask列表数据
  1000. Data []SopTaskRecordInfo `json:"data"`
  1001. }
  1002. // SopTask list data | SopTask列表数据
  1003. // swagger:model SopTaskRecordInfo
  1004. type SopTaskRecordInfo struct {
  1005. // NodeId 节点ID
  1006. SourceType *int `json:"sourceType,optional"`
  1007. // NodeId 节点ID
  1008. SourceId *uint64 `json:"sourceId,optional"`
  1009. // 节点名称
  1010. Name *string `json:"name,optional"`
  1011. // 消息总数
  1012. TotalCount *int64 `json:"totalCount,optional"`
  1013. // 成功数
  1014. SuccessCount *int64 `json:"successCount,optional"`
  1015. // 失败数
  1016. FailureCount *int64 `json:"failureCount,optional"`
  1017. // 成功率
  1018. SuccessRate *int64 `json:"successRate,optional"`
  1019. }
  1020. // SopTask list data | SopTask列表数据
  1021. // swagger:model SopTaskListInfo
  1022. type SopTaskListInfo struct {
  1023. BaseListInfo
  1024. // The API list data | SopTask列表数据
  1025. Data []SopTaskInfo `json:"data"`
  1026. }
  1027. // Get sop task list request params | SopTask列表请求参数
  1028. // swagger:model SopTaskListReq
  1029. type SopTaskListReq struct {
  1030. PageInfo
  1031. // SOP 任务名称
  1032. Name *string `json:"name,optional"`
  1033. // 创建者 id
  1034. CreatorId *string `json:"creatorId,optional"`
  1035. }
  1036. // SopTask information response | SopTask信息返回体
  1037. // swagger:model SopTaskInfoResp
  1038. type SopTaskInfoResp struct {
  1039. BaseDataInfo
  1040. // SopTask information | SopTask数据
  1041. Data SopTaskInfo `json:"data"`
  1042. }
  1043. // SopTask create response | SopTask创建回体
  1044. // swagger:model SopTaskCreateResp
  1045. type SopTaskCreateResp struct {
  1046. BaseDataInfo
  1047. // SopTask id | SopTask id
  1048. Data uint64 `json:"data"`
  1049. }
  1050. // swagger:model CopyReq
  1051. type CopyReq struct {
  1052. // SopTask id | SopTask id
  1053. Id uint64 `json:"id"`
  1054. // SOP 任务名称
  1055. Name *string `json:"name,optional"`
  1056. // Organization id | Organization id
  1057. OrganizationId uint64 `json:"organizationId,optional"`
  1058. }
  1059. // swagger:model MessageVarResp
  1060. type MessageVarResp struct {
  1061. BaseDataInfo
  1062. Data MessageVarRespData `json:"data"`
  1063. }
  1064. type MessageVarRespData struct {
  1065. // 消息变量
  1066. MessageVar []MessageVarInfo `json:"messageVar"`
  1067. // 转发变量
  1068. ForwardVar []MessageVarInfo `json:"forwardVar"`
  1069. }
  1070. // swagger:model MessageVarInfo
  1071. type MessageVarInfo struct {
  1072. // 显示名称
  1073. Label string `json:"label"`
  1074. // 变量
  1075. Value string `json:"value"`
  1076. }
  1077. // swagger:model SopTaskOutlineResp
  1078. type SopTaskOutlineResp struct {
  1079. BaseDataInfo
  1080. Data []SopTaskOutlineInfo `json:"data"`
  1081. }
  1082. // swagger:model SopTaskOutlineInfo
  1083. type SopTaskOutlineInfo struct {
  1084. // 标题
  1085. Title string `json:"title,optional"`
  1086. // key
  1087. Key string `json:"key,optional"`
  1088. // 子节点
  1089. Children []SopTaskOutlineInfo `json:"children,optional"`
  1090. }
  1091. // swagger:model TestNodeReq
  1092. type TestNodeReq struct {
  1093. Type int `json:"type"`
  1094. Id uint64 `json:"id"`
  1095. Content string `json:"content"`
  1096. }
  1097. // swagger:model TestNodeResp
  1098. type TestNodeResp struct {
  1099. BaseDataInfo
  1100. Data []string `json:"data"`
  1101. }
  1102. // swagger:model SopApiListReq
  1103. type SopApiListReq struct {
  1104. // required : true
  1105. // min : 0
  1106. Page uint64 `json:"page" validate:"required,number,gt=0"`
  1107. // required : true
  1108. // max : 2000
  1109. PageSize uint64 `json:"pageSize" validate:"required,number,lt=2000"`
  1110. }
  1111. // The response data of sop stage information | SopStage信息
  1112. // swagger:model SopStageInfo
  1113. type SopStageInfo struct {
  1114. BaseIDInfo
  1115. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1116. Status *uint8 `json:"status,optional"`
  1117. // SOP 任务 ID
  1118. TaskId *uint64 `json:"taskId,optional"`
  1119. // 阶段名称
  1120. Name *string `json:"name,optional"`
  1121. // 客群筛选条件类型 1 按标签筛选 2 按客户基本信息筛选
  1122. ConditionType *int `json:"conditionType,optional"`
  1123. // 筛选条件关系 1 满足所有条件(and) 2 满足任意条件(or)
  1124. ConditionOperator *int `json:"conditionOperator,optional"`
  1125. // 筛选条件列表
  1126. ConditionList []Condition `json:"conditionList,optional"`
  1127. // 命中后发送的消息内容
  1128. ActionMessage []Action `json:"actionMessage,optional"`
  1129. // 命中后需要打的标签
  1130. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1131. // 命中后需要移除的标签
  1132. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1133. // 命中后转发的消息内容
  1134. ActionForward *ActionForward `json:"actionForward,optional"`
  1135. // 阶段顺序
  1136. IndexSort *int `json:"indexSort,optional"`
  1137. // sop 任务信息
  1138. TaskInfo *SopTaskInfo `json:"taskInfo,optional"`
  1139. // node 信息
  1140. NodeList []SopNodeInfo `json:"nodeList,optional"`
  1141. }
  1142. // The response data of sop task information | SopTask信息
  1143. // swagger:model SopTaskInfo
  1144. type SopTaskInfo struct {
  1145. BaseIDInfo
  1146. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1147. Status *uint8 `json:"status,optional"`
  1148. // SOP 任务名称
  1149. Name *string `json:"name,optional"`
  1150. // 机器人微信 id 列表
  1151. BotWxidList []string `json:"botWxidList,optional"`
  1152. // 标签类型:1好友,2群组,3企业微信联系人
  1153. Type *int `json:"type,optional"`
  1154. // 任务计划开始时间
  1155. PlanStartTime *int64 `json:"planStartTime,optional"`
  1156. // 任务计划结束时间
  1157. PlanEndTime *int64 `json:"planEndTime,optional"`
  1158. // 创建者 id
  1159. CreatorId *string `json:"creatorId,optional"`
  1160. // 阶段信息
  1161. StageList []SopStageInfo `json:"stageList,optional"`
  1162. // 组织ID
  1163. OrganizationId *uint64 `json:"organizationId,optional"`
  1164. // Token
  1165. Token []string `json:"token,optional"`
  1166. }
  1167. // The response data of sop node information | SopNode信息
  1168. // swagger:model SopNodeInfo
  1169. type SopNodeInfo struct {
  1170. BaseIDInfo
  1171. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1172. Status *uint8 `json:"status,optional"`
  1173. // 阶段 ID
  1174. StageId *uint64 `json:"stageId,optional"`
  1175. // 父节点 ID
  1176. ParentId *uint64 `json:"parentId,optional"`
  1177. // 节点名称
  1178. Name *string `json:"name,optional"`
  1179. // 触发条件类型 1 客户回复后触发 2 超时后触发
  1180. ConditionType *int `json:"conditionType,optional"`
  1181. // 触发语义列表 当为空时则代表用户回复任意内容后触发
  1182. ConditionList []string `json:"conditionList,optional"`
  1183. // 超时触发时间(分钟)
  1184. NoReplyCondition *uint64 `json:"noReplyCondition,optional"`
  1185. // 超时触发时间单位
  1186. NoReplyUnit *string `json:"noReplyUnit,optional"`
  1187. // 命中后发送的消息内容
  1188. ActionMessage []Action `json:"actionMessage,optional"`
  1189. // 命中后需要打的标签
  1190. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1191. // 命中后需要移除的标签
  1192. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1193. // 命中后转发的消息内容
  1194. ActionForward *ActionForward `json:"actionForward,optional"`
  1195. // 阶段信息
  1196. StageInfo *SopStageInfo `json:"stageInfo,optional"`
  1197. }
  1198. // The response data of sop node information | SopNode信息
  1199. type SopNodeInfoWithLable struct {
  1200. BaseIDInfo
  1201. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1202. Status *uint8 `json:"status,optional"`
  1203. // 阶段 ID
  1204. StageId *uint64 `json:"stageId,optional"`
  1205. // 父节点 ID
  1206. ParentId *uint64 `json:"parentId,optional"`
  1207. // 节点名称
  1208. Name *string `json:"name,optional"`
  1209. // 触发条件类型 1 客户回复后触发 2 超时后触发
  1210. ConditionType *int `json:"conditionType,optional"`
  1211. // 触发语义列表 当为空时则代表用户回复任意内容后触发
  1212. ConditionList []string `json:"conditionList,optional"`
  1213. // 超时触发时间(分钟)
  1214. NoReplyCondition *uint64 `json:"noReplyCondition,optional"`
  1215. // 超时触发时间单位
  1216. NoReplyUnit *string `json:"noReplyUnit,optional"`
  1217. // 命中后发送的消息内容
  1218. ActionMessage []Action `json:"actionMessage,optional"`
  1219. // 命中后需要打的标签
  1220. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1221. // 命中后需要移除的标签
  1222. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1223. // 命中后转发的消息内容
  1224. ActionForward *ActionForward `json:"actionForward,optional"`
  1225. ActionLabelAddList []string `json:"actionLabelAddList"`
  1226. ActionLabelDelList []string `json:"actionLabelDelList"`
  1227. }
  1228. // The response data of sop stage list | SopStage列表数据
  1229. // swagger:model SopStageListResp
  1230. type SopStageListResp struct {
  1231. BaseDataInfo
  1232. // SopStage list data | SopStage列表数据
  1233. Data SopStageListInfo `json:"data"`
  1234. }
  1235. // SopStage list data | SopStage列表数据
  1236. // swagger:model SopStageListInfo
  1237. type SopStageListInfo struct {
  1238. BaseListInfo
  1239. // The API list data | SopStage列表数据
  1240. Data []SopStageInfo `json:"data"`
  1241. }
  1242. // Get sop stage list request params | SopStage列表请求参数
  1243. // swagger:model SopStageListReq
  1244. type SopStageListReq struct {
  1245. TaskId *uint64 `json:"taskId"`
  1246. }
  1247. // Batch get sop stage list request params | SopStage列表请求参数
  1248. // swagger:model BatchSopStageListReq
  1249. type BatchSopStageListReq struct {
  1250. TaskIds []uint64 `json:"taskIds"`
  1251. }
  1252. // SopStage information response | SopStage信息返回体
  1253. // swagger:model SopStageInfoResp
  1254. type SopStageInfoResp struct {
  1255. BaseDataInfo
  1256. // SopStage information | SopStage数据
  1257. Data SopStageInfo `json:"data"`
  1258. }
  1259. // SopStage create response | SopStage创建回体
  1260. // swagger:model SopStageCreateResp
  1261. type SopStageCreateResp struct {
  1262. BaseDataInfo
  1263. // SopStage id | SopStage id
  1264. Data uint64 `json:"data"`
  1265. }
  1266. // Move sop stage request params | 移动阶段请求参数
  1267. // swagger:model SopStageMoveReq
  1268. type SopStageMoveReq struct {
  1269. BaseIDInfo
  1270. // 阶段名称
  1271. Offset *int `json:"offset,optional"`
  1272. }
  1273. // The response data of sop node list | SopNode列表数据
  1274. // swagger:model SopNodeListResp
  1275. type SopNodeListResp struct {
  1276. BaseDataInfo
  1277. // SopNode list data | SopNode列表数据
  1278. Data []*SopChildNodeInfo `json:"data"`
  1279. }
  1280. // The response data of sop node list | SopNode列表数据
  1281. type SopNodeListResp2 struct {
  1282. BaseDataInfo
  1283. // SopNode list data | SopNode列表数据
  1284. Data []*SopNodeInfoWithLable `json:"data"`
  1285. }
  1286. // SopNode list data | SopNode列表数据
  1287. // swagger:model SopChildNodeInfo
  1288. type SopChildNodeInfo struct {
  1289. NodeName *string `json:"nodeName,optional"`
  1290. ChildNode *SopChildNodeInfo `json:"childNode,optional"`
  1291. // The API list data | SopNode列表数据
  1292. ConditionNodes []*SopChildNodeInfo `json:"conditionNodes"`
  1293. SopNodeInfo
  1294. }
  1295. // SopNode list data | SopNode列表数据
  1296. // swagger:model SopNodeListInfo
  1297. type SopNodeListInfo struct {
  1298. BaseListInfo
  1299. // The API list data | SopNode列表数据
  1300. Data []SopNodeInfo `json:"data"`
  1301. }
  1302. // Get sop node list request params | SopNode列表请求参数
  1303. // swagger:model SopNodeListReq
  1304. type SopNodeListReq struct {
  1305. StageId *uint64 `json:"stageId"`
  1306. }
  1307. // Get sop node list request params | SopNode列表请求参数
  1308. // swagger:model BatchSopNodeListReq
  1309. type BatchSopNodeListReq struct {
  1310. StageIds []uint64 `json:"stageIds"`
  1311. }
  1312. // SopNode information response | SopNode信息返回体
  1313. // swagger:model SopNodeInfoResp
  1314. type SopNodeInfoResp struct {
  1315. BaseDataInfo
  1316. // SopNode information | SopNode数据
  1317. Data SopNodeInfo `json:"data"`
  1318. }
  1319. // SopNode create response | SopNode创建返回体
  1320. // swagger:model SopNodeCreateResp
  1321. type SopNodeCreateResp struct {
  1322. BaseDataInfo
  1323. // SopNode id | SopNode id
  1324. Data uint64 `json:"data"`
  1325. }
  1326. // The response data of message records information | MessageRecords信息
  1327. // swagger:model MessageRecordsInfo
  1328. type MessageRecordsInfo struct {
  1329. BaseIDInfo
  1330. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1331. Status *uint8 `json:"status,optional"`
  1332. // 机器人微信 id
  1333. BotWxid *string `json:"botWxid,optional"`
  1334. // 联系人 id
  1335. ContactId *uint64 `json:"contactId,optional"`
  1336. // 类型:1好友,2群组,3企业微信联系人
  1337. ContactType *int `json:"contactType,optional"`
  1338. // 接收方微信 id
  1339. ContactWxid *string `json:"contactWxid,optional"`
  1340. // 内容类型 1 文本 2 文件
  1341. ContentType *int `json:"contentType,optional"`
  1342. // 发送内容
  1343. Content *string `json:"content,optional"`
  1344. // 元数据
  1345. Meta *Meta `json:"meta,optional"`
  1346. // 异常原因
  1347. ErrorDetail *string `json:"errorDetail,optional"`
  1348. // 发送时间
  1349. SendTime *int64 `json:"sendTime,optional"`
  1350. // 源类型 1 点发 2 群发 3 SOP
  1351. SourceType *int `json:"sourceType,optional"`
  1352. // 源 ID
  1353. SourceId *uint64 `json:"sourceId,optional"`
  1354. // 次源 ID
  1355. SubSourceId *uint64 `json:"subSourceId,optional"`
  1356. // 组织ID
  1357. OrganizationId *uint64 `json:"organizationId,optional"`
  1358. }
  1359. // The response data of message records list | MessageRecords列表数据
  1360. // swagger:model MessageRecordsListResp
  1361. type MessageRecordsListResp struct {
  1362. BaseDataInfo
  1363. // MessageRecords list data | MessageRecords列表数据
  1364. Data MessageRecordsListInfo `json:"data"`
  1365. }
  1366. // MessageRecords list data | MessageRecords列表数据
  1367. // swagger:model MessageRecordsListInfo
  1368. type MessageRecordsListInfo struct {
  1369. BaseListInfo
  1370. // The API list data | MessageRecords列表数据
  1371. Data []MessageRecordsInfo `json:"data"`
  1372. }
  1373. // Get message records list request params | MessageRecords列表请求参数
  1374. // swagger:model MessageRecordsListReq
  1375. type MessageRecordsListReq struct {
  1376. PageInfo
  1377. // 群发消息ID
  1378. BatchMsgId *uint64 `json:"batchMsgId,optional"`
  1379. // 机器人微信 id
  1380. BotWxid *string `json:"botWxid,optional"`
  1381. // 消息类型:源类型 1 点发 2 群发 3 SOP 阶段 4 SOP 节点
  1382. SourceType *int `json:"sourceType,optional"`
  1383. // 消息源ID:
  1384. SourceId *uint64 `json:"sourceId,optional"`
  1385. // 接收方微信 id
  1386. ContactWxid *string `json:"contactWxid,optional"`
  1387. // 发送内容
  1388. Status *uint8 `json:"status,optional"`
  1389. }
  1390. // MessageRecords information response | MessageRecords信息返回体
  1391. // swagger:model MessageRecordsInfoResp
  1392. type MessageRecordsInfoResp struct {
  1393. BaseDataInfo
  1394. // MessageRecords information | MessageRecords数据
  1395. Data MessageRecordsInfo `json:"data"`
  1396. }
  1397. // The response data of chatroom member information | ChatroomMember信息
  1398. // swagger:model ChatroomMemberInfo
  1399. type ChatroomMemberInfo struct {
  1400. // 名称
  1401. Wxid *string `json:"wxid,optional"`
  1402. // 群组
  1403. ChatRoom *string `json:"chatRoom,optional"`
  1404. // 属主Wxid
  1405. OwnerWxid *string `json:"ownerWxid,optional"`
  1406. // 账号
  1407. Account *string `json:"account,optional"`
  1408. }
  1409. // The response data of chatroom member list | ChatroomMember列表数据
  1410. // swagger:model ChatroomMemberListResp
  1411. type ChatroomMemberListResp struct {
  1412. BaseDataInfo
  1413. // chatroom member list data | chatroom member 列表数据
  1414. Data ChatroomMemberListInfo `json:"data"`
  1415. }
  1416. // chatroom member list data | chatroom member列表数据
  1417. // swagger:model ChatroomMemberListInfo
  1418. type ChatroomMemberListInfo struct {
  1419. BaseListInfo
  1420. // The API list data | chatroom member列表数据
  1421. Data []ChatroomMemberInfo `json:"data"`
  1422. }
  1423. // Get chatroom member list request params | ChatroomMember列表请求参数
  1424. // swagger:model ChatroomMemberListReq
  1425. type ChatroomMemberListReq struct {
  1426. PageInfo
  1427. // 属主Wxid
  1428. OwnerWxid *string `json:"ownerWxid,optional"`
  1429. // 群组
  1430. ChatRoom *string `json:"chatRoom,optional"`
  1431. }
  1432. // chatroom member information response | ChatroomMember信息返回体
  1433. // swagger:model ChatroomMemberInfoResp
  1434. type ChatroomMemberInfoResp struct {
  1435. BaseDataInfo
  1436. // Server information | Server数据
  1437. Data ChatroomMemberInfo `json:"data"`
  1438. }
  1439. // The response data of user information | 用户信息
  1440. // swagger:model UserInfo
  1441. type UserInfo struct {
  1442. BaseUUIDInfo
  1443. // Status | 状态
  1444. // max : 20
  1445. Status *uint32 `json:"status,optional" validate:"omitempty,lt=20"`
  1446. // Username | 用户名
  1447. // max length : 50
  1448. Username *string `json:"username,optional" validate:"omitempty,max=50"`
  1449. // Nickname | 昵称
  1450. // max length : 40
  1451. Nickname *string `json:"nickname,optional" validate:"omitempty,max=40"`
  1452. // Password | 密码
  1453. // min length : 6
  1454. Password *string `json:"password,optional" validate:"omitempty,min=6"`
  1455. // Description | 描述
  1456. // max length : 100
  1457. Description *string `json:"description,optional" validate:"omitempty,max=100"`
  1458. // HomePath | 首页
  1459. // max length : 70
  1460. HomePath *string `json:"homePath,optional" validate:"omitempty,max=70"`
  1461. // RoleId | 角色ID
  1462. RoleIds []uint64 `json:"roleIds,optional"`
  1463. // Mobile | 手机号
  1464. // max length : 18
  1465. Mobile *string `json:"mobile,optional" validate:"omitempty,max=18"`
  1466. // Email | 邮箱
  1467. // max length : 80
  1468. Email *string `json:"email,optional" validate:"omitempty,max=80"`
  1469. // Avatar | 头像地址
  1470. // max length : 300
  1471. Avatar *string `json:"avatar,optional" validate:"omitempty,max=300"`
  1472. // Department ID | 部门ID
  1473. DepartmentId *uint64 `json:"departmentId,optional,omitempty"`
  1474. // Position ID | 职位ID
  1475. PositionIds []uint64 `json:"positionId,optional,omitempty"`
  1476. }
  1477. // User information response | 用户信息返回体
  1478. // swagger:model UserInfoResp
  1479. type UserInfoResp struct {
  1480. BaseDataInfo
  1481. // User information | User数据
  1482. Data UserInfo `json:"data"`
  1483. }
  1484. // The response data of user's basic information | 用户基本信息返回数据
  1485. // swagger:model UserBaseIDInfoResp
  1486. type UserBaseIDInfoResp struct {
  1487. BaseDataInfo
  1488. // The data of user's basic information | 用户基本信息
  1489. Data UserBaseIDInfo `json:"data"`
  1490. }
  1491. // The data of user's basic information | 用户基本信息
  1492. // swagger:model UserBaseIDInfo
  1493. type UserBaseIDInfo struct {
  1494. // User's UUID | 用户的UUID
  1495. UUID *string `json:"userId"`
  1496. // User's name | 用户名
  1497. Username *string `json:"username"`
  1498. // User's nickname | 用户的昵称
  1499. Nickname *string `json:"nickname"`
  1500. // The user's avatar path | 用户的头像路径
  1501. Avatar *string `json:"avatar"`
  1502. // The home page that the user enters after logging in | 用户登陆后进入的首页
  1503. HomePath *string `json:"homePath"`
  1504. // The description of user | 用户的描述信息
  1505. Description *string `json:"desc"`
  1506. // User's Role Name | 用户的角色名称
  1507. RoleName []string `json:"roleName"`
  1508. // Department Name | 部门名称
  1509. DepartmentName string `json:"departmentName,optional"`
  1510. // Department Name | 部门备注
  1511. DepartmentRemark string `json:"departmentRemark,optional"`
  1512. }
  1513. // swagger:model UserLoginReq
  1514. type UserLoginReq struct {
  1515. JsCode *string `json:"js_code,optional"`
  1516. }
  1517. // swagger:model UserLoginResp
  1518. type UserLoginResp struct {
  1519. BaseDataInfo
  1520. Data UserToken `json:"data,optional"`
  1521. }
  1522. type UserToken struct {
  1523. Token *string `json:"token,optional"`
  1524. ID *uint64 `json:"id,optional"`
  1525. Avatar *string `json:"avatar,optional"`
  1526. Nickname *string `json:"nickname,optional"`
  1527. IsVip *bool `json:"isVip,optional"`
  1528. }
  1529. // swagger:model UserVipResp
  1530. type UserVipResp struct {
  1531. BaseDataInfo
  1532. Data UserVip `json:"data,optional"`
  1533. }
  1534. type UserVip struct {
  1535. IsVip *bool `json:"isVip,optional"`
  1536. WechatAccount *string `json:"wechatAccount"`
  1537. }
  1538. // swagger:model WxidReq
  1539. type WxidReq struct {
  1540. Wxid string `json:"wxid"`
  1541. }
  1542. // The data of batch msg information | BatchMsg信息
  1543. // swagger:model BatchMsgInfo
  1544. type BatchMsgInfo struct {
  1545. BaseIDInfo
  1546. // 状态 0 未开始 1 开始发送 2 发送完成 3 发送中止
  1547. Status *uint8 `json:"status,optional"`
  1548. // 批次号
  1549. BatchNo *string `json:"batchNo,optional"`
  1550. // 任务名称
  1551. TaskName *string `json:"taskName,optional"`
  1552. // 发送方微信ID
  1553. Fromwxid *string `json:"fromwxid,optional"`
  1554. // 内容
  1555. Msg *string `json:"msg,optional"`
  1556. // 发送规则 all 全部 tag1,tag2 按tag发送
  1557. Tag *string `json:"tag,optional"`
  1558. // 总数
  1559. Total *int32 `json:"total,optional"`
  1560. // 成功数量
  1561. Success *int32 `json:"success,optional"`
  1562. // 失败数量
  1563. Fail *int32 `json:"fail,optional"`
  1564. // 开始时间
  1565. StartTime *int64 `json:"startTime,optional"`
  1566. StartTimeStr *string `json:"startTimeStr,optional"`
  1567. // 结束时间
  1568. StopTime *int64 `json:"stopTime,optional"`
  1569. // 发送时间
  1570. SendTime *int64 `json:"sendTime,optional"`
  1571. // 标签列表
  1572. Labels []uint64 `json:"labels,optional"`
  1573. GroupLabels []uint64 `json:"groupLabels,optional"`
  1574. // 标签列表
  1575. Type *int32 `json:"type,optional"`
  1576. }
  1577. // The response data of batch msg list | BatchMsg列表数据
  1578. // swagger:model BatchMsgListResp
  1579. type BatchMsgListResp struct {
  1580. BaseDataInfo
  1581. // BatchMsg list data | BatchMsg列表数据
  1582. Data BatchMsgListInfo `json:"data"`
  1583. }
  1584. // BatchMsg list data | BatchMsg列表数据
  1585. // swagger:model BatchMsgListInfo
  1586. type BatchMsgListInfo struct {
  1587. BaseListInfo
  1588. // The API list data | BatchMsg列表数据
  1589. Data []BatchMsgInfo `json:"data"`
  1590. }
  1591. // Get batch msg list request params | BatchMsg列表请求参数
  1592. // swagger:model BatchMsgListReq
  1593. type BatchMsgListReq struct {
  1594. PageInfo
  1595. // 批次号
  1596. BatchNo *string `json:"batchNo,optional"`
  1597. // 发送方微信ID
  1598. Fromwxid *string `json:"fromwxid,optional"`
  1599. // 内容
  1600. Msg *string `json:"msg,optional"`
  1601. // 任务名称
  1602. TaskName *string `json:"taskName,optional"`
  1603. // 群发类型
  1604. Type *int32 `json:"type"`
  1605. }
  1606. // BatchMsg information response | BatchMsg信息返回体
  1607. // swagger:model BatchMsgInfoResp
  1608. type BatchMsgInfoResp struct {
  1609. BaseDataInfo
  1610. // BatchMsg information | BatchMsg数据
  1611. Data BatchMsgInfo `json:"data"`
  1612. }
  1613. // The data of msg information | Msg信息
  1614. // swagger:model MsgInfo
  1615. type MsgInfo struct {
  1616. BaseIDInfo
  1617. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1618. Status *uint8 `json:"status,optional"`
  1619. // 发送方微信ID
  1620. Fromwxid *string `json:"fromwxid,optional"`
  1621. // 接收人微信ID/群ID
  1622. Toid *string `json:"toid,optional"`
  1623. // 消息类型
  1624. Msgtype *int32 `json:"msgtype,optional"`
  1625. // 消息
  1626. Msg *string `json:"msg,optional"`
  1627. // 批次号
  1628. BatchNo *string `json:"batchNo,optional"`
  1629. }
  1630. // The response data of msg list | Msg列表数据
  1631. // swagger:model MsgListResp
  1632. type MsgListResp struct {
  1633. BaseDataInfo
  1634. // Msg list data | Msg列表数据
  1635. Data MsgListInfo `json:"data"`
  1636. }
  1637. // Msg list data | Msg列表数据
  1638. // swagger:model MsgListInfo
  1639. type MsgListInfo struct {
  1640. BaseListInfo
  1641. // The API list data | Msg列表数据
  1642. Data []MsgInfo `json:"data"`
  1643. }
  1644. // Get msg list request params | Msg列表请求参数
  1645. // swagger:model MsgListReq
  1646. type MsgListReq struct {
  1647. PageInfo
  1648. // 状态
  1649. Status *uint8 `json:"status,optional"`
  1650. // 接收人微信ID/群ID
  1651. Toid *string `json:"toid,optional"`
  1652. // 群发消息ID
  1653. BatchId *uint64 `json:"batchId"`
  1654. }
  1655. // Msg information response | Msg信息返回体
  1656. // swagger:model MsgInfoResp
  1657. type MsgInfoResp struct {
  1658. BaseDataInfo
  1659. // Msg information | Msg数据
  1660. Data MsgInfo `json:"data"`
  1661. }
  1662. // The data of employee information | Employee信息
  1663. // swagger:model EmployeeInfo
  1664. type EmployeeInfo struct {
  1665. BaseIDInfo
  1666. // title | 标题
  1667. Title *string `json:"title,optional"`
  1668. // avatar | 头像
  1669. Avatar *string `json:"avatar,optional"`
  1670. // tags | 个人标签
  1671. Tags *string `json:"tags,optional"`
  1672. // hire_count | 被雇佣次数
  1673. HireCount *int `json:"hireCount,optional"`
  1674. // service_count | 已服务次数
  1675. ServiceCount *int `json:"serviceCount,optional"`
  1676. // achievement_count | 业绩单数
  1677. AchievementCount *int `json:"achievementCount,optional"`
  1678. // category_id | 分类ID
  1679. CategoryId *uint64 `json:"categoryId,optional"`
  1680. // intro | 个人介绍
  1681. Intro *string `json:"intro,optional"`
  1682. // estimate | 自我评价
  1683. Estimate *string `json:"estimate,optional"`
  1684. // skill | 技能卡
  1685. Skill *string `json:"skill,optional"`
  1686. // ability_type | 能力类型
  1687. AbilityType *string `json:"abilityType,optional"`
  1688. // scene | 使用场景
  1689. Scene *string `json:"scene,optional"`
  1690. SceneList []EmployeeConfigInfo `json:"sceneList,optional"`
  1691. // switch_in | 支持介入
  1692. SwitchIn *string `json:"switchIn,optional"`
  1693. SwitchInList []EmployeeConfigInfo `json:"switchInList,optional"`
  1694. Tutorial []TutorialInfo `json:"tutorial,optional"`
  1695. // video_url | 视频地址
  1696. VideoUrl *string `json:"videoUrl,optional"`
  1697. // work_experience | 工作经验
  1698. WorkExperience []WorkExperienceInfo `json:"workExperience,optional"`
  1699. ApiBase *string `json:"apiBase,optional"`
  1700. ApiKey *string `json:"apiKey,optional"`
  1701. // AI信息
  1702. AiInfo *string `json:"aiInfo,optional"`
  1703. ShowChat *bool `json:"showChat,optional"`
  1704. IsVip *bool `json:"isVip,optional"`
  1705. }
  1706. // The response data of employee list | Employee列表数据
  1707. // swagger:model EmployeeListResp
  1708. type EmployeeListResp struct {
  1709. BaseDataInfo
  1710. // Employee list data | Employee列表数据
  1711. Data EmployeeListInfo `json:"data"`
  1712. }
  1713. // Employee list data | Employee列表数据
  1714. // swagger:model EmployeeListInfo
  1715. type EmployeeListInfo struct {
  1716. BaseListInfo
  1717. // The API list data | Employee列表数据
  1718. Data []EmployeeInfo `json:"data"`
  1719. }
  1720. // Get employee list request params | Employee列表请求参数
  1721. // swagger:model EmployeeListReq
  1722. type EmployeeListReq struct {
  1723. PageInfo
  1724. // title | 标题
  1725. Title *string `json:"title,optional"`
  1726. // tags | 个人标签
  1727. Tags *string `json:"tags,optional"`
  1728. // category_id | 分类ID
  1729. CategoryId *uint64 `json:"categoryId,optional"`
  1730. }
  1731. // Employee information response | Employee信息返回体
  1732. // swagger:model EmployeeInfoResp
  1733. type EmployeeInfoResp struct {
  1734. BaseDataInfo
  1735. // Employee information | Employee数据
  1736. Data EmployeeInfo `json:"data"`
  1737. }
  1738. // swagger:model AuthReq
  1739. type AuthReq struct {
  1740. Token *string `json:"token,optional"`
  1741. Data uint64 `json:"data,optional"`
  1742. }
  1743. // swagger:model AuthResp
  1744. type AuthResp struct {
  1745. Token *string `json:"token,optional"`
  1746. Data *uint64 `json:"data,optional"`
  1747. Original interface{} `json:"original,optional"`
  1748. OK interface{} `json:"ok,optional"`
  1749. SecretKey string `json:"secretKey,optional"`
  1750. }
  1751. // The data of work experience information | WorkExperience信息
  1752. // swagger:model WorkExperienceInfo
  1753. type WorkExperienceInfo struct {
  1754. BaseIDInfo
  1755. // employee_id | 员工ID
  1756. EmployeeId *uint64 `json:"employeeId,optional"`
  1757. // start_date | 开始时间
  1758. StartDate *int64 `json:"startDate,optional"`
  1759. StartDateStr *string `json:"startDateStr,optional"`
  1760. // end_date | 结束时间
  1761. EndDate *int64 `json:"endDate,optional"`
  1762. EndDateStr *string `json:"endDateStr,optional"`
  1763. // company | 公司名
  1764. Company *string `json:"company,optional"`
  1765. // experience | 工作内容
  1766. Experience *string `json:"experience,optional"`
  1767. }
  1768. // The response data of work experience list | WorkExperience列表数据
  1769. // swagger:model WorkExperienceListResp
  1770. type WorkExperienceListResp struct {
  1771. BaseDataInfo
  1772. // WorkExperience list data | WorkExperience列表数据
  1773. Data WorkExperienceListInfo `json:"data"`
  1774. }
  1775. // WorkExperience list data | WorkExperience列表数据
  1776. // swagger:model WorkExperienceListInfo
  1777. type WorkExperienceListInfo struct {
  1778. BaseListInfo
  1779. // The API list data | WorkExperience列表数据
  1780. Data []WorkExperienceInfo `json:"data"`
  1781. }
  1782. // Get work experience list request params | WorkExperience列表请求参数
  1783. // swagger:model WorkExperienceListReq
  1784. type WorkExperienceListReq struct {
  1785. PageInfo
  1786. // company | 公司名
  1787. Company *string `json:"company,optional"`
  1788. }
  1789. // WorkExperience information response | WorkExperience信息返回体
  1790. // swagger:model WorkExperienceInfoResp
  1791. type WorkExperienceInfoResp struct {
  1792. BaseDataInfo
  1793. // WorkExperience information | WorkExperience数据
  1794. Data WorkExperienceInfo `json:"data"`
  1795. }
  1796. // The data of tutorial information | Tutorial信息
  1797. // swagger:model TutorialInfo
  1798. type TutorialInfo struct {
  1799. BaseIDInfo
  1800. // employee_id | 员工ID
  1801. EmployeeId *uint64 `json:"employeeId,optional"`
  1802. // index | 序号
  1803. Index *int `json:"index,optional"`
  1804. // title | 标题
  1805. Title *string `json:"title,optional"`
  1806. // content | 内容
  1807. Content *string `json:"content,optional"`
  1808. }
  1809. // The response data of tutorial list | Tutorial列表数据
  1810. // swagger:model TutorialListResp
  1811. type TutorialListResp struct {
  1812. BaseDataInfo
  1813. // Tutorial list data | Tutorial列表数据
  1814. Data TutorialListInfo `json:"data"`
  1815. }
  1816. // Tutorial list data | Tutorial列表数据
  1817. // swagger:model TutorialListInfo
  1818. type TutorialListInfo struct {
  1819. BaseListInfo
  1820. // The API list data | Tutorial列表数据
  1821. Data []TutorialInfo `json:"data"`
  1822. }
  1823. // Get tutorial list request params | Tutorial列表请求参数
  1824. // swagger:model TutorialListReq
  1825. type TutorialListReq struct {
  1826. PageInfo
  1827. // title | 标题
  1828. Title *string `json:"title,optional"`
  1829. // content | 内容
  1830. Content *string `json:"content,optional"`
  1831. }
  1832. // Tutorial information response | Tutorial信息返回体
  1833. // swagger:model TutorialInfoResp
  1834. type TutorialInfoResp struct {
  1835. BaseDataInfo
  1836. // Tutorial information | Tutorial数据
  1837. Data TutorialInfo `json:"data"`
  1838. }
  1839. // The data of employee config information | EmployeeConfig信息
  1840. // swagger:model EmployeeConfigInfo
  1841. type EmployeeConfigInfo struct {
  1842. BaseIDInfo
  1843. // 类型:scene-场景 switch_in-接入方式
  1844. Stype *string `json:"stype,optional"`
  1845. // 标题
  1846. Title *string `json:"title,optional"`
  1847. // 图片地址
  1848. Photo *string `json:"photo,optional"`
  1849. }
  1850. // EmployeeConfig list data | EmployeeConfig列表数据
  1851. // swagger:model EmployeeConfigListInfo
  1852. type EmployeeConfigListInfo struct {
  1853. BaseListInfo
  1854. // The API list data | EmployeeConfig列表数据
  1855. Data []EmployeeConfigInfo `json:"data"`
  1856. }
  1857. // Employee config response | Employee配置信息返回体
  1858. // swagger:model EmployeeConfigListReq
  1859. type EmployeeConfigListReq struct {
  1860. /// 类型:scene-场景 switch_in-接入方式
  1861. Stype *string `json:"stype,optional"`
  1862. }
  1863. // EmployeeConfig information response | EmployeeConfig信息返回体
  1864. type EmployeeConfig struct {
  1865. Scene []EmployeeConfigInfo `json:"scene"`
  1866. SwitchIn []EmployeeConfigInfo `json:"switchIn"`
  1867. }
  1868. // Employee config response | Employee配置信息返回体
  1869. // swagger:model EmployeeConfigListResp
  1870. type EmployeeConfigListResp struct {
  1871. BaseDataInfo
  1872. // Employee information | Employee数据
  1873. Data EmployeeConfig `json:"data"`
  1874. }
  1875. // The data of token information | Token信息
  1876. // swagger:model TokenInfo
  1877. type TokenInfo struct {
  1878. BaseIDInfo
  1879. // 过期时间
  1880. ExpireAt *int64 `json:"expireAt,optional"`
  1881. ExpireAtStr *string `json:"expireAtStr,optional"`
  1882. // Token
  1883. Token *string `json:"token,optional"`
  1884. // Mac地址
  1885. Mac *string `json:"mac,optional"`
  1886. // 租户ID
  1887. OrganizationId *uint64 `json:"organization_id,optional"`
  1888. OrganizationName *string `json:"organizationName,optional"`
  1889. AgentId *uint64 `json:"agent_id,optional"`
  1890. AgentInfo *AgentInfo `json:"agent_info,optional"`
  1891. CustomAgentBase *string `json:"custom_agent_base,optional"`
  1892. CustomAgentKey *string `json:"custom_agent_key,optional"`
  1893. OpenaiBase *string `json:"openai_base,optional"`
  1894. OpenaiKey *string `json:"openai_key,optional"`
  1895. }
  1896. // The response data of token list | Token列表数据
  1897. // swagger:model TokenListResp
  1898. type TokenListResp struct {
  1899. BaseDataInfo
  1900. // Token list data | Token列表数据
  1901. Data TokenListInfo `json:"data"`
  1902. }
  1903. // Token list data | Token列表数据
  1904. // swagger:model TokenListInfo
  1905. type TokenListInfo struct {
  1906. BaseListInfo
  1907. // The API list data | Token列表数据
  1908. Data []TokenInfo `json:"data"`
  1909. }
  1910. // Get token list request params | Token列表请求参数
  1911. // swagger:model TokenListReq
  1912. type TokenListReq struct {
  1913. PageInfo
  1914. // Token
  1915. Token *string `json:"token,optional"`
  1916. // Mac地址
  1917. Mac *string `json:"mac,optional"`
  1918. OrganizationId *uint64 `json:"organization_id,optional"`
  1919. OrganizationName *string `json:"organizationName,optional"`
  1920. }
  1921. // Token information response | Token信息返回体
  1922. // swagger:model TokenInfoResp
  1923. type TokenInfoResp struct {
  1924. BaseDataInfo
  1925. // Token information | Token数据
  1926. Data TokenInfo `json:"data"`
  1927. }
  1928. // swagger:model CheckTokenReq
  1929. type CheckTokenReq struct {
  1930. // Token
  1931. Token *string `json:"token"`
  1932. // Mac地址
  1933. Mac *string `json:"mac"`
  1934. }
  1935. // swagger:model CheckTokenResp
  1936. type CheckTokenResp struct {
  1937. // 是否合法
  1938. Valid *bool `json:"valid"`
  1939. // Sign 签名内容
  1940. Sign *string `json:"sign"`
  1941. // Timestamp 时间戳
  1942. Timestamp *int64 `json:"timestamp"`
  1943. AgentInfo *AgentInfo `json:"agent_info"`
  1944. CustomAgentBase *string `json:"custom_agent_base"`
  1945. CustomAgentKey *string `json:"custom_agent_key"`
  1946. OpenaiBase *string `json:"openai_base"`
  1947. OpenaiKey *string `json:"openai_key"`
  1948. DatasetBase *string `json:"dataset_base"`
  1949. DatasetKey *string `json:"dataset_key"`
  1950. }
  1951. // The data of category information | Category信息
  1952. // swagger:model CategoryInfo
  1953. type CategoryInfo struct {
  1954. BaseIDInfo
  1955. // name | 角色名称
  1956. Name *string `json:"name,optional"`
  1957. // organization_id | 租户ID
  1958. OrganizationId *uint64 `json:"organizationId,optional"`
  1959. }
  1960. // The response data of category list | Category列表数据
  1961. // swagger:model CategoryListResp
  1962. type CategoryListResp struct {
  1963. BaseDataInfo
  1964. // Category list data | Category列表数据
  1965. Data CategoryListInfo `json:"data"`
  1966. }
  1967. // Category list data | Category列表数据
  1968. // swagger:model CategoryListInfo
  1969. type CategoryListInfo struct {
  1970. BaseListInfo
  1971. // The API list data | Category列表数据
  1972. Data []CategoryInfo `json:"data"`
  1973. }
  1974. // Get category list request params | Category列表请求参数
  1975. // swagger:model CategoryListReq
  1976. type CategoryListReq struct {
  1977. PageInfo
  1978. // name | 角色名称
  1979. Name *string `json:"name,optional"`
  1980. }
  1981. // Category information response | Category信息返回体
  1982. // swagger:model CategoryInfoResp
  1983. type CategoryInfoResp struct {
  1984. BaseDataInfo
  1985. // Category information | Category数据
  1986. Data CategoryInfo `json:"data"`
  1987. }
  1988. // The data of agent base information | AgentBase信息
  1989. // swagger:model AgentBaseInfo
  1990. type AgentBaseInfo struct {
  1991. Id *string `json:"id,optional"`
  1992. }
  1993. // The response data of agent base list | AgentBase列表数据
  1994. // swagger:model AgentBaseListResp
  1995. type AgentBaseListResp struct {
  1996. BaseDataInfo
  1997. // AgentBase list data | AgentBase列表数据
  1998. Data AgentBaseListInfo `json:"data"`
  1999. }
  2000. // AgentBase list data | AgentBase列表数据
  2001. // swagger:model AgentBaseListInfo
  2002. type AgentBaseListInfo struct {
  2003. BaseListInfo
  2004. // The API list data | AgentBase列表数据
  2005. Data []AgentBaseInfo `json:"data"`
  2006. }
  2007. // Get agent base list request params | AgentBase列表请求参数
  2008. // swagger:model AgentBaseListReq
  2009. type AgentBaseListReq struct {
  2010. PageInfo
  2011. // q
  2012. Q *string `json:"q,optional"`
  2013. // a
  2014. A *string `json:"a,optional"`
  2015. // dataset_id
  2016. DatasetId *string `json:"datasetId,optional"`
  2017. }
  2018. // AgentBase information response | AgentBase信息返回体
  2019. // swagger:model AgentBaseInfoResp
  2020. type AgentBaseInfoResp struct {
  2021. BaseDataInfo
  2022. // AgentBase information | AgentBase数据
  2023. Data AgentBaseInfo `json:"data"`
  2024. }
  2025. // The data of chat records information | ChatRecords信息
  2026. // swagger:model ChatRecordsInfo
  2027. type ChatRecordsInfo struct {
  2028. BaseIDInfo
  2029. // 内容
  2030. Content *string `json:"content,optional"`
  2031. // 内容类型:1-提问 2-回答
  2032. ContentType *uint8 `json:"contentType,optional"`
  2033. // 会话ID
  2034. SessionId *uint64 `json:"sessionId,optional"`
  2035. // 用户ID
  2036. UserId *uint64 `json:"userId,optional"`
  2037. // 聊天ID
  2038. BotId *uint64 `json:"botId,optional"`
  2039. // 类型:1-微信 2-小程序card 3-智能体
  2040. BotType *uint8 `json:"botType,optional,options=1|2|3"`
  2041. Finish bool `json:"finish,optional"`
  2042. }
  2043. // The response data of chat records list | ChatRecords列表数据
  2044. // swagger:model ChatRecordsListResp
  2045. type ChatRecordsListResp struct {
  2046. BaseDataInfo
  2047. // ChatRecords list data | ChatRecords列表数据
  2048. Data ChatRecordsListInfo `json:"data"`
  2049. }
  2050. // ChatRecords list data | ChatRecords列表数据
  2051. // swagger:model ChatRecordsListInfo
  2052. type ChatRecordsListInfo struct {
  2053. BaseListInfo
  2054. // The API list data | ChatRecords列表数据
  2055. Data []ChatRecordsInfo `json:"data"`
  2056. }
  2057. // Get chat records list request params | ChatRecords列表请求参数
  2058. // swagger:model ChatRecordsListReq
  2059. type ChatRecordsListReq struct {
  2060. PageInfo
  2061. SessionId *uint64 `json:"sessionId"`
  2062. BotId *uint64 `json:"botId,optional"`
  2063. BotType *uint8 `json:"botType,optional"`
  2064. }
  2065. // ChatRecords information response | ChatRecords信息返回体
  2066. // swagger:model ChatRecordsInfoResp
  2067. type ChatRecordsInfoResp struct {
  2068. BaseDataInfo
  2069. // ChatRecords information | ChatRecords数据
  2070. Data ChatRecordsInfo `json:"data"`
  2071. }
  2072. // swagger:model ChatRecommendReq
  2073. type ChatRecommendReq struct {
  2074. SessionId *uint64 `json:"sessionId"`
  2075. }
  2076. // swagger:model ChatRecommendResp
  2077. type ChatRecommendResp struct {
  2078. BaseDataInfo
  2079. // The API list data | ChatRecords列表数据
  2080. Data ChatRecommend `json:"data"`
  2081. }
  2082. type ChatRecommend struct {
  2083. Data []string `json:"data"`
  2084. SessionId uint64 `json:"sessionId"`
  2085. }
  2086. // swagger:model ChatAskReq
  2087. type ChatAskReq struct {
  2088. CardId *uint64 `json:"cardId"`
  2089. Question *string `json:"question"`
  2090. SessionId *int `json:"sessionId"`
  2091. }
  2092. // swagger:model ChatAskResp
  2093. type ChatAskResp struct {
  2094. BaseDataInfo
  2095. Data *string `json:"data"`
  2096. }
  2097. // The data of chat session information | ChatSession信息
  2098. // swagger:model ChatSessionInfo
  2099. type ChatSessionInfo struct {
  2100. BaseIDInfo
  2101. // 名称
  2102. Name *string `json:"name,optional"`
  2103. // 用户ID
  2104. UserId *uint64 `json:"userId,optional"`
  2105. // 聊天ID
  2106. BotId *uint64 `json:"botId,optional"`
  2107. // 类型:1-微信 2-小程序card 3-智能体
  2108. BotType *uint8 `json:"botType,optional"`
  2109. }
  2110. // The response data of chat session list | ChatSession列表数据
  2111. // swagger:model ChatSessionListResp
  2112. type ChatSessionListResp struct {
  2113. BaseDataInfo
  2114. // ChatSession list data | ChatSession列表数据
  2115. Data ChatSessionListInfo `json:"data"`
  2116. }
  2117. // ChatSession list data | ChatSession列表数据
  2118. // swagger:model ChatSessionListInfo
  2119. type ChatSessionListInfo struct {
  2120. BaseListInfo
  2121. // The API list data | ChatSession列表数据
  2122. Data []ChatSessionInfo `json:"data"`
  2123. }
  2124. // Get chat session list request params | ChatSession列表请求参数
  2125. // swagger:model ChatSessionListReq
  2126. type ChatSessionListReq struct {
  2127. PageInfo
  2128. BotId *uint64 `json:"botId,optional"`
  2129. BotType *uint8 `json:"botType,optional"`
  2130. BotName *string `json:"botName,optional"`
  2131. }
  2132. // ChatSession information response | ChatSession信息返回体
  2133. // swagger:model ChatSessionInfoResp
  2134. type ChatSessionInfoResp struct {
  2135. BaseDataInfo
  2136. // ChatSession information | ChatSession数据
  2137. Data ChatSessionInfo `json:"data"`
  2138. }
  2139. // The data of wx card information | WxCard信息
  2140. // swagger:model WxCardInfo
  2141. type WxCardInfo struct {
  2142. BaseIDInfo
  2143. // user表ID
  2144. UserId *uint64 `json:"userId,optional"`
  2145. // wx表ID
  2146. WxUserId *uint64 `json:"wxUserId,optional"`
  2147. // 头像
  2148. Avatar *string `json:"avatar,optional"`
  2149. // logo
  2150. Logo *string `json:"logo,optional"`
  2151. // 名称
  2152. Name *string `json:"name,optional"`
  2153. // 公司
  2154. Company *string `json:"company,optional"`
  2155. // 地址
  2156. Address *string `json:"address,optional"`
  2157. // 手机号
  2158. Phone *string `json:"phone,optional"`
  2159. // 公众号
  2160. OfficialAccount *string `json:"officialAccount,optional"`
  2161. // 微信号
  2162. WechatAccount *string `json:"wechatAccount,optional"`
  2163. // 邮箱
  2164. Email *string `json:"email,optional"`
  2165. // 聊天信息
  2166. ApiBase *string `json:"apiBase,optional"`
  2167. ApiKey *string `json:"apiKey,optional"`
  2168. // AI信息
  2169. AiInfo *string `json:"aiInfo,optional"`
  2170. // 个人介绍
  2171. Intro *string `json:"intro,optional"`
  2172. ShowChat *bool `json:"showChat,optioal"`
  2173. ShowAi *bool `json:"showAi,optional"`
  2174. IsVip *bool `json:"isVip,optional"`
  2175. }
  2176. // swagger:model WxCardSimpleInfo
  2177. type WxCardSimpleInfo struct {
  2178. ID *uint64 `json:"id,optional"`
  2179. // 头像
  2180. Avatar *string `json:"avatar,optional"`
  2181. // 名称
  2182. Name *string `json:"name,optional"`
  2183. }
  2184. // The response data of wx card list | WxCard列表数据
  2185. // swagger:model WxCardListResp
  2186. type WxCardListResp struct {
  2187. BaseDataInfo
  2188. // WxCard list data | WxCard列表数据
  2189. Data WxCardListInfo `json:"data"`
  2190. }
  2191. // WxCard list data | WxCard列表数据
  2192. // swagger:model WxCardListInfo
  2193. type WxCardListInfo struct {
  2194. BaseListInfo
  2195. // The API list data | WxCard列表数据
  2196. Data []WxCardInfo `json:"data"`
  2197. }
  2198. // Get wx card list request params | WxCard列表请求参数
  2199. // swagger:model WxCardListReq
  2200. type WxCardListReq struct {
  2201. PageInfo
  2202. // 头像
  2203. Avatar *string `json:"avatar,optional"`
  2204. // logo
  2205. Logo *string `json:"logo,optional"`
  2206. // 名称
  2207. Name *string `json:"name,optional"`
  2208. }
  2209. // WxCard information response | WxCard信息返回体
  2210. // swagger:model WxCardInfoResp
  2211. type WxCardInfoResp struct {
  2212. BaseDataInfo
  2213. // WxCard information | WxCard数据
  2214. Data WxCardInfo `json:"data"`
  2215. }
  2216. // swagger:model QrcodeReq
  2217. type QrcodeReq struct {
  2218. Path string `form:"path"`
  2219. Width int64 `form:"width"`
  2220. EnvVersion string `form:"envVersion"`
  2221. }
  2222. // The data of wx card user information | WxCardUser信息
  2223. // swagger:model WxCardUserInfo
  2224. type WxCardUserInfo struct {
  2225. BaseIDInfo
  2226. // 微信id
  2227. Wxid *string `json:"wxid,optional"`
  2228. // 微信号
  2229. Account *string `json:"account,optional"`
  2230. // 头像
  2231. Avatar *string `json:"avatar,optional"`
  2232. // 昵称
  2233. Nickname *string `json:"nickname,optional"`
  2234. // 备注名
  2235. Remark *string `json:"remark,optional"`
  2236. // 手机号
  2237. Phone *string `json:"phone,optional"`
  2238. // OpenID
  2239. OpenId *string `json:"openId,optional"`
  2240. // UnionID
  2241. UnionId *string `json:"unionId,optional"`
  2242. // SessionKey
  2243. SessionKey *string `json:"sessionKey,optional"`
  2244. // IsVip
  2245. IsVip *string `json:"isVip,optional"`
  2246. }
  2247. // The response data of wx card user list | WxCardUser列表数据
  2248. // swagger:model WxCardUserListResp
  2249. type WxCardUserListResp struct {
  2250. BaseDataInfo
  2251. // WxCardUser list data | WxCardUser列表数据
  2252. Data WxCardUserListInfo `json:"data"`
  2253. }
  2254. // WxCardUser list data | WxCardUser列表数据
  2255. // swagger:model WxCardUserListInfo
  2256. type WxCardUserListInfo struct {
  2257. BaseListInfo
  2258. // The API list data | WxCardUser列表数据
  2259. Data []WxCardUserInfo `json:"data"`
  2260. }
  2261. // Get wx card user list request params | WxCardUser列表请求参数
  2262. // swagger:model WxCardUserListReq
  2263. type WxCardUserListReq struct {
  2264. PageInfo
  2265. // 微信id
  2266. Wxid *string `json:"wxid,optional"`
  2267. // 微信号
  2268. Account *string `json:"account,optional"`
  2269. // 头像
  2270. Avatar *string `json:"avatar,optional"`
  2271. }
  2272. // WxCardUser information response | WxCardUser信息返回体
  2273. // swagger:model WxCardUserInfoResp
  2274. type WxCardUserInfoResp struct {
  2275. BaseDataInfo
  2276. // WxCardUser information | WxCardUser数据
  2277. Data WxCardUserInfo `json:"data"`
  2278. }
  2279. // The data of wx card visit information | WxCardVisit信息
  2280. // swagger:model WxCardVisitInfo
  2281. type WxCardVisitInfo struct {
  2282. BaseIDInfo
  2283. // user表ID
  2284. UserId *uint64 `json:"userId,optional"`
  2285. // 被访ID
  2286. BotId *uint64 `json:"botId,optional"`
  2287. // 类型:1-微信 2-小程序 3-智能体
  2288. BotType *uint8 `json:"botType,optional"`
  2289. CardInfo WxCardSimpleInfo `json:"cardInfo,optional,omitempty"`
  2290. }
  2291. // swagger:model WxCardVisitReq
  2292. type WxCardVisitReq struct {
  2293. BaseIDInfo
  2294. // user表ID
  2295. UserId *uint64 `json:"userId,optional"`
  2296. // 被访ID
  2297. BotId *uint64 `json:"botId,optional"`
  2298. // 类型:1-微信 2-小程序 3-智能体
  2299. BotType *uint8 `json:"botType,optional"`
  2300. }
  2301. // swagger:model WxCardVisitSingleInfo
  2302. type WxCardVisitSingleInfo struct {
  2303. BaseIDInfo
  2304. // user表ID
  2305. UserId *uint64 `json:"userId,optional"`
  2306. // 被访ID
  2307. BotId *uint64 `json:"botId,optional"`
  2308. // 类型:1-微信 2-小程序 3-智能体
  2309. BotType *uint8 `json:"botType,optional"`
  2310. CardInfo WxCardInfo `json:"cardInfo,optional"`
  2311. }
  2312. // The response data of wx card visit list | WxCardVisit列表数据
  2313. // swagger:model WxCardVisitListResp
  2314. type WxCardVisitListResp struct {
  2315. BaseDataInfo
  2316. // WxCardVisit list data | WxCardVisit列表数据
  2317. Data WxCardVisitListInfo `json:"data"`
  2318. }
  2319. // WxCardVisit list data | WxCardVisit列表数据
  2320. // swagger:model WxCardVisitListInfo
  2321. type WxCardVisitListInfo struct {
  2322. BaseListInfo
  2323. // The API list data | WxCardVisit列表数据
  2324. Data []WxCardVisitInfo `json:"data"`
  2325. }
  2326. // Get wx card visit list request params | WxCardVisit列表请求参数
  2327. // swagger:model WxCardVisitListReq
  2328. type WxCardVisitListReq struct {
  2329. PageInfo
  2330. }
  2331. // WxCardVisit information response | WxCardVisit信息返回体
  2332. // swagger:model WxCardVisitInfoResp
  2333. type WxCardVisitInfoResp struct {
  2334. BaseDataInfo
  2335. // WxCardVisit information | WxCardVisit数据
  2336. Data WxCardVisitInfo `json:"data"`
  2337. }
  2338. // swagger:model AvatarInfo
  2339. type AvatarInfo struct {
  2340. RequestId *string `json:"requestId"`
  2341. SessionId *string `json:"SessionId"`
  2342. Token *string `json:"token"`
  2343. Channel Channel `json:"channel"`
  2344. }
  2345. type Channel struct {
  2346. ChannelId *string `json:"channelId"`
  2347. Token *string `json:"token"`
  2348. Type *string `json:"type"`
  2349. ExpiredTime *string `json:"expiredTime"`
  2350. Nonce *string `json:"nonce"`
  2351. UserId *string `json:"userId"`
  2352. AppId *string `json:"appId"`
  2353. UserInfoInChannel *string `json:"userInfoInChannel"`
  2354. Gslb []*string `json:"gslb"`
  2355. }
  2356. // start avatar request | 启动数字人
  2357. // swagger:model AvatarConfigReq
  2358. type AvatarConfigReq struct {
  2359. // 名片 ID
  2360. CardId *uint64 `json:"card_id,optional"`
  2361. }
  2362. // start avatar response | 启动数字人
  2363. // swagger:model AvatarConfigResp
  2364. type AvatarConfigResp struct {
  2365. BaseDataInfo
  2366. // Agent information | Agent数据
  2367. Data AvatarInfo `json:"data"`
  2368. Extra Extra `json:"extra"`
  2369. }
  2370. type Extra struct {
  2371. Live int64 `json:"live"`
  2372. Total int64 `json:"total"`
  2373. }
  2374. // swagger:model AvatarStsResp
  2375. type AvatarStsResp struct {
  2376. BaseDataInfo
  2377. // Sts information | Sts 数据
  2378. Data StsInfo `json:"data"`
  2379. }
  2380. // swagger:model StsInfo
  2381. type StsInfo struct {
  2382. Expiration *string `json:"expiration"`
  2383. AccessKeyId *string `json:"accessKeyId"`
  2384. AccessKeySecret *string `json:"accessKeySecret"`
  2385. SecurityToken *string `json:"securityToken"`
  2386. RequestId *string `json:"requestId"`
  2387. }
  2388. // swagger:model AvatarSignatureResp
  2389. type AvatarSignatureResp struct {
  2390. BaseDataInfo
  2391. // Sts information | Sts 数据
  2392. Data SignatureInfo `json:"data"`
  2393. }
  2394. // swagger:model SignatureInfo
  2395. type SignatureInfo struct {
  2396. Key *string `json:"key"`
  2397. OSSAccessKeyId *string `json:"OSSAccessKeyId"`
  2398. Policy *string `json:"policy"`
  2399. Signature *string `json:"signature"`
  2400. }
  2401. // send text | 数字人-发送消息
  2402. // swagger:model SendTextReq
  2403. type SendTextReq struct {
  2404. CardId *uint64 `json:"cardId"`
  2405. SessionId *string `json:"sessionId"`
  2406. Text *string `json:"text"`
  2407. IsStream *bool `json:"isStream,optional"`
  2408. Index *int32 `json:"index,optional"`
  2409. Position *string `json:"position,optional"`
  2410. }
  2411. // swagger:model SendTextResp
  2412. type SendTextResp struct {
  2413. BaseDataInfo
  2414. Data SendText `json:"data"`
  2415. }
  2416. type SendText struct {
  2417. SessionId *string `json:"sessionId"`
  2418. UniqueCode *string `json:"uniqueCode"`
  2419. }
  2420. // stop instance | 数字人-停止实例
  2421. // swagger:model StopInstanceReq
  2422. type StopInstanceReq struct {
  2423. CardId *uint64 `json:"cardId"`
  2424. SessionId *string `json:"sessionId"`
  2425. }
  2426. // swagger:model StopInstanceResp
  2427. type StopInstanceResp struct {
  2428. BaseDataInfo
  2429. Data StopInstance `json:"data"`
  2430. }
  2431. type StopInstance struct {
  2432. SessionId *string `json:"sessionId"`
  2433. RequestId *string `json:"requestId"`
  2434. }
  2435. // The data of aliyun avatar information | AliyunAvatar信息
  2436. // swagger:model AliyunAvatarInfo
  2437. type AliyunAvatarInfo struct {
  2438. BaseIDInfo
  2439. // user_id | wx_card_user_id
  2440. UserId *uint64 `json:"userId,optional"`
  2441. // biz_id | BizId
  2442. BizId *string `json:"bizId,optional"`
  2443. // access_key_id | AccessKeyId
  2444. AccessKeyId *string `json:"accessKeyId,optional"`
  2445. // access_key_secret | AccessKeySecret
  2446. AccessKeySecret *string `json:"accessKeySecret,optional"`
  2447. // app_id | AppId
  2448. AppId *string `json:"appId,optional"`
  2449. // tenant_id | TenantId
  2450. TenantId *uint64 `json:"TenantId,optional"`
  2451. // response | 阿里云avatar响应
  2452. Response *string `json:"response,optional"`
  2453. // token | Token
  2454. Token *string `json:"token,optional"`
  2455. // session_id | SessionId
  2456. SessionId *string `json:"sessionId,optional"`
  2457. }
  2458. // The response data of aliyun avatar list | AliyunAvatar列表数据
  2459. // swagger:model AliyunAvatarListResp
  2460. type AliyunAvatarListResp struct {
  2461. BaseDataInfo
  2462. // AliyunAvatar list data | AliyunAvatar列表数据
  2463. Data AliyunAvatarListInfo `json:"data"`
  2464. }
  2465. // AliyunAvatar list data | AliyunAvatar列表数据
  2466. // swagger:model AliyunAvatarListInfo
  2467. type AliyunAvatarListInfo struct {
  2468. BaseListInfo
  2469. // The API list data | AliyunAvatar列表数据
  2470. Data []AliyunAvatarInfo `json:"data"`
  2471. }
  2472. // Get aliyun avatar list request params | AliyunAvatar列表请求参数
  2473. // swagger:model AliyunAvatarListReq
  2474. type AliyunAvatarListReq struct {
  2475. PageInfo
  2476. // biz_id | BizId
  2477. BizId *string `json:"bizId,optional"`
  2478. // access_key_id | AccessKeyId
  2479. AccessKeyId *string `json:"accessKeyId,optional"`
  2480. // access_key_secret | AccessKeySecret
  2481. AccessKeySecret *string `json:"accessKeySecret,optional"`
  2482. }
  2483. // AliyunAvatar information response | AliyunAvatar信息返回体
  2484. // swagger:model AliyunAvatarInfoResp
  2485. type AliyunAvatarInfoResp struct {
  2486. BaseDataInfo
  2487. // AliyunAvatar information | AliyunAvatar数据
  2488. Data AliyunAvatarInfo `json:"data"`
  2489. }