types.go 127 KB

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