types.go 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659
  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. CustomFields []ContactFieldTemplate `json:"customFields,optional"`
  758. }
  759. // The response data of label information | Label信息
  760. // swagger:model LabelInfo
  761. type LabelInfo struct {
  762. BaseIDInfo
  763. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  764. Status *uint8 `json:"status,optional"`
  765. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  766. Type *int `json:"type,optional"`
  767. // 标签名称
  768. Name *string `json:"name,optional"`
  769. // 标签来源:1后台创建 2个微同步
  770. From *int `json:"from,optional"`
  771. // 标签模式:1动态 2静态
  772. Mode *int `json:"mode,optional"`
  773. // 标签的触达条件
  774. Conditions *string `json:"conditions,optional"`
  775. // 组织ID
  776. OrganizationId *uint64 `json:"organizationId,optional"`
  777. // Label Relationships | 标签关系
  778. LabelRelationships []LabelRelationshipInfo `json:"labelRelationships,optional"`
  779. }
  780. // The response data of label relationship information | LabelRelationship信息
  781. // swagger:model LabelRelationshipInfo
  782. type LabelRelationshipInfo struct {
  783. BaseIDInfo
  784. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  785. Status *uint8 `json:"status,optional"`
  786. // 标签 ID
  787. LabelId *uint64 `json:"labelId,optional"`
  788. // 联系人 ID
  789. ContactId *uint64 `json:"contactId,optional"`
  790. // Contact information | 联系人信息
  791. Contact ContactInfo `json:"contact,optional"`
  792. // Label information | 标签信息
  793. Label LabelInfo `json:"label,optional"`
  794. // 组织ID
  795. OrganizationId *uint64 `json:"organizationId,optional"`
  796. }
  797. // The response data of label relationship information | LabelRelationship信息
  798. // swagger:model LabelRelationshipsInfo
  799. type LabelRelationshipsInfo struct {
  800. BaseIDInfo
  801. // 更新类型:为空或“all”时表示全量更新,为 “add” 时表示仅追加
  802. UpdateType *string `json:"updateType,optional"`
  803. // 标签 ID
  804. LabelIds []uint64 `json:"labelIds,optional"`
  805. // 联系人 ID
  806. ContactId *uint64 `json:"contactId,optional"`
  807. }
  808. // swagger:model BatchLabelRelationshipsInfo
  809. type BatchLabelRelationshipsInfo struct {
  810. // 更新类型:为1 时表示增加标签,为 -1 时表示移除标签
  811. UpdateType int `json:"updateType,optional"`
  812. // 标签 ID
  813. LabelIds []uint64 `json:"labelIds,optional"`
  814. // 联系人 ID
  815. ContactIds []uint64 `json:"contactIds,optional"`
  816. }
  817. // The response data of label relationship list | LabelRelationship列表数据
  818. // swagger:model LabelRelationshipListResp
  819. type LabelRelationshipListResp struct {
  820. BaseDataInfo
  821. // LabelRelationship list data | LabelRelationship列表数据
  822. Data LabelRelationshipListInfo `json:"data"`
  823. }
  824. // LabelRelationship list data | LabelRelationship列表数据
  825. // swagger:model LabelRelationshipListInfo
  826. type LabelRelationshipListInfo struct {
  827. BaseListInfo
  828. // The API list data | LabelRelationship列表数据
  829. Data []LabelRelationshipInfo `json:"data"`
  830. }
  831. // Get label relationship list request params | LabelRelationship列表请求参数
  832. // swagger:model LabelRelationshipListReq
  833. type LabelRelationshipListReq struct {
  834. PageInfo
  835. }
  836. // LabelRelationship information response | LabelRelationship信息返回体
  837. // swagger:model LabelRelationshipInfoResp
  838. type LabelRelationshipInfoResp struct {
  839. BaseDataInfo
  840. // LabelRelationship information | LabelRelationship数据
  841. Data LabelRelationshipInfo `json:"data"`
  842. }
  843. type ContactFieldTemplateOptions struct {
  844. Label *string `json:"label,optional"`
  845. Value *string `json:"value,optional"`
  846. }
  847. type ContactFieldTemplate struct {
  848. Type *string `json:"type,optional"`
  849. Id *string `json:"id,optional"`
  850. Label *string `json:"label,optional"`
  851. Options []ContactFieldTemplateOptions `json:"options,optional"`
  852. Value []string `json:"value,optional"`
  853. }
  854. // swagger:model ContactFieldTemplateInfo
  855. type ContactFieldTemplateInfo struct {
  856. BaseIDInfo
  857. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  858. Status *uint8 `json:"status,optional"`
  859. // 组织ID
  860. OrganizationId *uint64 `json:"organizationId,optional"`
  861. Template []ContactFieldTemplate `json:"template,optional"`
  862. }
  863. // Contact information response | Contact信息返回体
  864. // swagger:model ContactFieldTemplateInfoResp
  865. type ContactFieldTemplateInfoResp struct {
  866. BaseDataInfo
  867. // Contact information | Contact数据
  868. Data []ContactFieldTemplate `json:"data"`
  869. }
  870. type LoginQRStatus struct {
  871. // 登陆二维码
  872. QRCode string `json:"qRCode,optional"`
  873. // 登陆二维码状态
  874. Status string `json:"status,optional"`
  875. // 登陆二维码状态描述
  876. StatusDesc string `json:"statusDesc,optional"`
  877. }
  878. // 刷新登陆二维码请求参数
  879. // swagger:model RefreshLoginQRReq
  880. type RefreshLoginQRReq struct {
  881. // 服务器id
  882. ServerId *uint64 `json:"serverId,optional"`
  883. // 端口号
  884. Port *string `json:"port,optional"`
  885. // 回调地址
  886. Callback *string `json:"callback,optional"`
  887. }
  888. // 刷新登陆二维码返回参数
  889. // swagger:model RefreshLoginQRResp
  890. type RefreshLoginQRResp struct {
  891. BaseDataInfo
  892. // 二维码Base64
  893. Data LoginQRStatus `json:"data,optional"`
  894. }
  895. // 发送微信文本消息请求参数
  896. // swagger:model SendTextMsgReq
  897. type SendTextMsgReq struct {
  898. // 属主微信id
  899. WxWxid *string `json:"senderWxId"`
  900. // 微信id 公众号微信ID
  901. Wxid *string `json:"receiverWxId"`
  902. // 微信文本消息内容
  903. Msg *string `json:"msg"`
  904. Ctype *uint64 `json:"ctype,optional"`
  905. }
  906. // 发送微信图片消息请求参数
  907. // swagger:model SendPicMsgReq
  908. type SendPicMsgReq struct {
  909. // 属主微信id
  910. WxWxid *string `json:"wxWxid"`
  911. // 微信id 公众号微信ID
  912. Wxid *string `json:"wxid"`
  913. // 微信图片路径(本地或网络,本地需要上传操作,如:C:\\x.jpg)
  914. Picpath *string `json:"picpath"`
  915. // 微信图片自定义名称(此属性只有网络图片有)
  916. Diyfilename *string `json:"diyfilename,optional"`
  917. }
  918. // 发送微信图片(本地)请求参数
  919. // swagger:model SendPicMsgLocalReq
  920. type SendPicMsgLocalReq struct {
  921. // 属主微信id
  922. WxWxid *string `json:"wxWxid"`
  923. // 微信id 公众号微信ID
  924. Wxid *string `json:"wxid"`
  925. // 微信图片路径(本地或网络,本地需要上传操作,如:C:\\x.jpg)
  926. Picpath *string `json:"picpath"`
  927. }
  928. // The response data of contact list | Contact列表数据
  929. // swagger:model ContactListResp
  930. type ContactListResp struct {
  931. BaseDataInfo
  932. // Contact list data | Contact列表数据
  933. Data ContactListInfo `json:"data"`
  934. }
  935. // Contact list data | Contact列表数据
  936. // swagger:model ContactListInfo
  937. type ContactListInfo struct {
  938. BaseListInfo
  939. // The API list data | Contact列表数据
  940. Data []ContactInfo `json:"data"`
  941. }
  942. // swagger:model ContactSimpleListResp
  943. type ContactSimpleListResp struct {
  944. BaseDataInfo
  945. // Contact list data | Contact列表数据
  946. Data ContactSimpleListInfo `json:"data"`
  947. }
  948. // swagger:model ContactSimpleListInfo
  949. type ContactSimpleListInfo struct {
  950. BaseListInfo
  951. // The API list data | Contact列表数据
  952. Data []ContactSimpleInfo `json:"data"`
  953. }
  954. // swagger:model ContactSimpleInfo
  955. type ContactSimpleInfo struct {
  956. // 微信id 公众号微信ID
  957. Wxid *string `json:"wxid,optional"`
  958. // 微信昵称 群备注名称
  959. Nickname *string `json:"nickname,optional"`
  960. }
  961. // Get contact list request params | Contact列表请求参数
  962. // swagger:model ContactListReq
  963. type ContactListReq struct {
  964. PageInfo
  965. // Label ID list | 标签ID列表
  966. LabelIDs []uint64 `json:"labelIDs,optional"`
  967. // 属主微信id
  968. WxWxid *string `json:"wxWxid,optional"`
  969. // 微信id 公众号微信ID
  970. Wxid *string `json:"wxid,optional"`
  971. // 微信账号
  972. Account *string `json:"account,optional"`
  973. // 昵称
  974. Nickname *string `json:"nickname,optional"`
  975. // 联系人类型:1好友,2群组,3公众号,4企业微信联系人
  976. Type *int `json:"type,optional"`
  977. // 内容类型:1-个微 3-企微
  978. Ctype *uint64 `json:"ctype,optional"`
  979. //标签搜索开始结束日期
  980. SearchDate []*string `json:"date,optional"`
  981. Status *uint8 `json:"status,optional"`
  982. }
  983. // Contact information response | Contact信息返回体
  984. // swagger:model ContactInfoResp
  985. type ContactInfoResp struct {
  986. BaseDataInfo
  987. // Contact information | Contact数据
  988. Data ContactInfo `json:"data"`
  989. }
  990. // swagger:model AddNewFriendReq
  991. type AddNewFriendReq struct {
  992. OwnerWxid string `json:"ownerWxid"`
  993. Wxid string `json:"wxid"`
  994. Gid string `json:"gid"`
  995. Desc string `json:"desc"`
  996. AddType string `json:"addType"`
  997. }
  998. // swagger:model changeBlockListReq
  999. type ChangeBlockListReq struct {
  1000. OwnerWxid string `json:"ownerWxid"`
  1001. Wxid string `json:"wxid"`
  1002. Type *int `json:"type,optional"`
  1003. Ai *bool `json:"ai,optional"`
  1004. }
  1005. // swagger:model ImportWhatsappContactReq
  1006. type ImportWhatsappContactReq struct {
  1007. File *string `form:"file,optional"`
  1008. }
  1009. // swagger:model WhatsappContactListReq
  1010. type WhatsappContactListReq struct {
  1011. PageInfo
  1012. // 标签ID列表
  1013. LabelIDs []uint64 `json:"labelIDs,optional"`
  1014. // 电话
  1015. Phone *string `json:"phone,optional"`
  1016. // 名称
  1017. Name *string `json:"name,optional"`
  1018. }
  1019. // swagger:model CreateWhatsappContactReq
  1020. type CreateWhatsappContactReq struct {
  1021. BaseIDInfo
  1022. // 国家区号
  1023. Cc *string `json:"cc"`
  1024. Phone *string `json:"phone"`
  1025. // 备注名
  1026. Markname *string `json:"markname,optional"`
  1027. Ctype *uint64 `json:"ctype,optional"`
  1028. Cname *string `json:"cname,optional"`
  1029. Sex *int `json:"sex,optional"`
  1030. Cage *int `json:"cage,optional"`
  1031. Carea *string `json:"carea,optional"`
  1032. Cbirthday *string `json:"cbirthday,optional"`
  1033. Cbirtharea *string `json:"cbirtharea,optional"`
  1034. CidcardNo *string `json:"cidcardNo,optional"`
  1035. Ctitle *string `json:"ctitle,optional"`
  1036. }
  1037. // The response data of message information | Message信息
  1038. // swagger:model MessageInfo
  1039. type MessageInfo struct {
  1040. BaseIDInfo
  1041. // 属主微信id
  1042. WxWxid *string `json:"wxWxid"`
  1043. // 微信id 公众号微信ID
  1044. Wxid *string `json:"wxid"`
  1045. // 微信消息内容
  1046. Msg *string `json:"msg"`
  1047. }
  1048. // The response data of message list | Message列表数据
  1049. // swagger:model MessageListResp
  1050. type MessageListResp struct {
  1051. BaseDataInfo
  1052. // Message list data | Message列表数据
  1053. Data MessageListInfo `json:"data"`
  1054. }
  1055. // Message list data | Message列表数据
  1056. // swagger:model MessageListInfo
  1057. type MessageListInfo struct {
  1058. BaseListInfo
  1059. // The API list data | Message列表数据
  1060. Data []MessageInfo `json:"data"`
  1061. }
  1062. // Get message list request params | Message列表请求参数
  1063. // swagger:model MessageListReq
  1064. type MessageListReq struct {
  1065. PageInfo
  1066. // 属主微信id
  1067. WxWxid *string `json:"wxWxid,optional"`
  1068. // 微信id 公众号微信ID
  1069. Wxid *string `json:"wxid,optional"`
  1070. }
  1071. // Message information response | Message信息返回体
  1072. // swagger:model MessageInfoResp
  1073. type MessageInfoResp struct {
  1074. BaseDataInfo
  1075. // Message information | Message数据
  1076. Data MessageInfo `json:"data"`
  1077. }
  1078. // The response data of label list | Label列表数据
  1079. // swagger:model LabelSelectListResp
  1080. type LabelSelectListResp struct {
  1081. BaseDataInfo
  1082. // Label list data | Label列表数据
  1083. Data []LabelSelectListInfo `json:"data"`
  1084. }
  1085. // The response data of label list | Label群发列表数据
  1086. // swagger:model LabelBatchSelectListResp
  1087. type LabelBatchSelectListResp struct {
  1088. BaseDataInfo
  1089. // Label list data | Label列表数据
  1090. Data LabelBatchSelectListData `json:"data"`
  1091. }
  1092. // The response data of label list | Label群发列表数据
  1093. type LabelBatchSelectListData struct {
  1094. Contact []LabelSelectListInfo `json:"contact"`
  1095. Group []LabelSelectListInfo `json:"group"`
  1096. }
  1097. // The response data of label list | Label列表数据
  1098. // swagger:model LabelListResp
  1099. type LabelListResp struct {
  1100. BaseDataInfo
  1101. // Label list data | Label列表数据
  1102. Data LabelListInfo `json:"data"`
  1103. }
  1104. // Label list data | Label列表数据
  1105. // swagger:model LabelListInfo
  1106. type LabelListInfo struct {
  1107. BaseListInfo
  1108. // The API list data | Label列表数据
  1109. Data []LabelInfo `json:"data"`
  1110. }
  1111. // Get label list request params | Label列表请求参数
  1112. // swagger:model LabelListReq
  1113. type LabelListReq struct {
  1114. PageInfo
  1115. // Label ID list | Label ID列表
  1116. LabelIDs []uint64 `json:"labelIDs,optional"`
  1117. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  1118. Type *int `json:"type,optional"`
  1119. // 标签名称
  1120. Name *string `json:"name,optional"`
  1121. // 标签来源:1后台创建 2个微同步
  1122. From *int `json:"from,optional"`
  1123. // 标签模式:1动态 2静态
  1124. Mode *int `json:"mode,optional"`
  1125. }
  1126. // Label information response | Label信息返回体
  1127. // swagger:model LabelInfoResp
  1128. type LabelInfoResp struct {
  1129. BaseDataInfo
  1130. // Label information | Label数据
  1131. Data LabelInfo `json:"data"`
  1132. }
  1133. // swagger:model LabelSelectListInfo
  1134. type LabelSelectListInfo struct {
  1135. // label
  1136. Label *string `json:"label,optional"`
  1137. // value
  1138. Value *uint64 `json:"value,optional"`
  1139. }
  1140. // The data of label tagging information | LabelTagging信息
  1141. // swagger:model LabelTaggingInfo
  1142. type LabelTaggingInfo struct {
  1143. BaseIDInfo
  1144. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1145. Status *uint8 `json:"status,optional"`
  1146. // 机构 ID
  1147. OrganizationId *uint64 `json:"organizationId,optional"`
  1148. // 标签类型:1好友,2群组,3公众号,4企业微信联系人
  1149. Type *int `json:"type,optional"`
  1150. // 关键词
  1151. Conditions string `json:"conditions,optional"`
  1152. // 命中后需要打的标签
  1153. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1154. // 命中后需要移除的标签
  1155. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1156. LabelAddInfo []string `json:"labelAddInfo,optional"`
  1157. }
  1158. // The response data of label tagging list | LabelTagging信息列表数据
  1159. // swagger:model LabelTaggingListResp
  1160. type LabelTaggingListResp struct {
  1161. BaseDataInfo
  1162. // The label tagging list data | LabelTagging信息列表数据
  1163. Data LabelTaggingListInfo `json:"data"`
  1164. }
  1165. // The label tagging list data | LabelTagging信息列表数据
  1166. // swagger:model LabelTaggingListInfo
  1167. type LabelTaggingListInfo struct {
  1168. BaseListInfo
  1169. // The label tagging list data | LabelTagging信息列表数据
  1170. Data []LabelTaggingInfo `json:"data"`
  1171. }
  1172. // Get label tagging list request params | LabelTagging信息列表请求参数
  1173. // swagger:model LabelTaggingListReq
  1174. type LabelTaggingListReq struct {
  1175. PageInfo
  1176. }
  1177. // The label tagging information response | LabelTagging信息返回体
  1178. // swagger:model LabelTaggingInfoResp
  1179. type LabelTaggingInfoResp struct {
  1180. BaseDataInfo
  1181. // label tagging information | LabelTagging信息数据
  1182. Data LabelTaggingInfo `json:"data"`
  1183. }
  1184. // The response data of sop task list | SopTask列表数据
  1185. // swagger:model SopTaskListResp
  1186. type SopTaskListResp struct {
  1187. BaseDataInfo
  1188. // SopTask list data | SopTask列表数据
  1189. Data SopTaskListInfo `json:"data"`
  1190. }
  1191. // The response data of sop task record list | SopTask列表数据
  1192. // swagger:model SopTaskRecordListResp
  1193. type SopTaskRecordListResp struct {
  1194. BaseDataInfo
  1195. // SopTask list data | SopTask列表数据
  1196. Data []SopTaskRecordInfo `json:"data"`
  1197. }
  1198. // SopTask list data | SopTask列表数据
  1199. // swagger:model SopTaskRecordInfo
  1200. type SopTaskRecordInfo struct {
  1201. // NodeId 节点ID
  1202. SourceType *int `json:"sourceType,optional"`
  1203. // NodeId 节点ID
  1204. SourceId *uint64 `json:"sourceId,optional"`
  1205. // 节点名称
  1206. Name *string `json:"name,optional"`
  1207. // 消息总数
  1208. TotalCount *int64 `json:"totalCount,optional"`
  1209. // 成功数
  1210. SuccessCount *int64 `json:"successCount,optional"`
  1211. // 失败数
  1212. FailureCount *int64 `json:"failureCount,optional"`
  1213. // 成功率
  1214. SuccessRate *int64 `json:"successRate,optional"`
  1215. }
  1216. // SopTask list data | SopTask列表数据
  1217. // swagger:model SopTaskListInfo
  1218. type SopTaskListInfo struct {
  1219. BaseListInfo
  1220. // The API list data | SopTask列表数据
  1221. Data []SopTaskInfo `json:"data"`
  1222. }
  1223. // Get sop task list request params | SopTask列表请求参数
  1224. // swagger:model SopTaskListReq
  1225. type SopTaskListReq struct {
  1226. PageInfo
  1227. // SOP 任务名称
  1228. Name *string `json:"name,optional"`
  1229. Status *uint8 `json:"status,optional"`
  1230. }
  1231. // SopTask information response | SopTask信息返回体
  1232. // swagger:model SopTaskInfoResp
  1233. type SopTaskInfoResp struct {
  1234. BaseDataInfo
  1235. // SopTask information | SopTask数据
  1236. Data SopTaskInfo `json:"data"`
  1237. }
  1238. // SopTask create response | SopTask创建回体
  1239. // swagger:model SopTaskCreateResp
  1240. type SopTaskCreateResp struct {
  1241. BaseDataInfo
  1242. // SopTask id | SopTask id
  1243. Data uint64 `json:"data"`
  1244. }
  1245. // swagger:model CopyReq
  1246. type CopyReq struct {
  1247. // SopTask id | SopTask id
  1248. Id uint64 `json:"id"`
  1249. // SOP 任务名称
  1250. Name *string `json:"name,optional"`
  1251. // Organization id | Organization id
  1252. OrganizationId uint64 `json:"organizationId,optional"`
  1253. }
  1254. // swagger:model MessageVarResp
  1255. type MessageVarResp struct {
  1256. BaseDataInfo
  1257. Data MessageVarRespData `json:"data"`
  1258. }
  1259. type MessageVarRespData struct {
  1260. // 消息变量
  1261. MessageVar []MessageVarInfo `json:"messageVar"`
  1262. // 转发变量
  1263. ForwardVar []MessageVarInfo `json:"forwardVar"`
  1264. }
  1265. // swagger:model MessageVarInfo
  1266. type MessageVarInfo struct {
  1267. // 显示名称
  1268. Label string `json:"label"`
  1269. // 变量
  1270. Value string `json:"value"`
  1271. }
  1272. // swagger:model SopTaskOutlineResp
  1273. type SopTaskOutlineResp struct {
  1274. BaseDataInfo
  1275. Data []SopTaskOutlineInfo `json:"data"`
  1276. }
  1277. // swagger:model SopTaskOutlineInfo
  1278. type SopTaskOutlineInfo struct {
  1279. // 标题
  1280. Title string `json:"title,optional"`
  1281. // key
  1282. Key string `json:"key,optional"`
  1283. // 子节点
  1284. Children []SopTaskOutlineInfo `json:"children,optional"`
  1285. }
  1286. // swagger:model TestNodeReq
  1287. type TestNodeReq struct {
  1288. Type int `json:"type"`
  1289. Id uint64 `json:"id"`
  1290. Content string `json:"content"`
  1291. }
  1292. // swagger:model TestNodeResp
  1293. type TestNodeResp struct {
  1294. BaseDataInfo
  1295. Data []string `json:"data"`
  1296. }
  1297. // swagger:model SopApiListReq
  1298. type SopApiListReq struct {
  1299. // required : true
  1300. // min : 0
  1301. Page uint64 `json:"page" validate:"required,number,gt=0"`
  1302. // required : true
  1303. // max : 2000
  1304. PageSize uint64 `json:"pageSize" validate:"required,number,lt=2000"`
  1305. }
  1306. // swagger:model GenerateAiAnswerReq
  1307. type GenerateAiAnswerReq struct {
  1308. Content string `json:"content"`
  1309. }
  1310. // swagger:model GenerateAiAnswerResp
  1311. type GenerateAiAnswerResp struct {
  1312. BaseDataInfo
  1313. Data string `json:"data"`
  1314. }
  1315. // The response data of sop stage information | SopStage信息
  1316. // swagger:model SopStageInfo
  1317. type SopStageInfo struct {
  1318. BaseIDInfo
  1319. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1320. Status *uint8 `json:"status,optional"`
  1321. // SOP 任务 ID
  1322. TaskId *uint64 `json:"taskId,optional"`
  1323. // 阶段名称
  1324. Name *string `json:"name,optional"`
  1325. // 客群筛选条件类型 1 按标签筛选 2 按客户基本信息筛选
  1326. ConditionType *int `json:"conditionType,optional"`
  1327. // 筛选条件关系 1 满足所有条件(and) 2 满足任意条件(or)
  1328. ConditionOperator *int `json:"conditionOperator,optional"`
  1329. // 筛选条件列表
  1330. ConditionList []Condition `json:"conditionList,optional"`
  1331. // 命中后发送的消息内容
  1332. ActionMessage []Action `json:"actionMessage,optional"`
  1333. // 命中后需要打的标签
  1334. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1335. // 命中后需要移除的标签
  1336. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1337. // 命中后转发的消息内容
  1338. ActionForward *ActionForward `json:"actionForward,optional"`
  1339. // 阶段顺序
  1340. IndexSort *int `json:"indexSort,optional"`
  1341. // sop 任务信息
  1342. TaskInfo *SopTaskInfo `json:"taskInfo,optional"`
  1343. // node 信息
  1344. NodeList []SopNodeInfo `json:"nodeList,optional"`
  1345. }
  1346. // The response data of sop task information | SopTask信息
  1347. // swagger:model SopTaskInfo
  1348. type SopTaskInfo struct {
  1349. BaseIDInfo
  1350. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1351. Status *uint8 `json:"status,optional"`
  1352. // SOP 任务名称
  1353. Name *string `json:"name,optional"`
  1354. // 机器人微信 id 列表
  1355. BotWxidList []string `json:"botWxidList,optional"`
  1356. // 标签类型:1好友,2群组,3企业微信联系人
  1357. Type *int `json:"type,optional"`
  1358. // 任务计划开始时间
  1359. PlanStartTime *int64 `json:"planStartTime,optional"`
  1360. // 任务计划结束时间
  1361. PlanEndTime *int64 `json:"planEndTime,optional"`
  1362. // 创建者 id
  1363. CreatorId *string `json:"creatorId,optional"`
  1364. // 阶段信息
  1365. StageList []SopStageInfo `json:"stageList,optional"`
  1366. // 组织ID
  1367. OrganizationId *uint64 `json:"organizationId,optional"`
  1368. // Token
  1369. Token []string `json:"token,optional"`
  1370. }
  1371. // The response data of sop node information | SopNode信息
  1372. // swagger:model SopNodeInfo
  1373. type SopNodeInfo struct {
  1374. BaseIDInfo
  1375. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1376. Status *uint8 `json:"status,optional"`
  1377. // 阶段 ID
  1378. StageId *uint64 `json:"stageId,optional"`
  1379. // 父节点 ID
  1380. ParentId *uint64 `json:"parentId,optional"`
  1381. // 节点名称
  1382. Name *string `json:"name,optional"`
  1383. // 触发条件类型 1 客户回复后触发 2 超时后触发
  1384. ConditionType *int `json:"conditionType,optional"`
  1385. // 触发语义列表 当为空时则代表用户回复任意内容后触发
  1386. ConditionList []string `json:"conditionList,optional"`
  1387. // 超时触发时间(分钟)
  1388. NoReplyCondition *uint64 `json:"noReplyCondition,optional"`
  1389. // 超时触发时间单位
  1390. NoReplyUnit *string `json:"noReplyUnit,optional"`
  1391. // 命中后发送的消息内容
  1392. ActionMessage []Action `json:"actionMessage,optional"`
  1393. // 命中后需要打的标签
  1394. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1395. // 命中后需要移除的标签
  1396. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1397. // 命中后转发的消息内容
  1398. ActionForward *ActionForward `json:"actionForward,optional"`
  1399. // 阶段信息
  1400. StageInfo *SopStageInfo `json:"stageInfo,optional"`
  1401. }
  1402. // The response data of sop node information | SopNode信息
  1403. type SopNodeInfoWithLable struct {
  1404. BaseIDInfo
  1405. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1406. Status *uint8 `json:"status,optional"`
  1407. // 阶段 ID
  1408. StageId *uint64 `json:"stageId,optional"`
  1409. // 父节点 ID
  1410. ParentId *uint64 `json:"parentId,optional"`
  1411. // 节点名称
  1412. Name *string `json:"name,optional"`
  1413. // 触发条件类型 1 客户回复后触发 2 超时后触发
  1414. ConditionType *int `json:"conditionType,optional"`
  1415. // 触发语义列表 当为空时则代表用户回复任意内容后触发
  1416. ConditionList []string `json:"conditionList,optional"`
  1417. // 超时触发时间(分钟)
  1418. NoReplyCondition *uint64 `json:"noReplyCondition,optional"`
  1419. // 超时触发时间单位
  1420. NoReplyUnit *string `json:"noReplyUnit,optional"`
  1421. // 命中后发送的消息内容
  1422. ActionMessage []Action `json:"actionMessage,optional"`
  1423. // 命中后需要打的标签
  1424. ActionLabelAdd []uint64 `json:"actionLabelAdd,optional"`
  1425. // 命中后需要移除的标签
  1426. ActionLabelDel []uint64 `json:"actionLabelDel,optional"`
  1427. // 命中后转发的消息内容
  1428. ActionForward *ActionForward `json:"actionForward,optional"`
  1429. ActionLabelAddList []string `json:"actionLabelAddList"`
  1430. ActionLabelDelList []string `json:"actionLabelDelList"`
  1431. }
  1432. // The response data of sop stage list | SopStage列表数据
  1433. // swagger:model SopStageListResp
  1434. type SopStageListResp struct {
  1435. BaseDataInfo
  1436. // SopStage list data | SopStage列表数据
  1437. Data SopStageListInfo `json:"data"`
  1438. }
  1439. // SopStage list data | SopStage列表数据
  1440. // swagger:model SopStageListInfo
  1441. type SopStageListInfo struct {
  1442. BaseListInfo
  1443. // The API list data | SopStage列表数据
  1444. Data []SopStageInfo `json:"data"`
  1445. }
  1446. // Get sop stage list request params | SopStage列表请求参数
  1447. // swagger:model SopStageListReq
  1448. type SopStageListReq struct {
  1449. TaskId *uint64 `json:"taskId"`
  1450. }
  1451. // Batch get sop stage list request params | SopStage列表请求参数
  1452. // swagger:model BatchSopStageListReq
  1453. type BatchSopStageListReq struct {
  1454. TaskIds []uint64 `json:"taskIds"`
  1455. }
  1456. // SopStage information response | SopStage信息返回体
  1457. // swagger:model SopStageInfoResp
  1458. type SopStageInfoResp struct {
  1459. BaseDataInfo
  1460. // SopStage information | SopStage数据
  1461. Data SopStageInfo `json:"data"`
  1462. }
  1463. // SopStage create response | SopStage创建回体
  1464. // swagger:model SopStageCreateResp
  1465. type SopStageCreateResp struct {
  1466. BaseDataInfo
  1467. // SopStage id | SopStage id
  1468. Data uint64 `json:"data"`
  1469. }
  1470. // Move sop stage request params | 移动阶段请求参数
  1471. // swagger:model SopStageMoveReq
  1472. type SopStageMoveReq struct {
  1473. BaseIDInfo
  1474. // 阶段名称
  1475. Offset *int `json:"offset,optional"`
  1476. }
  1477. // swagger:model StageCopyReq
  1478. type StageCopyReq struct {
  1479. // SopStage id | SopStage id
  1480. Id uint64 `json:"id"`
  1481. }
  1482. // The response data of sop node list | SopNode列表数据
  1483. // swagger:model SopNodeListResp
  1484. type SopNodeListResp struct {
  1485. BaseDataInfo
  1486. // SopNode list data | SopNode列表数据
  1487. Data []*SopChildNodeInfo `json:"data"`
  1488. }
  1489. // The response data of sop node list | SopNode列表数据
  1490. type SopNodeListResp2 struct {
  1491. BaseDataInfo
  1492. // SopNode list data | SopNode列表数据
  1493. Data []*SopNodeInfoWithLable `json:"data"`
  1494. }
  1495. // SopNode list data | SopNode列表数据
  1496. // swagger:model SopChildNodeInfo
  1497. type SopChildNodeInfo struct {
  1498. NodeName *string `json:"nodeName,optional"`
  1499. ChildNode *SopChildNodeInfo `json:"childNode,optional"`
  1500. // The API list data | SopNode列表数据
  1501. ConditionNodes []*SopChildNodeInfo `json:"conditionNodes"`
  1502. SopNodeInfo
  1503. }
  1504. // SopNode list data | SopNode列表数据
  1505. // swagger:model SopNodeListInfo
  1506. type SopNodeListInfo struct {
  1507. BaseListInfo
  1508. // The API list data | SopNode列表数据
  1509. Data []SopNodeInfo `json:"data"`
  1510. }
  1511. // Get sop node list request params | SopNode列表请求参数
  1512. // swagger:model SopNodeListReq
  1513. type SopNodeListReq struct {
  1514. StageId *uint64 `json:"stageId"`
  1515. }
  1516. // Get sop node list request params | SopNode列表请求参数
  1517. // swagger:model BatchSopNodeListReq
  1518. type BatchSopNodeListReq struct {
  1519. StageIds []uint64 `json:"stageIds"`
  1520. }
  1521. // SopNode information response | SopNode信息返回体
  1522. // swagger:model SopNodeInfoResp
  1523. type SopNodeInfoResp struct {
  1524. BaseDataInfo
  1525. // SopNode information | SopNode数据
  1526. Data SopNodeInfo `json:"data"`
  1527. }
  1528. // SopNode create response | SopNode创建返回体
  1529. // swagger:model SopNodeCreateResp
  1530. type SopNodeCreateResp struct {
  1531. BaseDataInfo
  1532. // SopNode id | SopNode id
  1533. Data uint64 `json:"data"`
  1534. }
  1535. // The response data of message records information | MessageRecords信息
  1536. // swagger:model MessageRecordsInfo
  1537. type MessageRecordsInfo struct {
  1538. BaseIDInfo
  1539. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  1540. Status *uint8 `json:"status,optional"`
  1541. // 机器人微信 id
  1542. BotWxid *string `json:"botWxid,optional"`
  1543. // 联系人 id
  1544. ContactId *uint64 `json:"contactId,optional"`
  1545. // 类型:1好友,2群组,3企业微信联系人
  1546. ContactType *int `json:"contactType,optional"`
  1547. // 接收方微信 id
  1548. ContactWxid *string `json:"contactWxid,optional"`
  1549. // 内容类型 1 文本 2 文件
  1550. ContentType *int `json:"contentType,optional"`
  1551. // 发送内容
  1552. Content *string `json:"content,optional"`
  1553. // 元数据
  1554. Meta *Meta `json:"meta,optional"`
  1555. // 异常原因
  1556. ErrorDetail *string `json:"errorDetail,optional"`
  1557. // 发送时间
  1558. SendTime *int64 `json:"sendTime,optional"`
  1559. // 源类型 1 点发 2 群发 3 SOP
  1560. SourceType *int `json:"sourceType,optional"`
  1561. // 源 ID
  1562. SourceId *uint64 `json:"sourceId,optional"`
  1563. // 次源 ID
  1564. SubSourceId *uint64 `json:"subSourceId,optional"`
  1565. // 组织ID
  1566. OrganizationId *uint64 `json:"organizationId,optional"`
  1567. }
  1568. // The response data of message records list | MessageRecords列表数据
  1569. // swagger:model MessageRecordsListResp
  1570. type MessageRecordsListResp struct {
  1571. BaseDataInfo
  1572. // MessageRecords list data | MessageRecords列表数据
  1573. Data MessageRecordsListInfo `json:"data"`
  1574. }
  1575. // MessageRecords list data | MessageRecords列表数据
  1576. // swagger:model MessageRecordsListInfo
  1577. type MessageRecordsListInfo struct {
  1578. BaseListInfo
  1579. // The API list data | MessageRecords列表数据
  1580. Data []MessageRecordsInfo `json:"data"`
  1581. }
  1582. // Get message records list request params | MessageRecords列表请求参数
  1583. // swagger:model MessageRecordsListReq
  1584. type MessageRecordsListReq struct {
  1585. PageInfo
  1586. // 群发消息ID
  1587. BatchMsgId *uint64 `json:"batchMsgId,optional"`
  1588. // 机器人微信 id
  1589. BotWxid *string `json:"botWxid,optional"`
  1590. // 消息类型:源类型 1 点发 2 群发 3 SOP 阶段 4 SOP 节点
  1591. SourceType *int `json:"sourceType,optional"`
  1592. // 消息源ID:
  1593. SourceId *uint64 `json:"sourceId,optional"`
  1594. // 接收方微信 id
  1595. ContactWxid *string `json:"contactWxid,optional"`
  1596. // 发送内容
  1597. Status *uint8 `json:"status,optional"`
  1598. }
  1599. // MessageRecords information response | MessageRecords信息返回体
  1600. // swagger:model MessageRecordsInfoResp
  1601. type MessageRecordsInfoResp struct {
  1602. BaseDataInfo
  1603. // MessageRecords information | MessageRecords数据
  1604. Data MessageRecordsInfo `json:"data"`
  1605. }
  1606. // The response data of chatroom member information | ChatroomMember信息
  1607. // swagger:model ChatroomMemberInfo
  1608. type ChatroomMemberInfo struct {
  1609. // 名称
  1610. Wxid *string `json:"wxid,optional"`
  1611. // 群组
  1612. ChatRoom *string `json:"chatRoom,optional"`
  1613. // 属主Wxid
  1614. OwnerWxid *string `json:"ownerWxid,optional"`
  1615. // 账号
  1616. Account *string `json:"account,optional"`
  1617. }
  1618. // The response data of chatroom member list | ChatroomMember列表数据
  1619. // swagger:model ChatroomMemberListResp
  1620. type ChatroomMemberListResp struct {
  1621. BaseDataInfo
  1622. // chatroom member list data | chatroom member 列表数据
  1623. Data ChatroomMemberListInfo `json:"data"`
  1624. }
  1625. // chatroom member list data | chatroom member列表数据
  1626. // swagger:model ChatroomMemberListInfo
  1627. type ChatroomMemberListInfo struct {
  1628. BaseListInfo
  1629. // The API list data | chatroom member列表数据
  1630. Data []ChatroomMemberInfo `json:"data"`
  1631. }
  1632. // Get chatroom member list request params | ChatroomMember列表请求参数
  1633. // swagger:model ChatroomMemberListReq
  1634. type ChatroomMemberListReq struct {
  1635. PageInfo
  1636. // 属主Wxid
  1637. OwnerWxid *string `json:"ownerWxid,optional"`
  1638. // 群组
  1639. ChatRoom *string `json:"chatRoom,optional"`
  1640. }
  1641. // chatroom member information response | ChatroomMember信息返回体
  1642. // swagger:model ChatroomMemberInfoResp
  1643. type ChatroomMemberInfoResp struct {
  1644. BaseDataInfo
  1645. // Server information | Server数据
  1646. Data ChatroomMemberInfo `json:"data"`
  1647. }
  1648. // The response data of user information | 用户信息
  1649. // swagger:model UserInfo
  1650. type UserInfo struct {
  1651. BaseUUIDInfo
  1652. // Status | 状态
  1653. // max : 20
  1654. Status *uint32 `json:"status,optional" validate:"omitempty,lt=20"`
  1655. // Username | 用户名
  1656. // max length : 50
  1657. Username *string `json:"username,optional" validate:"omitempty,max=50"`
  1658. // Nickname | 昵称
  1659. // max length : 40
  1660. Nickname *string `json:"nickname,optional" validate:"omitempty,max=40"`
  1661. // Password | 密码
  1662. // min length : 6
  1663. Password *string `json:"password,optional" validate:"omitempty,min=6"`
  1664. // Description | 描述
  1665. // max length : 100
  1666. Description *string `json:"description,optional" validate:"omitempty,max=100"`
  1667. // HomePath | 首页
  1668. // max length : 70
  1669. HomePath *string `json:"homePath,optional" validate:"omitempty,max=70"`
  1670. // RoleId | 角色ID
  1671. RoleIds []uint64 `json:"roleIds,optional"`
  1672. // Mobile | 手机号
  1673. // max length : 18
  1674. Mobile *string `json:"mobile,optional" validate:"omitempty,max=18"`
  1675. // Email | 邮箱
  1676. // max length : 80
  1677. Email *string `json:"email,optional" validate:"omitempty,max=80"`
  1678. // Avatar | 头像地址
  1679. // max length : 300
  1680. Avatar *string `json:"avatar,optional" validate:"omitempty,max=300"`
  1681. // Department ID | 部门ID
  1682. DepartmentId *uint64 `json:"departmentId,optional,omitempty"`
  1683. // Position ID | 职位ID
  1684. PositionIds []uint64 `json:"positionId,optional,omitempty"`
  1685. }
  1686. // User information response | 用户信息返回体
  1687. // swagger:model UserInfoResp
  1688. type UserInfoResp struct {
  1689. BaseDataInfo
  1690. // User information | User数据
  1691. Data UserInfo `json:"data"`
  1692. }
  1693. // The response data of user's basic information | 用户基本信息返回数据
  1694. // swagger:model UserBaseIDInfoResp
  1695. type UserBaseIDInfoResp struct {
  1696. BaseDataInfo
  1697. // The data of user's basic information | 用户基本信息
  1698. Data UserBaseIDInfo `json:"data"`
  1699. }
  1700. // The data of user's basic information | 用户基本信息
  1701. // swagger:model UserBaseIDInfo
  1702. type UserBaseIDInfo struct {
  1703. // User's UUID | 用户的UUID
  1704. UUID *string `json:"userId"`
  1705. // User's name | 用户名
  1706. Username *string `json:"username"`
  1707. // User's nickname | 用户的昵称
  1708. Nickname *string `json:"nickname"`
  1709. // The user's avatar path | 用户的头像路径
  1710. Avatar *string `json:"avatar"`
  1711. // The home page that the user enters after logging in | 用户登陆后进入的首页
  1712. HomePath *string `json:"homePath"`
  1713. // The description of user | 用户的描述信息
  1714. Description *string `json:"desc"`
  1715. // User's Role Name | 用户的角色名称
  1716. RoleName []string `json:"roleName"`
  1717. // Department Name | 部门名称
  1718. DepartmentName string `json:"departmentName,optional"`
  1719. // Department Name | 部门备注
  1720. DepartmentRemark string `json:"departmentRemark,optional"`
  1721. }
  1722. // swagger:model UserLoginReq
  1723. type UserLoginReq struct {
  1724. JsCode *string `json:"js_code,optional"`
  1725. }
  1726. // swagger:model UserLoginResp
  1727. type UserLoginResp struct {
  1728. BaseDataInfo
  1729. Data UserToken `json:"data,optional"`
  1730. }
  1731. // swagger:model GptsUserLoginReq
  1732. type GptsUserLoginReq struct {
  1733. Username *string `json:"username"`
  1734. Password *string `json:"password"`
  1735. }
  1736. // swagger:model GptsUserLoginResp
  1737. type GptsUserLoginResp struct {
  1738. BaseDataInfo
  1739. Data GptsUserToken `json:"data,optional"`
  1740. }
  1741. type GptsUserToken struct {
  1742. ID string `json:"id,optional"`
  1743. Token string `json:"token,optional"`
  1744. Username string `json:"username,optional"`
  1745. ExpireTime uint64 `json:"expireTime,optional"`
  1746. }
  1747. // swagger:model PasswordReq
  1748. type PasswordReq struct {
  1749. Password *string `json:"password"`
  1750. Password2 *string `json:"password2"`
  1751. }
  1752. type UserToken struct {
  1753. Token *string `json:"token,optional"`
  1754. ID *uint64 `json:"id,optional"`
  1755. Avatar *string `json:"avatar,optional"`
  1756. Nickname *string `json:"nickname,optional"`
  1757. IsVip *bool `json:"isVip,optional"`
  1758. }
  1759. // swagger:model UserVipResp
  1760. type UserVipResp struct {
  1761. BaseDataInfo
  1762. Data UserVip `json:"data,optional"`
  1763. }
  1764. type UserVip struct {
  1765. IsVip *bool `json:"isVip,optional"`
  1766. WechatAccount *string `json:"wechatAccount"`
  1767. }
  1768. // swagger:model UserBalanceResp
  1769. type UserBalanceResp struct {
  1770. BaseDataInfo
  1771. // User information | User数据
  1772. Data BalanceInfo `json:"data"`
  1773. }
  1774. // swagger:model BalanceInfo
  1775. type BalanceInfo struct {
  1776. Balance *float64 `json:"balance"`
  1777. }
  1778. // swagger:model WxidReq
  1779. type WxidReq struct {
  1780. Wxid string `json:"wxid"`
  1781. }
  1782. // 以下是API请求类型
  1783. // swagger:model CompApiReq
  1784. type CompApiReq struct {
  1785. CompCtlReq
  1786. StdCompApiReq
  1787. FastGptSpecReq
  1788. }
  1789. // FastGpt Completions请求信息
  1790. // swagger:model FastGptApiReq
  1791. type FastGptApiReq struct {
  1792. StdCompApiReq
  1793. FastGptSpecReq
  1794. }
  1795. // 标准Completions请求信息
  1796. // swagger:model StdCompApiReq
  1797. type StdCompApiReq struct {
  1798. //model,like 'gpt-4o'
  1799. Model string `json:"model,optional"`
  1800. //Message list
  1801. Messages []StdCompMessage `json:"messages"`
  1802. //Stream 是否流式输出
  1803. Stream bool `json:"stream,default=false"`
  1804. //格式化输出定义
  1805. ResponseFormat interface{} `json:"response_format,omitempty"`
  1806. }
  1807. // 关于工作流配置的请求信息
  1808. // swagger:model CompCtlReq
  1809. type CompCtlReq struct {
  1810. //EventType事件类型
  1811. EventType string `json:"event_type,default=fastgpt"`
  1812. //WorkId工作流ID
  1813. WorkId string `json:"work_id,optional,omitempty"`
  1814. //IsBatch 是同步还是异步,默认及取值false表明同步
  1815. IsBatch bool `json:"is_batch,default=false"`
  1816. //异步回调地址
  1817. Callback string `json:"callback,optional,omitempty"`
  1818. }
  1819. // swagger:model FastGptSpecReq
  1820. type FastGptSpecReq struct {
  1821. //ChatId
  1822. ChatId string `json:"chat_id,optional,omitempty"`
  1823. //FastgptChatId
  1824. FastgptChatId string `json:"chatId,optional,omitempty"`
  1825. //ResponseChatItemId
  1826. ResponseChatItemId string `json:"response_chat_item_id,optional,omitempty"`
  1827. //Detail 详情开关
  1828. Detail bool `json:"detail,default=false"`
  1829. //Variables
  1830. Variables map[string]string `json:"variables,optional,omitempty"`
  1831. }
  1832. type StdCompMessage struct {
  1833. Role string `json:"role"`
  1834. Content interface{} `json:"content"`
  1835. }
  1836. // 以下是API响应类型
  1837. // swagger:model CompOpenApiResp
  1838. type CompOpenApiResp struct {
  1839. StdCompApiResp
  1840. FastgptSpecResp
  1841. FastgptErrResp
  1842. }
  1843. // swagger:model StdCompApiResp
  1844. type StdCompApiResp struct {
  1845. // A unique identifier for the chat completion.
  1846. ID string `json:"id"`
  1847. // A list of chat completion choices. Can be more than one if `n` is greater
  1848. // than 1.
  1849. Choices []ChatCompletionChoice `json:"choices"`
  1850. // The Unix timestamp (in seconds) of when the chat completion was created.
  1851. Created int64 `json:"created"`
  1852. // The model used for the chat completion.
  1853. Model string `json:"model"`
  1854. // The object type, which is always `chat.completion`.
  1855. Object string `json:"object"`
  1856. // The service tier used for processing the request.
  1857. ServiceTier string `json:"service_tier,omitempty"`
  1858. // This fingerprint represents the backend configuration that the model runs with.
  1859. //
  1860. // Can be used in conjunction with the `seed` request parameter to understand when
  1861. // backend changes have been made that might impact determinism.
  1862. SystemFingerprint string `json:"system_fingerprint"`
  1863. // Usage statistics for the completion request.
  1864. Usage CompletionUsage `json:"usage,omitempty"`
  1865. }
  1866. // swagger:model FastgptSpecResp
  1867. type FastgptSpecResp struct {
  1868. ResponseData []map[string]interface{} `json:"responseData,omitempty"`
  1869. NewVariables map[string]interface{} `json:"newVariables,omitempty"`
  1870. }
  1871. // swagger:model FastgptErrResp
  1872. type FastgptErrResp struct {
  1873. FgtErrCode *int `json:"code,omitempty"`
  1874. FgtErrStatusTxt *string `json:"statusText,omitempty"`
  1875. FgtErrMessage *string `json:"message,omitempty"`
  1876. }
  1877. // swagger:model DeepseekErrResp
  1878. type DeepseekErrResp struct {
  1879. DSErr DeepseekErrInfo `json:"error,omitempty"`
  1880. }
  1881. // swagger:model DeepseekErrInfo
  1882. type DeepseekErrInfo struct {
  1883. Message string `json:"message,omitempty"`
  1884. Type string `json:"type,omitempty"`
  1885. Code string `json:"code,omitempty"`
  1886. Param interface{} `json:"param,omitempty"`
  1887. }
  1888. type ChatCompletionAudio struct {
  1889. // Unique identifier for this audio response.
  1890. ID string `json:"id"`
  1891. }
  1892. type ChatCompletionMessage struct {
  1893. // The contents of the message.
  1894. Content string `json:"content"`
  1895. //The contents of the reasoning message
  1896. ReasoningContent string `json:"reasoning_content,omitempty"`
  1897. // The refusal message generated by the model.
  1898. Refusal string `json:"refusal"`
  1899. // The role of the author of this message.
  1900. Role string `json:"role"`
  1901. // If the audio output modality is requested, this object contains data about the
  1902. // audio response from the model.
  1903. // [Learn more](https://platform.openai.com/docs/guides/audio).
  1904. Audio ChatCompletionAudio `json:"audio,omitempty"`
  1905. }
  1906. type ChatCompletionChoice struct {
  1907. // The reason the model stopped generating tokens. This will be `stop` if the model
  1908. // hit a natural stop point or a provided stop sequence, `length` if the maximum
  1909. // number of tokens specified in the request was reached, `content_filter` if
  1910. // content was omitted due to a flag from our content filters, `tool_calls` if the
  1911. // model called a tool, or `function_call` (deprecated) if the model called a
  1912. // function.
  1913. FinishReason string `json:"finish_reason"`
  1914. // The index of the choice in the list of choices.
  1915. Index int64 `json:"index"`
  1916. // A chat completion message generated by the model.
  1917. Message ChatCompletionMessage `json:"message,omitempty"`
  1918. // A chat completion message generated by the model stream mode.
  1919. Delta ChatCompletionMessage `json:"delta,omitempty"`
  1920. //
  1921. Logprobs string `json:"logprobs"`
  1922. }
  1923. type CompletionUsageCompletionTokensDetails struct {
  1924. // When using Predicted Outputs, the number of tokens in the prediction that
  1925. // appeared in the completion.
  1926. AcceptedPredictionTokens int64 `json:"accepted_prediction_tokens"`
  1927. // Audio input tokens generated by the model.
  1928. AudioTokens int64 `json:"audio_tokens"`
  1929. // Tokens generated by the model for reasoning.
  1930. ReasoningTokens int64 `json:"reasoning_tokens"`
  1931. // When using Predicted Outputs, the number of tokens in the prediction that did
  1932. // not appear in the completion. However, like reasoning tokens, these tokens are
  1933. // still counted in the total completion tokens for purposes of billing, output,
  1934. // and context window limits.
  1935. RejectedPredictionTokens int64 `json:"rejected_prediction_tokens"`
  1936. }
  1937. type CompletionUsagePromptTokensDetails struct {
  1938. // Audio input tokens present in the prompt.
  1939. AudioTokens int64 `json:"audio_tokens"`
  1940. // Cached tokens present in the prompt.
  1941. CachedTokens int64 `json:"cached_tokens"`
  1942. }
  1943. type CompletionUsage struct {
  1944. // Number of tokens in the generated completion.
  1945. CompletionTokens int64 `json:"completion_tokens,required"`
  1946. // Number of tokens in the prompt.
  1947. PromptTokens int64 `json:"prompt_tokens,required"`
  1948. // Total number of tokens used in the request (prompt + completion).
  1949. TotalTokens int64 `json:"total_tokens,required"`
  1950. // Breakdown of tokens used in a completion.
  1951. CompletionTokensDetails CompletionUsageCompletionTokensDetails `json:"completion_tokens_details"`
  1952. // Breakdown of tokens used in the prompt.
  1953. PromptTokensDetails CompletionUsagePromptTokensDetails `json:"prompt_tokens_details"`
  1954. }
  1955. // The data of batch msg information | BatchMsg信息
  1956. // swagger:model BatchMsgInfo
  1957. type BatchMsgInfo struct {
  1958. BaseIDInfo
  1959. // 状态 0 未开始 1 开始发送 2 发送完成 3 发送中止
  1960. Status *uint8 `json:"status,optional"`
  1961. // 批次号
  1962. BatchNo *string `json:"batchNo,optional"`
  1963. // 任务名称
  1964. TaskName *string `json:"taskName,optional"`
  1965. // 发送方微信ID
  1966. Fromwxid *string `json:"fromwxid,optional"`
  1967. // 发送方微信称呼
  1968. FromName *string `json:"fromName,optional"`
  1969. // 内容
  1970. Msg *string `json:"msg,optional"`
  1971. // 发送规则 all 全部 tag1,tag2 按tag发送
  1972. Tag *string `json:"tag,optional"`
  1973. // 总数
  1974. Total *int32 `json:"total,optional"`
  1975. // 成功数量
  1976. Success *int32 `json:"success,optional"`
  1977. // 失败数量
  1978. Fail *int32 `json:"fail,optional"`
  1979. // 开始时间
  1980. StartTime *int64 `json:"startTime,optional"`
  1981. StartTimeStr *string `json:"startTimeStr,optional"`
  1982. // 结束时间
  1983. StopTime *int64 `json:"stopTime,optional"`
  1984. // 发送时间
  1985. SendTime *int64 `json:"sendTime,optional"`
  1986. // 标签列表
  1987. Labels []uint64 `json:"labels,optional"`
  1988. GroupLabels []uint64 `json:"groupLabels,optional"`
  1989. // 标签列表
  1990. Type *int32 `json:"type,optional"`
  1991. // 内容类型:1-微信 2-whatsapp 3-企微
  1992. Ctype *uint64 `json:"ctype,optional"`
  1993. Cc *string `json:"cc,optional"`
  1994. Phone *string `json:"phone,optional"`
  1995. TemplateCode *string `json:"templateCode,optional"`
  1996. TemplateName *string `json:"templateName,optional"`
  1997. Lang *string `json:"lang,optional"`
  1998. }
  1999. // The response data of batch msg list | BatchMsg列表数据
  2000. // swagger:model BatchMsgListResp
  2001. type BatchMsgListResp struct {
  2002. BaseDataInfo
  2003. // BatchMsg list data | BatchMsg列表数据
  2004. Data BatchMsgListInfo `json:"data"`
  2005. }
  2006. // BatchMsg list data | BatchMsg列表数据
  2007. // swagger:model BatchMsgListInfo
  2008. type BatchMsgListInfo struct {
  2009. BaseListInfo
  2010. // The API list data | BatchMsg列表数据
  2011. Data []BatchMsgInfo `json:"data"`
  2012. }
  2013. // Get batch msg list request params | BatchMsg列表请求参数
  2014. // swagger:model BatchMsgListReq
  2015. type BatchMsgListReq struct {
  2016. PageInfo
  2017. // 批次号
  2018. BatchNo *string `json:"batchNo,optional"`
  2019. // 发送方微信ID
  2020. Fromwxid *string `json:"fromwxid,optional"`
  2021. // 内容
  2022. Msg *string `json:"msg,optional"`
  2023. // 任务名称
  2024. TaskName *string `json:"taskName,optional"`
  2025. // 群发类型
  2026. Type *int32 `json:"type"`
  2027. // 内容类型:1-个微 3-企微
  2028. Ctype *uint64 `json:"ctype,optional"`
  2029. }
  2030. // BatchMsg information response | BatchMsg信息返回体
  2031. // swagger:model BatchMsgInfoResp
  2032. type BatchMsgInfoResp struct {
  2033. BaseDataInfo
  2034. // BatchMsg information | BatchMsg数据
  2035. Data BatchMsgInfo `json:"data"`
  2036. }
  2037. // swagger:model WhatsappBatchMsgListReq
  2038. type WhatsappBatchMsgListReq struct {
  2039. PageInfo
  2040. // 批次号
  2041. BatchNo *string `json:"batchNo,optional"`
  2042. // 发送方微信ID
  2043. Phone *string `json:"phone,optional"`
  2044. // 内容
  2045. Msg *string `json:"msg,optional"`
  2046. }
  2047. // swagger:model WhatsappBatchMsgHistoryReq
  2048. type WhatsappBatchMsgHistoryReq struct {
  2049. PageInfo
  2050. IDReq
  2051. Status *uint8 `json:"status,optional"`
  2052. Phone *string `json:"phone,optional"`
  2053. }
  2054. // swagger:model WhatsappBatchMsgHistoryResp
  2055. type WhatsappBatchMsgHistoryResp struct {
  2056. BaseDataInfo
  2057. Data HistoryListInfo `json:"data"`
  2058. }
  2059. // swagger:model HistoryListInfo
  2060. type HistoryListInfo struct {
  2061. BaseListInfo
  2062. Data []HistoryInfo `json:"data"`
  2063. }
  2064. // swagger:model HistoryInfo
  2065. type HistoryInfo struct {
  2066. Index *uint64 `json:"index,optional"`
  2067. From *string `json:"from,optional"`
  2068. To *string `json:"to,optional"`
  2069. SendTime *int64 `json:"sendTime,optional"`
  2070. BatchNo *string `json:"batchNo,optional"`
  2071. Cc *string `json:"cc,optional"`
  2072. Phone *string `json:"phone,optional"`
  2073. Status *uint8 `json:"status,optional"`
  2074. }
  2075. // swagger:model SendMsgReq
  2076. type SendMsgReq struct {
  2077. Phone *string `json:"phone"`
  2078. To *string `json:"to"`
  2079. Lang *string `json:"lang"`
  2080. TemplateCode *string `json:"templateCode"`
  2081. }
  2082. // The data of msg information | Msg信息
  2083. // swagger:model MsgInfo
  2084. type MsgInfo struct {
  2085. BaseIDInfo
  2086. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  2087. Status *uint8 `json:"status,optional"`
  2088. // 发送方微信ID
  2089. Fromwxid *string `json:"fromwxid,optional"`
  2090. // 接收人微信ID/群ID
  2091. Toid *string `json:"toid,optional"`
  2092. // 消息类型
  2093. Msgtype *int32 `json:"msgtype,optional"`
  2094. // 消息
  2095. Msg *string `json:"msg,optional"`
  2096. // 批次号
  2097. BatchNo *string `json:"batchNo,optional"`
  2098. }
  2099. // The response data of msg list | Msg列表数据
  2100. // swagger:model MsgListResp
  2101. type MsgListResp struct {
  2102. BaseDataInfo
  2103. // Msg list data | Msg列表数据
  2104. Data MsgListInfo `json:"data"`
  2105. }
  2106. // Msg list data | Msg列表数据
  2107. // swagger:model MsgListInfo
  2108. type MsgListInfo struct {
  2109. BaseListInfo
  2110. // The API list data | Msg列表数据
  2111. Data []MsgInfo `json:"data"`
  2112. }
  2113. // Get msg list request params | Msg列表请求参数
  2114. // swagger:model MsgListReq
  2115. type MsgListReq struct {
  2116. PageInfo
  2117. // 状态
  2118. Status *uint8 `json:"status,optional"`
  2119. // 接收人微信ID/群ID
  2120. Toid *string `json:"toid,optional"`
  2121. // 群发消息ID
  2122. BatchId *uint64 `json:"batchId"`
  2123. }
  2124. // Msg information response | Msg信息返回体
  2125. // swagger:model MsgInfoResp
  2126. type MsgInfoResp struct {
  2127. BaseDataInfo
  2128. // Msg information | Msg数据
  2129. Data MsgInfo `json:"data"`
  2130. }
  2131. // The data of employee information | Employee信息
  2132. // swagger:model EmployeeInfo
  2133. type EmployeeInfo struct {
  2134. BaseIDInfo
  2135. // title | 标题
  2136. Title *string `json:"title,optional"`
  2137. // avatar | 头像
  2138. Avatar *string `json:"avatar,optional"`
  2139. // tags | 个人标签
  2140. Tags *string `json:"tags,optional"`
  2141. // hire_count | 被雇佣次数
  2142. HireCount *int `json:"hireCount,optional"`
  2143. // service_count | 已服务次数
  2144. ServiceCount *int `json:"serviceCount,optional"`
  2145. // achievement_count | 业绩单数
  2146. AchievementCount *int `json:"achievementCount,optional"`
  2147. // category_id | 分类ID
  2148. CategoryId *uint64 `json:"categoryId,optional"`
  2149. // intro | 个人介绍
  2150. Intro *string `json:"intro,optional"`
  2151. // estimate | 自我评价
  2152. Estimate *string `json:"estimate,optional"`
  2153. // skill | 技能卡
  2154. Skill *string `json:"skill,optional"`
  2155. // ability_type | 能力类型
  2156. AbilityType *string `json:"abilityType,optional"`
  2157. // scene | 使用场景
  2158. Scene *string `json:"scene,optional"`
  2159. SceneList []EmployeeConfigInfo `json:"sceneList,optional"`
  2160. // switch_in | 支持介入
  2161. SwitchIn *string `json:"switchIn,optional"`
  2162. SwitchInList []EmployeeConfigInfo `json:"switchInList,optional"`
  2163. Tutorial []TutorialInfo `json:"tutorial,optional"`
  2164. // video_url | 视频地址
  2165. VideoUrl *string `json:"videoUrl,optional"`
  2166. // work_experience | 工作经验
  2167. WorkExperience []WorkExperienceInfo `json:"workExperience,optional"`
  2168. ApiBase *string `json:"apiBase,optional"`
  2169. ApiKey *string `json:"apiKey,optional"`
  2170. // AI信息
  2171. AiInfo *string `json:"aiInfo,optional"`
  2172. ShowChat *bool `json:"showChat,optional"`
  2173. IsVip *bool `json:"isVip,optional"`
  2174. ChatUrl *string `json:"chatUrl,optional"`
  2175. }
  2176. // The response data of employee list | Employee列表数据
  2177. // swagger:model EmployeeListResp
  2178. type EmployeeListResp struct {
  2179. BaseDataInfo
  2180. // Employee list data | Employee列表数据
  2181. Data EmployeeListInfo `json:"data"`
  2182. }
  2183. // Employee list data | Employee列表数据
  2184. // swagger:model EmployeeListInfo
  2185. type EmployeeListInfo struct {
  2186. BaseListInfo
  2187. // The API list data | Employee列表数据
  2188. Data []EmployeeInfo `json:"data"`
  2189. }
  2190. // Get employee list request params | Employee列表请求参数
  2191. // swagger:model EmployeeListReq
  2192. type EmployeeListReq struct {
  2193. PageInfo
  2194. // title | 标题
  2195. Title *string `json:"title,optional"`
  2196. // tags | 个人标签
  2197. Tags *string `json:"tags,optional"`
  2198. // category_id | 分类ID
  2199. CategoryId *uint64 `json:"categoryId,optional"`
  2200. }
  2201. // Employee information response | Employee信息返回体
  2202. // swagger:model EmployeeInfoResp
  2203. type EmployeeInfoResp struct {
  2204. BaseDataInfo
  2205. // Employee information | Employee数据
  2206. Data EmployeeInfo `json:"data"`
  2207. }
  2208. // swagger:model AuthReq
  2209. type AuthReq struct {
  2210. Token *string `json:"token,optional"`
  2211. Data uint64 `json:"data,optional"`
  2212. }
  2213. // swagger:model AuthResp
  2214. type AuthResp struct {
  2215. Token *string `json:"token,optional"`
  2216. Data *uint64 `json:"data,optional"`
  2217. Original interface{} `json:"original,optional"`
  2218. OK interface{} `json:"ok,optional"`
  2219. SecretKey string `json:"secretKey,optional"`
  2220. }
  2221. // The data of work experience information | WorkExperience信息
  2222. // swagger:model WorkExperienceInfo
  2223. type WorkExperienceInfo struct {
  2224. BaseIDInfo
  2225. // employee_id | 员工ID
  2226. EmployeeId *uint64 `json:"employeeId,optional"`
  2227. // start_date | 开始时间
  2228. StartDate *int64 `json:"startDate,optional"`
  2229. StartDateStr *string `json:"startDateStr,optional"`
  2230. // end_date | 结束时间
  2231. EndDate *int64 `json:"endDate,optional"`
  2232. EndDateStr *string `json:"endDateStr,optional"`
  2233. // company | 公司名
  2234. Company *string `json:"company,optional"`
  2235. // experience | 工作内容
  2236. Experience *string `json:"experience,optional"`
  2237. }
  2238. // The response data of work experience list | WorkExperience列表数据
  2239. // swagger:model WorkExperienceListResp
  2240. type WorkExperienceListResp struct {
  2241. BaseDataInfo
  2242. // WorkExperience list data | WorkExperience列表数据
  2243. Data WorkExperienceListInfo `json:"data"`
  2244. }
  2245. // WorkExperience list data | WorkExperience列表数据
  2246. // swagger:model WorkExperienceListInfo
  2247. type WorkExperienceListInfo struct {
  2248. BaseListInfo
  2249. // The API list data | WorkExperience列表数据
  2250. Data []WorkExperienceInfo `json:"data"`
  2251. }
  2252. // Get work experience list request params | WorkExperience列表请求参数
  2253. // swagger:model WorkExperienceListReq
  2254. type WorkExperienceListReq struct {
  2255. PageInfo
  2256. // company | 公司名
  2257. Company *string `json:"company,optional"`
  2258. }
  2259. // WorkExperience information response | WorkExperience信息返回体
  2260. // swagger:model WorkExperienceInfoResp
  2261. type WorkExperienceInfoResp struct {
  2262. BaseDataInfo
  2263. // WorkExperience information | WorkExperience数据
  2264. Data WorkExperienceInfo `json:"data"`
  2265. }
  2266. // The data of tutorial information | Tutorial信息
  2267. // swagger:model TutorialInfo
  2268. type TutorialInfo struct {
  2269. BaseIDInfo
  2270. // employee_id | 员工ID
  2271. EmployeeId *uint64 `json:"employeeId,optional"`
  2272. // index | 序号
  2273. Index *int `json:"index,optional"`
  2274. // title | 标题
  2275. Title *string `json:"title,optional"`
  2276. // content | 内容
  2277. Content *string `json:"content,optional"`
  2278. }
  2279. // The response data of tutorial list | Tutorial列表数据
  2280. // swagger:model TutorialListResp
  2281. type TutorialListResp struct {
  2282. BaseDataInfo
  2283. // Tutorial list data | Tutorial列表数据
  2284. Data TutorialListInfo `json:"data"`
  2285. }
  2286. // Tutorial list data | Tutorial列表数据
  2287. // swagger:model TutorialListInfo
  2288. type TutorialListInfo struct {
  2289. BaseListInfo
  2290. // The API list data | Tutorial列表数据
  2291. Data []TutorialInfo `json:"data"`
  2292. }
  2293. // Get tutorial list request params | Tutorial列表请求参数
  2294. // swagger:model TutorialListReq
  2295. type TutorialListReq struct {
  2296. PageInfo
  2297. // title | 标题
  2298. Title *string `json:"title,optional"`
  2299. // content | 内容
  2300. Content *string `json:"content,optional"`
  2301. }
  2302. // Tutorial information response | Tutorial信息返回体
  2303. // swagger:model TutorialInfoResp
  2304. type TutorialInfoResp struct {
  2305. BaseDataInfo
  2306. // Tutorial information | Tutorial数据
  2307. Data TutorialInfo `json:"data"`
  2308. }
  2309. // The data of employee config information | EmployeeConfig信息
  2310. // swagger:model EmployeeConfigInfo
  2311. type EmployeeConfigInfo struct {
  2312. BaseIDInfo
  2313. // 类型:scene-场景 switch_in-接入方式
  2314. Stype *string `json:"stype,optional"`
  2315. // 标题
  2316. Title *string `json:"title,optional"`
  2317. // 图片地址
  2318. Photo *string `json:"photo,optional"`
  2319. }
  2320. // EmployeeConfig list data | EmployeeConfig列表数据
  2321. // swagger:model EmployeeConfigListInfo
  2322. type EmployeeConfigListInfo struct {
  2323. BaseListInfo
  2324. // The API list data | EmployeeConfig列表数据
  2325. Data []EmployeeConfigInfo `json:"data"`
  2326. }
  2327. // Employee config response | Employee配置信息返回体
  2328. // swagger:model EmployeeConfigListReq
  2329. type EmployeeConfigListReq struct {
  2330. /// 类型:scene-场景 switch_in-接入方式
  2331. Stype *string `json:"stype,optional"`
  2332. }
  2333. // EmployeeConfig information response | EmployeeConfig信息返回体
  2334. type EmployeeConfig struct {
  2335. Scene []EmployeeConfigInfo `json:"scene"`
  2336. SwitchIn []EmployeeConfigInfo `json:"switchIn"`
  2337. }
  2338. // Employee config response | Employee配置信息返回体
  2339. // swagger:model EmployeeConfigListResp
  2340. type EmployeeConfigListResp struct {
  2341. BaseDataInfo
  2342. // Employee information | Employee数据
  2343. Data EmployeeConfig `json:"data"`
  2344. }
  2345. // The data of token information | Token信息
  2346. // swagger:model TokenInfo
  2347. type TokenInfo struct {
  2348. BaseIDInfo
  2349. // 过期时间
  2350. ExpireAt *int64 `json:"expireAt,optional"`
  2351. ExpireAtStr *string `json:"expireAtStr,optional"`
  2352. // Token
  2353. Token *string `json:"token,optional"`
  2354. // Mac地址
  2355. Mac *string `json:"mac,optional"`
  2356. // 租户ID
  2357. OrganizationId *uint64 `json:"organization_id,optional"`
  2358. OrganizationName *string `json:"organizationName,optional"`
  2359. AgentId *uint64 `json:"agent_id,optional"`
  2360. AgentInfo *AgentInfo `json:"agent_info,optional"`
  2361. CustomAgentBase *string `json:"custom_agent_base,optional"`
  2362. CustomAgentKey *string `json:"custom_agent_key,optional"`
  2363. OpenaiBase *string `json:"openai_base,optional"`
  2364. OpenaiKey *string `json:"openai_key,optional"`
  2365. }
  2366. // The response data of token list | Token列表数据
  2367. // swagger:model TokenListResp
  2368. type TokenListResp struct {
  2369. BaseDataInfo
  2370. // Token list data | Token列表数据
  2371. Data TokenListInfo `json:"data"`
  2372. }
  2373. // Token list data | Token列表数据
  2374. // swagger:model TokenListInfo
  2375. type TokenListInfo struct {
  2376. BaseListInfo
  2377. // The API list data | Token列表数据
  2378. Data []TokenInfo `json:"data"`
  2379. }
  2380. // Get token list request params | Token列表请求参数
  2381. // swagger:model TokenListReq
  2382. type TokenListReq struct {
  2383. PageInfo
  2384. // Token
  2385. Token *string `json:"token,optional"`
  2386. // Mac地址
  2387. Mac *string `json:"mac,optional"`
  2388. OrganizationId *uint64 `json:"organization_id,optional"`
  2389. OrganizationName *string `json:"organizationName,optional"`
  2390. }
  2391. // Token information response | Token信息返回体
  2392. // swagger:model TokenInfoResp
  2393. type TokenInfoResp struct {
  2394. BaseDataInfo
  2395. // Token information | Token数据
  2396. Data TokenInfo `json:"data"`
  2397. }
  2398. // swagger:model CheckTokenReq
  2399. type CheckTokenReq struct {
  2400. // Token
  2401. Token *string `json:"token"`
  2402. // Mac地址
  2403. Mac *string `json:"mac"`
  2404. }
  2405. // swagger:model CheckTokenResp
  2406. type CheckTokenResp struct {
  2407. // 是否合法
  2408. Valid *bool `json:"valid"`
  2409. // Sign 签名内容
  2410. Sign *string `json:"sign"`
  2411. // Timestamp 时间戳
  2412. Timestamp *int64 `json:"timestamp"`
  2413. AgentInfo *AgentInfo `json:"agent_info"`
  2414. CustomAgentBase *string `json:"custom_agent_base"`
  2415. CustomAgentKey *string `json:"custom_agent_key"`
  2416. OpenaiBase *string `json:"openai_base"`
  2417. OpenaiKey *string `json:"openai_key"`
  2418. DatasetBase *string `json:"dataset_base"`
  2419. DatasetKey *string `json:"dataset_key"`
  2420. }
  2421. // The data of category information | Category信息
  2422. // swagger:model CategoryInfo
  2423. type CategoryInfo struct {
  2424. BaseIDInfo
  2425. // name | 角色名称
  2426. Name *string `json:"name,optional"`
  2427. // organization_id | 租户ID
  2428. OrganizationId *uint64 `json:"organizationId,optional"`
  2429. }
  2430. // The response data of category list | Category列表数据
  2431. // swagger:model CategoryListResp
  2432. type CategoryListResp struct {
  2433. BaseDataInfo
  2434. // Category list data | Category列表数据
  2435. Data CategoryListInfo `json:"data"`
  2436. }
  2437. // Category list data | Category列表数据
  2438. // swagger:model CategoryListInfo
  2439. type CategoryListInfo struct {
  2440. BaseListInfo
  2441. // The API list data | Category列表数据
  2442. Data []CategoryInfo `json:"data"`
  2443. }
  2444. // Get category list request params | Category列表请求参数
  2445. // swagger:model CategoryListReq
  2446. type CategoryListReq struct {
  2447. PageInfo
  2448. // name | 角色名称
  2449. Name *string `json:"name,optional"`
  2450. }
  2451. // Category information response | Category信息返回体
  2452. // swagger:model CategoryInfoResp
  2453. type CategoryInfoResp struct {
  2454. BaseDataInfo
  2455. // Category information | Category数据
  2456. Data CategoryInfo `json:"data"`
  2457. }
  2458. // The data of agent base information | AgentBase信息
  2459. // swagger:model AgentBaseInfo
  2460. type AgentBaseInfo struct {
  2461. Id *string `json:"id,optional"`
  2462. }
  2463. // The response data of agent base list | AgentBase列表数据
  2464. // swagger:model AgentBaseListResp
  2465. type AgentBaseListResp struct {
  2466. BaseDataInfo
  2467. // AgentBase list data | AgentBase列表数据
  2468. Data AgentBaseListInfo `json:"data"`
  2469. }
  2470. // AgentBase list data | AgentBase列表数据
  2471. // swagger:model AgentBaseListInfo
  2472. type AgentBaseListInfo struct {
  2473. BaseListInfo
  2474. // The API list data | AgentBase列表数据
  2475. Data []AgentBaseInfo `json:"data"`
  2476. }
  2477. // Get agent base list request params | AgentBase列表请求参数
  2478. // swagger:model AgentBaseListReq
  2479. type AgentBaseListReq struct {
  2480. PageInfo
  2481. // q
  2482. Q *string `json:"q,optional"`
  2483. // a
  2484. A *string `json:"a,optional"`
  2485. // dataset_id
  2486. DatasetId *string `json:"datasetId,optional"`
  2487. }
  2488. // AgentBase information response | AgentBase信息返回体
  2489. // swagger:model AgentBaseInfoResp
  2490. type AgentBaseInfoResp struct {
  2491. BaseDataInfo
  2492. // AgentBase information | AgentBase数据
  2493. Data AgentBaseInfo `json:"data"`
  2494. }
  2495. // The data of chat records information | ChatRecords信息
  2496. // swagger:model ChatRecordsInfo
  2497. type ChatRecordsInfo struct {
  2498. BaseIDInfo
  2499. // 内容
  2500. Content *string `json:"content,optional"`
  2501. // 内容类型:1-提问 2-回答
  2502. ContentType *uint8 `json:"contentType,optional"`
  2503. // 角色类型:1-用户 2-智能体
  2504. RoleType *string `json:"roleType,optional"`
  2505. // 会话ID
  2506. SessionId *uint64 `json:"sessionId,optional"`
  2507. // 用户ID
  2508. UserId *uint64 `json:"userId,optional"`
  2509. // 聊天ID
  2510. BotId *uint64 `json:"botId,optional"`
  2511. // 类型:1-微信 2-小程序card 3-智能体
  2512. BotType *uint8 `json:"botType,optional,options=1|2|3"`
  2513. Finish bool `json:"finish,optional"`
  2514. }
  2515. // The response data of chat records list | ChatRecords列表数据
  2516. // swagger:model ChatRecordsListResp
  2517. type ChatRecordsListResp struct {
  2518. BaseDataInfo
  2519. // ChatRecords list data | ChatRecords列表数据
  2520. Data ChatRecordsListInfo `json:"data"`
  2521. }
  2522. // ChatRecords list data | ChatRecords列表数据
  2523. // swagger:model ChatRecordsListInfo
  2524. type ChatRecordsListInfo struct {
  2525. BaseListInfo
  2526. // The API list data | ChatRecords列表数据
  2527. Data []ChatRecordsInfo `json:"data"`
  2528. }
  2529. // Get chat records list request params | ChatRecords列表请求参数
  2530. // swagger:model ChatRecordsListReq
  2531. type ChatRecordsListReq struct {
  2532. PageInfo
  2533. SessionId *uint64 `json:"sessionId"`
  2534. BotId *uint64 `json:"botId,optional"`
  2535. BotType *uint8 `json:"botType,optional"`
  2536. }
  2537. // ChatRecords information response | ChatRecords信息返回体
  2538. // swagger:model ChatRecordsInfoResp
  2539. type ChatRecordsInfoResp struct {
  2540. BaseDataInfo
  2541. // ChatRecords information | ChatRecords数据
  2542. Data ChatRecordsInfo `json:"data"`
  2543. }
  2544. // swagger:model ChatRecommendReq
  2545. type ChatRecommendReq struct {
  2546. SessionId *uint64 `json:"sessionId"`
  2547. }
  2548. // swagger:model ChatRecommendResp
  2549. type ChatRecommendResp struct {
  2550. BaseDataInfo
  2551. // The API list data | ChatRecords列表数据
  2552. Data ChatRecommend `json:"data"`
  2553. }
  2554. type ChatRecommend struct {
  2555. Data []string `json:"data"`
  2556. SessionId uint64 `json:"sessionId"`
  2557. }
  2558. // swagger:model ChatAskReq
  2559. type ChatAskReq struct {
  2560. CardId *uint64 `json:"cardId"`
  2561. Question *string `json:"question"`
  2562. SessionId *int `json:"sessionId"`
  2563. }
  2564. // swagger:model ChatAskResp
  2565. type ChatAskResp struct {
  2566. BaseDataInfo
  2567. Data *string `json:"data"`
  2568. }
  2569. // swagger:model GptChatReq
  2570. type GptChatReq struct {
  2571. ConversationId *string `json:"conversationId,optional"`
  2572. Content *string `json:"content"`
  2573. AgentId *uint64 `json:"agentId"`
  2574. }
  2575. // swagger:model GptMessageReq
  2576. type GptMessageReq struct {
  2577. ConversationId *string `json:"conversationId,optional"`
  2578. FirstId *string `json:"firstId,optional"`
  2579. Limit *int `json:"limit"`
  2580. AgentId *uint64 `json:"agentId"`
  2581. }
  2582. // swagger:model GptMessageResp
  2583. type GptMessageResp struct {
  2584. BaseDataInfo
  2585. Data GptMessageList `json:"data"`
  2586. }
  2587. type GptMessageList struct {
  2588. HasMore bool `json:"hasMore"`
  2589. Data []Message `json:"data"`
  2590. }
  2591. type Message struct {
  2592. Id *string `json:"id"`
  2593. ConversationId *string `json:"conversationId,optional"`
  2594. Query *string `json:"query"`
  2595. Answer *string `json:"answer"`
  2596. Inputs interface{} `json:"inputs"`
  2597. CreatedAt *int `json:"createdAt"`
  2598. }
  2599. // swagger:model GptsSessionReq
  2600. type GptsSessionReq struct {
  2601. Limit *int `json:"limit"`
  2602. LastId *string `json:"lastId,optional"`
  2603. AgentId *uint64 `json:"agentId"`
  2604. }
  2605. // swagger:model GptsSessionResp
  2606. type GptsSessionResp struct {
  2607. BaseDataInfo
  2608. Data GptsSessionList `json:"data"`
  2609. }
  2610. type GptsSessionList struct {
  2611. HasMore bool `json:"hasMore"`
  2612. Data []Session `json:"data"`
  2613. }
  2614. type Session struct {
  2615. Id *string `json:"id"`
  2616. Name *string `json:"name"`
  2617. CreatedAt *int `json:"createdAt"`
  2618. Inputs interface{} `json:"inputs"`
  2619. }
  2620. // swagger:model GptsDeleteSessionReq
  2621. type GptsDeleteSessionReq struct {
  2622. AgentId *uint64 `json:"agentId"`
  2623. ConversationId *string `json:"conversationId"`
  2624. }
  2625. // swagger:model GptsRenameSessionReq
  2626. type GptsRenameSessionReq struct {
  2627. AgentId *uint64 `json:"agentId"`
  2628. ConversationId *string `json:"conversationId"`
  2629. Name *string `json:"name"`
  2630. }
  2631. // The data of chat session information | ChatSession信息
  2632. // swagger:model ChatSessionInfo
  2633. type ChatSessionInfo struct {
  2634. BaseIDInfo
  2635. // 名称
  2636. Name *string `json:"name,optional"`
  2637. // 用户ID
  2638. UserId *uint64 `json:"userId,optional"`
  2639. UserName *string `json:"userName,optional"`
  2640. // 聊天ID
  2641. BotId *uint64 `json:"botId,optional"`
  2642. // 主体名称
  2643. BotName *string `json:"botName,optional"`
  2644. // 类型:1-微信 2-小程序card 3-智能体
  2645. BotType *uint8 `json:"botType,optional"`
  2646. // 类型:1-微信 2-小程序card 3-智能体
  2647. BotTypeStr *string `json:"botTypeStr,optional"`
  2648. }
  2649. // The response data of chat session list | ChatSession列表数据
  2650. // swagger:model ChatSessionListResp
  2651. type ChatSessionListResp struct {
  2652. BaseDataInfo
  2653. // ChatSession list data | ChatSession列表数据
  2654. Data ChatSessionListInfo `json:"data"`
  2655. }
  2656. // ChatSession list data | ChatSession列表数据
  2657. // swagger:model ChatSessionListInfo
  2658. type ChatSessionListInfo struct {
  2659. BaseListInfo
  2660. // The API list data | ChatSession列表数据
  2661. Data []ChatSessionInfo `json:"data"`
  2662. }
  2663. // Get chat session list request params | ChatSession列表请求参数
  2664. // swagger:model ChatSessionListReq
  2665. type ChatSessionListReq struct {
  2666. PageInfo
  2667. BotId *uint64 `json:"botId,optional"`
  2668. BotType *uint8 `json:"botType,optional"`
  2669. BotName *string `json:"botName,optional"`
  2670. }
  2671. // ChatSession information response | ChatSession信息返回体
  2672. // swagger:model ChatSessionInfoResp
  2673. type ChatSessionInfoResp struct {
  2674. BaseDataInfo
  2675. // ChatSession information | ChatSession数据
  2676. Data ChatSessionInfo `json:"data"`
  2677. }
  2678. // The data of wx card information | WxCard信息
  2679. // swagger:model WxCardInfo
  2680. type WxCardInfo struct {
  2681. BaseIDInfo
  2682. // user表ID
  2683. UserId *uint64 `json:"userId,optional"`
  2684. // wx表ID
  2685. WxUserId *uint64 `json:"wxUserId,optional"`
  2686. // 头像
  2687. Avatar *string `json:"avatar,optional"`
  2688. // logo
  2689. Logo *string `json:"logo,optional"`
  2690. // 名称
  2691. Name *string `json:"name,optional"`
  2692. // 公司
  2693. Company *string `json:"company,optional"`
  2694. // 地址
  2695. Address *string `json:"address,optional"`
  2696. // 手机号
  2697. Phone *string `json:"phone,optional"`
  2698. // 公众号
  2699. OfficialAccount *string `json:"officialAccount,optional"`
  2700. // 微信号
  2701. WechatAccount *string `json:"wechatAccount,optional"`
  2702. // 邮箱
  2703. Email *string `json:"email,optional"`
  2704. // 聊天信息
  2705. ApiBase *string `json:"apiBase,optional"`
  2706. ApiKey *string `json:"apiKey,optional"`
  2707. // AI信息
  2708. AiInfo *string `json:"aiInfo,optional"`
  2709. // 个人介绍
  2710. Intro *string `json:"intro,optional"`
  2711. ShowChat *bool `json:"showChat,optional"`
  2712. ShowAi *bool `json:"showAi,optional"`
  2713. IsVip *bool `json:"isVip,optional"`
  2714. }
  2715. // swagger:model WxCardSimpleInfo
  2716. type WxCardSimpleInfo struct {
  2717. ID *uint64 `json:"id,optional"`
  2718. // 头像
  2719. Avatar *string `json:"avatar,optional"`
  2720. // 名称
  2721. Name *string `json:"name,optional"`
  2722. Type *string `json:"type,optional"`
  2723. }
  2724. // The response data of wx card list | WxCard列表数据
  2725. // swagger:model WxCardListResp
  2726. type WxCardListResp struct {
  2727. BaseDataInfo
  2728. // WxCard list data | WxCard列表数据
  2729. Data WxCardListInfo `json:"data"`
  2730. }
  2731. // WxCard list data | WxCard列表数据
  2732. // swagger:model WxCardListInfo
  2733. type WxCardListInfo struct {
  2734. BaseListInfo
  2735. // The API list data | WxCard列表数据
  2736. Data []WxCardInfo `json:"data"`
  2737. }
  2738. // Get wx card list request params | WxCard列表请求参数
  2739. // swagger:model WxCardListReq
  2740. type WxCardListReq struct {
  2741. PageInfo
  2742. // 头像
  2743. Avatar *string `json:"avatar,optional"`
  2744. // logo
  2745. Logo *string `json:"logo,optional"`
  2746. // 名称
  2747. Name *string `json:"name,optional"`
  2748. }
  2749. // WxCard information response | WxCard信息返回体
  2750. // swagger:model WxCardInfoResp
  2751. type WxCardInfoResp struct {
  2752. BaseDataInfo
  2753. // WxCard information | WxCard数据
  2754. Data WxCardInfo `json:"data"`
  2755. }
  2756. // swagger:model QrcodeReq
  2757. type QrcodeReq struct {
  2758. Path string `form:"path"`
  2759. Width int64 `form:"width"`
  2760. EnvVersion string `form:"envVersion"`
  2761. }
  2762. // The data of wx card user information | WxCardUser信息
  2763. // swagger:model WxCardUserInfo
  2764. type WxCardUserInfo struct {
  2765. BaseIDInfo
  2766. // 微信id
  2767. Wxid *string `json:"wxid,optional"`
  2768. // 微信号
  2769. Account *string `json:"account,optional"`
  2770. // 头像
  2771. Avatar *string `json:"avatar,optional"`
  2772. // 昵称
  2773. Nickname *string `json:"nickname,optional"`
  2774. // 备注名
  2775. Remark *string `json:"remark,optional"`
  2776. // 手机号
  2777. Phone *string `json:"phone,optional"`
  2778. // OpenID
  2779. OpenId *string `json:"openId,optional"`
  2780. // UnionID
  2781. UnionId *string `json:"unionId,optional"`
  2782. // SessionKey
  2783. SessionKey *string `json:"sessionKey,optional"`
  2784. // IsVip
  2785. IsVip *string `json:"isVip,optional"`
  2786. }
  2787. // The response data of wx card user list | WxCardUser列表数据
  2788. // swagger:model WxCardUserListResp
  2789. type WxCardUserListResp struct {
  2790. BaseDataInfo
  2791. // WxCardUser list data | WxCardUser列表数据
  2792. Data WxCardUserListInfo `json:"data"`
  2793. }
  2794. // WxCardUser list data | WxCardUser列表数据
  2795. // swagger:model WxCardUserListInfo
  2796. type WxCardUserListInfo struct {
  2797. BaseListInfo
  2798. // The API list data | WxCardUser列表数据
  2799. Data []WxCardUserInfo `json:"data"`
  2800. }
  2801. // Get wx card user list request params | WxCardUser列表请求参数
  2802. // swagger:model WxCardUserListReq
  2803. type WxCardUserListReq struct {
  2804. PageInfo
  2805. // 微信id
  2806. Wxid *string `json:"wxid,optional"`
  2807. // 微信号
  2808. Account *string `json:"account,optional"`
  2809. // 头像
  2810. Avatar *string `json:"avatar,optional"`
  2811. // 昵称
  2812. Nickname *string `json:"nickname,optional"`
  2813. }
  2814. // WxCardUser information response | WxCardUser信息返回体
  2815. // swagger:model WxCardUserInfoResp
  2816. type WxCardUserInfoResp struct {
  2817. BaseDataInfo
  2818. // WxCardUser information | WxCardUser数据
  2819. Data WxCardUserInfo `json:"data"`
  2820. }
  2821. // The data of wx card visit information | WxCardVisit信息
  2822. // swagger:model WxCardVisitInfo
  2823. type WxCardVisitInfo struct {
  2824. BaseIDInfo
  2825. // user表ID
  2826. UserId *uint64 `json:"userId,optional"`
  2827. // user名
  2828. UserName *string `json:"userName,optional"`
  2829. // 被访ID
  2830. BotId *uint64 `json:"botId,optional"`
  2831. // 类型:1-微信 2-小程序 3-智能体
  2832. BotType *uint8 `json:"botType,optional"`
  2833. // 类型:1-微信 2-小程序 3-智能体
  2834. BotTypeStr *string `json:"botTypeStr,optional"`
  2835. CardInfo WxCardSimpleInfo `json:"cardInfo,optional,omitempty"`
  2836. }
  2837. // swagger:model WxCardVisitReq
  2838. type WxCardVisitReq struct {
  2839. BaseIDInfo
  2840. // user表ID
  2841. UserId *uint64 `json:"userId,optional"`
  2842. // 被访ID
  2843. BotId *uint64 `json:"botId,optional"`
  2844. // 类型:1-微信 2-小程序 3-智能体
  2845. BotType *uint8 `json:"botType,optional"`
  2846. }
  2847. // swagger:model WxCardVisitSingleInfo
  2848. type WxCardVisitSingleInfo struct {
  2849. BaseIDInfo
  2850. // user表ID
  2851. UserId *uint64 `json:"userId,optional"`
  2852. // 被访ID
  2853. BotId *uint64 `json:"botId,optional"`
  2854. // 类型:1-微信 2-小程序 3-智能体
  2855. BotType *uint8 `json:"botType,optional"`
  2856. CardInfo WxCardInfo `json:"cardInfo,optional"`
  2857. }
  2858. // The response data of wx card visit list | WxCardVisit列表数据
  2859. // swagger:model WxCardVisitListResp
  2860. type WxCardVisitListResp struct {
  2861. BaseDataInfo
  2862. // WxCardVisit list data | WxCardVisit列表数据
  2863. Data WxCardVisitListInfo `json:"data"`
  2864. }
  2865. // WxCardVisit list data | WxCardVisit列表数据
  2866. // swagger:model WxCardVisitListInfo
  2867. type WxCardVisitListInfo struct {
  2868. BaseListInfo
  2869. // The API list data | WxCardVisit列表数据
  2870. Data []WxCardVisitInfo `json:"data"`
  2871. }
  2872. // Get wx card visit list request params | WxCardVisit列表请求参数
  2873. // swagger:model WxCardVisitListReq
  2874. type WxCardVisitListReq struct {
  2875. PageInfo
  2876. BotId *uint64 `json:"botId,optional"`
  2877. BotType *uint8 `json:"botType,optional"`
  2878. BotName *string `json:"botName,optional"`
  2879. }
  2880. // WxCardVisit information response | WxCardVisit信息返回体
  2881. // swagger:model WxCardVisitInfoResp
  2882. type WxCardVisitInfoResp struct {
  2883. BaseDataInfo
  2884. // WxCardVisit information | WxCardVisit数据
  2885. Data WxCardVisitInfo `json:"data"`
  2886. }
  2887. // swagger:model AvatarInfo
  2888. type AvatarInfo struct {
  2889. RequestId *string `json:"requestId"`
  2890. SessionId *string `json:"SessionId"`
  2891. Token *string `json:"token"`
  2892. Channel Channel `json:"channel"`
  2893. }
  2894. type Channel struct {
  2895. ChannelId *string `json:"channelId"`
  2896. Token *string `json:"token"`
  2897. Type *string `json:"type"`
  2898. ExpiredTime *string `json:"expiredTime"`
  2899. Nonce *string `json:"nonce"`
  2900. UserId *string `json:"userId"`
  2901. AppId *string `json:"appId"`
  2902. UserInfoInChannel *string `json:"userInfoInChannel"`
  2903. Gslb []*string `json:"gslb"`
  2904. }
  2905. // start avatar request | 启动数字人
  2906. // swagger:model AvatarConfigReq
  2907. type AvatarConfigReq struct {
  2908. // 名片 ID
  2909. CardId *uint64 `json:"card_id,optional"`
  2910. }
  2911. // start avatar response | 启动数字人
  2912. // swagger:model AvatarConfigResp
  2913. type AvatarConfigResp struct {
  2914. BaseDataInfo
  2915. // Agent information | Agent数据
  2916. Data AvatarInfo `json:"data"`
  2917. Extra Extra `json:"extra"`
  2918. }
  2919. type Extra struct {
  2920. Live int64 `json:"live"`
  2921. Total int64 `json:"total"`
  2922. }
  2923. // swagger:model AvatarStsResp
  2924. type AvatarStsResp struct {
  2925. BaseDataInfo
  2926. // Sts information | Sts 数据
  2927. Data StsInfo `json:"data"`
  2928. }
  2929. // swagger:model StsInfo
  2930. type StsInfo struct {
  2931. Expiration *string `json:"expiration"`
  2932. AccessKeyId *string `json:"accessKeyId"`
  2933. AccessKeySecret *string `json:"accessKeySecret"`
  2934. SecurityToken *string `json:"securityToken"`
  2935. RequestId *string `json:"requestId"`
  2936. }
  2937. // swagger:model AvatarSignatureResp
  2938. type AvatarSignatureResp struct {
  2939. BaseDataInfo
  2940. // Sts information | Sts 数据
  2941. Data SignatureInfo `json:"data"`
  2942. }
  2943. // swagger:model SignatureInfo
  2944. type SignatureInfo struct {
  2945. Key *string `json:"key"`
  2946. OSSAccessKeyId *string `json:"OSSAccessKeyId"`
  2947. Policy *string `json:"policy"`
  2948. Signature *string `json:"signature"`
  2949. }
  2950. // send text | 数字人-发送消息
  2951. // swagger:model SendTextReq
  2952. type SendTextReq struct {
  2953. CardId *uint64 `json:"cardId"`
  2954. SessionId *string `json:"sessionId"`
  2955. Text *string `json:"text"`
  2956. IsStream *bool `json:"isStream,optional"`
  2957. Index *int32 `json:"index,optional"`
  2958. Position *string `json:"position,optional"`
  2959. }
  2960. // swagger:model SendTextResp
  2961. type SendTextResp struct {
  2962. BaseDataInfo
  2963. Data SendText `json:"data"`
  2964. }
  2965. type SendText struct {
  2966. SessionId *string `json:"sessionId"`
  2967. UniqueCode *string `json:"uniqueCode"`
  2968. }
  2969. // stop instance | 数字人-停止实例
  2970. // swagger:model StopInstanceReq
  2971. type StopInstanceReq struct {
  2972. CardId *uint64 `json:"cardId"`
  2973. SessionId *string `json:"sessionId"`
  2974. }
  2975. // swagger:model StopInstanceResp
  2976. type StopInstanceResp struct {
  2977. BaseDataInfo
  2978. Data StopInstance `json:"data"`
  2979. }
  2980. type StopInstance struct {
  2981. SessionId *string `json:"sessionId"`
  2982. RequestId *string `json:"requestId"`
  2983. }
  2984. // The data of aliyun avatar information | AliyunAvatar信息
  2985. // swagger:model AliyunAvatarInfo
  2986. type AliyunAvatarInfo struct {
  2987. BaseIDInfo
  2988. // user_id | wx_card_user_id
  2989. UserId *uint64 `json:"userId,optional"`
  2990. // biz_id | BizId
  2991. BizId *string `json:"bizId,optional"`
  2992. // access_key_id | AccessKeyId
  2993. AccessKeyId *string `json:"accessKeyId,optional"`
  2994. // access_key_secret | AccessKeySecret
  2995. AccessKeySecret *string `json:"accessKeySecret,optional"`
  2996. // app_id | AppId
  2997. AppId *string `json:"appId,optional"`
  2998. // tenant_id | TenantId
  2999. TenantId *uint64 `json:"TenantId,optional"`
  3000. // response | 阿里云avatar响应
  3001. Response *string `json:"response,optional"`
  3002. // token | Token
  3003. Token *string `json:"token,optional"`
  3004. // session_id | SessionId
  3005. SessionId *string `json:"sessionId,optional"`
  3006. }
  3007. // The response data of aliyun avatar list | AliyunAvatar列表数据
  3008. // swagger:model AliyunAvatarListResp
  3009. type AliyunAvatarListResp struct {
  3010. BaseDataInfo
  3011. // AliyunAvatar list data | AliyunAvatar列表数据
  3012. Data AliyunAvatarListInfo `json:"data"`
  3013. }
  3014. // AliyunAvatar list data | AliyunAvatar列表数据
  3015. // swagger:model AliyunAvatarListInfo
  3016. type AliyunAvatarListInfo struct {
  3017. BaseListInfo
  3018. // The API list data | AliyunAvatar列表数据
  3019. Data []AliyunAvatarInfo `json:"data"`
  3020. }
  3021. // Get aliyun avatar list request params | AliyunAvatar列表请求参数
  3022. // swagger:model AliyunAvatarListReq
  3023. type AliyunAvatarListReq struct {
  3024. PageInfo
  3025. // biz_id | BizId
  3026. BizId *string `json:"bizId,optional"`
  3027. // access_key_id | AccessKeyId
  3028. AccessKeyId *string `json:"accessKeyId,optional"`
  3029. // access_key_secret | AccessKeySecret
  3030. AccessKeySecret *string `json:"accessKeySecret,optional"`
  3031. }
  3032. // AliyunAvatar information response | AliyunAvatar信息返回体
  3033. // swagger:model AliyunAvatarInfoResp
  3034. type AliyunAvatarInfoResp struct {
  3035. BaseDataInfo
  3036. // AliyunAvatar information | AliyunAvatar数据
  3037. Data AliyunAvatarInfo `json:"data"`
  3038. }
  3039. // The response data of UsageDetail information | UsageDetail信息
  3040. // swagger:model UsageDetailInfo
  3041. type UsageDetailInfo struct {
  3042. BaseIDInfo
  3043. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3044. Status *uint8 `json:"status,optional"`
  3045. // 1 微信 2 名片
  3046. Type *int
  3047. // 微信id
  3048. BotId *string `json:"botId,optional"`
  3049. // 微信id或open_id
  3050. ReceiverId *string `json:"receiverId,optional"`
  3051. // 1 cow-basic 2 cow-agent 3 cow-sop 4 mp-card 5 mp-employee
  3052. App *string
  3053. // 名片会话id
  3054. SessionId *uint64 `json:"sessionId,optional"`
  3055. // 请求内容
  3056. Request *string `json:"request,optional"`
  3057. // 响应内容
  3058. Response *string `json:"response,optional"`
  3059. // 使用token总数
  3060. TotalTokens *uint64 `json:"totalTokens,optional"`
  3061. // 请求token数
  3062. PromptTokens *uint64 `json:"promptTokens,optional"`
  3063. // 响应token数
  3064. CompletionTokens *uint64 `json:"completionTokens,optional"`
  3065. // 组织ID
  3066. OrganizationId *uint64 `json:"organizationId,optional"`
  3067. OrganizationName *string `json:"organizationName,optional"`
  3068. Model *string `json:"model,optional"`
  3069. Credits *float64 `json:"credits,optional"`
  3070. }
  3071. // The response data of UsageDetail list | UsageDetail列表数据
  3072. // swagger:model UsageDetailListResp
  3073. type UsageDetailListResp struct {
  3074. BaseDataInfo
  3075. // UsageDetail list data | UsageDetail列表数据
  3076. Data UsageDetailListInfo `json:"data"`
  3077. }
  3078. // UsageDetail list data | UsageDetail列表数据
  3079. // swagger:model UsageDetailListInfo
  3080. type UsageDetailListInfo struct {
  3081. BaseListInfo
  3082. // The API list data | UsageDetail列表数据
  3083. Data []UsageDetailInfo `json:"data"`
  3084. }
  3085. // Get wx list request params | Wx列表请求参数
  3086. // swagger:model UsageDetailListReq
  3087. type UsageDetailListReq struct {
  3088. PageInfo
  3089. // 租户id
  3090. OrganizationId *uint64 `json:"organizationId,optional"`
  3091. Type *int `json:"type,optional"`
  3092. BotId *string `json:"botId,optional"`
  3093. ReceiverId *string `json:"receiverId,optional"`
  3094. SearchDate []string `json:"searchDate,optional"`
  3095. }
  3096. // swagger:model UsageDetailResp
  3097. type UsageDetailResp struct {
  3098. BaseDataInfo
  3099. Data UsageDetailInfo `json:"data"`
  3100. }
  3101. // The response data of UsageTotal information | UsageTotal信息
  3102. // swagger:model UsageTotalInfo
  3103. type UsageTotalInfo struct {
  3104. BaseIDInfo
  3105. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3106. Status *uint8 `json:"status,optional"`
  3107. // 1 微信 2 名片
  3108. Type *int
  3109. // 微信或名片id
  3110. BotId *string `json:"botId,optional"`
  3111. // 使用token总数
  3112. TotalTokens *uint64 `json:"totalTokens,optional"`
  3113. // 重制后的起始usage_detail 索引
  3114. StartIndex *uint64 `json:"startIndex,optional"`
  3115. // usage_detail 索引
  3116. EndIndex *uint64 `json:"endIndex,optional"`
  3117. // 组织ID
  3118. OrganizationId *uint64 `json:"organizationId,optional"`
  3119. }
  3120. // The response data of UsageTotal list | UsageTotal列表数据
  3121. // swagger:model UsageTotalListResp
  3122. type UsageTotalListResp struct {
  3123. BaseDataInfo
  3124. // UsageTotal list data | UsageTotal列表数据
  3125. Data UsageTotalListInfo `json:"data"`
  3126. }
  3127. // UsageTotal list data | UsageTotal列表数据
  3128. // swagger:model UsageTotalListInfo
  3129. type UsageTotalListInfo struct {
  3130. BaseListInfo
  3131. // The API list data | UsageTotal列表数据
  3132. Data []UsageTotalInfo `json:"data"`
  3133. }
  3134. // Get wx list request params | Wx列表请求参数
  3135. // swagger:model UsageTotalListReq
  3136. type UsageTotalListReq struct {
  3137. PageInfo
  3138. // 租户id
  3139. OrganizationId *uint64 `json:"organizationId,optional"`
  3140. }
  3141. // The data of alloc agent information | AllocAgent信息
  3142. // swagger:model AllocAgentInfo
  3143. type AllocAgentInfo struct {
  3144. BaseIDInfo
  3145. // user_id | 前台用户ID
  3146. UserId *string `json:"userId,optional"`
  3147. // organization_id | 租户ID
  3148. OrganizationId *uint64 `json:"organizationId,optional"`
  3149. // agents | 分配的智能体IDs
  3150. Agents []uint64 `json:"agents,optional"`
  3151. // status | 状态 1-正常 2-禁用
  3152. Status *int `json:"status,optional"`
  3153. }
  3154. type AllocAgentQuery struct {
  3155. // user_id | 前台用户ID
  3156. UserId *string `json:"userId,optional"`
  3157. // organization_id | 租户ID
  3158. OrganizationId *uint64 `json:"organizationId,optional"`
  3159. }
  3160. // The response data of alloc agent list | AllocAgent列表数据
  3161. // swagger:model AllocAgentListResp
  3162. type AllocAgentListResp struct {
  3163. BaseDataInfo
  3164. // AllocAgent list data | AllocAgent列表数据
  3165. Data AllocAgentListInfo `json:"data"`
  3166. }
  3167. // AllocAgent list data | AllocAgent列表数据
  3168. // swagger:model AllocAgentListInfo
  3169. type AllocAgentListInfo struct {
  3170. BaseListInfo
  3171. // The API list data | AllocAgent列表数据
  3172. Data []AllocAgentInfo `json:"data"`
  3173. }
  3174. // Get alloc agent list request params | AllocAgent列表请求参数
  3175. // swagger:model AllocAgentListReq
  3176. type AllocAgentListReq struct {
  3177. PageInfo
  3178. // agents | 分配的智能体IDs
  3179. Agents *string `json:"agents,optional"`
  3180. }
  3181. // AllocAgent information response | AllocAgent信息返回体
  3182. // swagger:model AllocAgentInfoResp
  3183. type AllocAgentInfoResp struct {
  3184. BaseDataInfo
  3185. // AllocAgent information | AllocAgent数据
  3186. Data AllocAgentInfo `json:"data"`
  3187. }
  3188. // swagger:model SignatureResp
  3189. type SignatureResp struct {
  3190. BaseDataInfo
  3191. // 临时签名
  3192. Data *string `json:"data"`
  3193. }
  3194. // swagger:model MessageReq
  3195. type MessageReq struct {
  3196. // 大模型生成内容
  3197. UserId *uint64 `json:"user_id"`
  3198. Text *string `json:"text"`
  3199. }
  3200. // swagger:model ChatReq
  3201. type ChatReq struct {
  3202. // 大模型生成内容
  3203. AvatarId *string `json:"avatar_id"`
  3204. UserId *uint64 `json:"user_id"`
  3205. Text *string `json:"text"`
  3206. }
  3207. // swagger:model DashboardInfo
  3208. type DashboardInfo struct {
  3209. BaseIDInfo
  3210. }
  3211. // swagger:model ChartsReq
  3212. type ChartsReq struct {
  3213. StartDate *string `json:"start_date"`
  3214. EndDate *string `json:"end_date"`
  3215. // 租户id
  3216. OrganizationId *uint64 `json:"organizationId,optional"`
  3217. Wxid *string `json:"wxid,optional"`
  3218. }
  3219. // swagger:model ChartsResp
  3220. type ChartsResp struct {
  3221. BaseDataInfo
  3222. Data *ChartsData `json:"data"`
  3223. }
  3224. type ChartsData struct {
  3225. AiResponse *ChartsUint `json:"ai_response"`
  3226. SopRun *ChartsUint `json:"sop_run"`
  3227. TotalFriend *ChartsUint `json:"total_friend"`
  3228. TotalGroup *ChartsUint `json:"total_group"`
  3229. AccountBalance *ChartsUint `json:"account_balance"`
  3230. ConsumeToken *ChartsUint `json:"consume_token"`
  3231. ActiveUser *ChartsUint `json:"active_user"`
  3232. NewUser *ChartsInt `json:"new_user"`
  3233. LabelDist []LabelsData `json:"label_dist"`
  3234. ConsumeCoin *ChartsUint `json:"consume_coin"`
  3235. }
  3236. type ChartsUint struct {
  3237. Count uint64 `json:"count"`
  3238. Rate *float32 `json:"rate"`
  3239. Label []string `json:"label"`
  3240. Val []uint64 `json:"val"`
  3241. LabelText string `json:"labelText"`
  3242. Tip *string `json:"tip"`
  3243. }
  3244. type ChartsInt struct {
  3245. Count int64 `json:"count"`
  3246. Rate *float32 `json:"rate"`
  3247. Label []string `json:"label"`
  3248. Val []int64 `json:"val"`
  3249. LabelText string `json:"labelText"`
  3250. Tip *string `json:"tip"`
  3251. }
  3252. type LabelsData struct {
  3253. Value uint64 `json:"value"`
  3254. Name string `json:"name"`
  3255. }
  3256. // swagger:model WxReq
  3257. type WxReq struct {
  3258. PageInfo
  3259. EndDate *string `json:"end_date"`
  3260. // 租户id
  3261. OrganizationId *uint64 `json:"organizationId,optional"`
  3262. Wxid *string `json:"wxid,optional"`
  3263. }
  3264. // swagger:model WxResp
  3265. type WxResp struct {
  3266. BaseDataInfo
  3267. Data WxList `json:"data"`
  3268. }
  3269. type WxList struct {
  3270. BaseListInfo
  3271. Data []WxData `json:"data"`
  3272. }
  3273. type WxData struct {
  3274. Nickname string `json:"nickname"`
  3275. TotalFriend uint64 `json:"total_friend"`
  3276. TotalGroup uint64 `json:"total_group"`
  3277. InteractionRate float32 `json:"interaction_rate"`
  3278. }
  3279. // The data of credit balance information | CreditBalance信息
  3280. // swagger:model CreditBalanceInfo
  3281. type CreditBalanceInfo struct {
  3282. BaseIDInfo
  3283. // user_id | 用户ID
  3284. // UserId *string `json:"userId,optional"`
  3285. // role | 角色设定
  3286. Balance *float64 `json:"balance,optional"`
  3287. // status | 状态 1-正常 2-禁用
  3288. Status *int `json:"status,optional"`
  3289. // organization_id | 租户ID
  3290. OrganizationId *uint64 `json:"organizationId,optional"`
  3291. OrganizationName *string `json:"organizationName,optional"`
  3292. }
  3293. // The response data of credit balance list | CreditBalance列表数据
  3294. // swagger:model CreditBalanceListResp
  3295. type CreditBalanceListResp struct {
  3296. BaseDataInfo
  3297. // CreditBalance list data | CreditBalance列表数据
  3298. Data CreditBalanceListInfo `json:"data"`
  3299. }
  3300. // CreditBalance list data | CreditBalance列表数据
  3301. // swagger:model CreditBalanceListInfo
  3302. type CreditBalanceListInfo struct {
  3303. BaseListInfo
  3304. // The API list data | CreditBalance列表数据
  3305. Data []CreditBalanceInfo `json:"data"`
  3306. }
  3307. // Get credit balance list request params | CreditBalance列表请求参数
  3308. // swagger:model CreditBalanceListReq
  3309. type CreditBalanceListReq struct {
  3310. PageInfo
  3311. // user_id | 用户ID
  3312. UserId *string `json:"userId,optional"`
  3313. OrganizationId *uint64 `json:"organizationId,optional"`
  3314. }
  3315. // CreditBalance information response | CreditBalance信息返回体
  3316. // swagger:model CreditBalanceInfoResp
  3317. type CreditBalanceInfoResp struct {
  3318. BaseDataInfo
  3319. // CreditBalance information | CreditBalance数据
  3320. Data CreditBalanceInfo `json:"data"`
  3321. }
  3322. // swagger:model CreditBalanceOperateReq
  3323. type CreditBalanceOperateReq struct {
  3324. OrganizationId *uint64 `json:"organizationId,optional"`
  3325. Number *float64 `json:"number,optional"`
  3326. PayNumber *float64 `json:"payNumber,optional"`
  3327. PayMethod *int `json:"payMethod,optional"`
  3328. Reason *string `json:"reason,optional"`
  3329. }
  3330. // The data of credit usage information | CreditUsage信息
  3331. // swagger:model CreditUsageInfo
  3332. type CreditUsageInfo struct {
  3333. BaseIDInfo
  3334. // user_id | 用户ID
  3335. // UserId *string `json:"userId,optional"`
  3336. // number | 积分改变量
  3337. Number *float64 `json:"number,optional"`
  3338. BeforeNumber *float64 `json:"beforeNumber,optional"`
  3339. AfterNumber *float64 `json:"afterNumber,optional"`
  3340. PayNumber *float64 `json:"payNumber,optional"`
  3341. PayMethod *int `json:"payMethod,optional"`
  3342. // status | 状态 1-正常 2-禁用
  3343. Status *int `json:"status,optional"`
  3344. // ntype | 积分变化类型:1-消耗 2-增加
  3345. Ntype *int `json:"ntype,optional"`
  3346. // table | 积分变化表名
  3347. Table *string `json:"table,optional"`
  3348. // organization_id | 租户ID
  3349. OrganizationId *uint64 `json:"organizationId,optional"`
  3350. OrganizationName *string `json:"organizationName,optional"`
  3351. // nid | 积分变化关联信息ID
  3352. Nid *uint64 `json:"nid,optional"`
  3353. // reason | 积分变动原因
  3354. Reason *string `json:"reason,optional"`
  3355. // operator | 积分变动人
  3356. Operator *string `json:"operator,optional"`
  3357. OperatorName *string `json:"operatorName,optional"`
  3358. }
  3359. // The response data of credit usage list | CreditUsage列表数据
  3360. // swagger:model CreditUsageListResp
  3361. type CreditUsageListResp struct {
  3362. BaseDataInfo
  3363. // CreditUsage list data | CreditUsage列表数据
  3364. Data CreditUsageListInfo `json:"data"`
  3365. }
  3366. // CreditUsage list data | CreditUsage列表数据
  3367. // swagger:model CreditUsageListInfo
  3368. type CreditUsageListInfo struct {
  3369. BaseListInfo
  3370. // The API list data | CreditUsage列表数据
  3371. Data []CreditUsageInfo `json:"data"`
  3372. }
  3373. // Get credit usage list request params | CreditUsage列表请求参数
  3374. // swagger:model CreditUsageListReq
  3375. type CreditUsageListReq struct {
  3376. PageInfo
  3377. OrganizationId *uint64 `json:"organizationId,optional"`
  3378. Ntype *int `json:"ntype,optional"`
  3379. SearchDate []string `json:"searchDate,optional"`
  3380. }
  3381. // CreditUsage information response | CreditUsage信息返回体
  3382. // swagger:model CreditUsageInfoResp
  3383. type CreditUsageInfoResp struct {
  3384. BaseDataInfo
  3385. // CreditUsage information | CreditUsage数据
  3386. Data CreditUsageInfo `json:"data"`
  3387. }
  3388. // The data of pay recharge information | PayRecharge信息
  3389. // swagger:model PayRechargeInfo
  3390. type PayRechargeInfo struct {
  3391. BaseIDInfo
  3392. // user_id | 用户ID
  3393. UserId *string `json:"userId,optional"`
  3394. UserInfo UserInfo `json:"userInfo,optional"`
  3395. // number | 变化积分数
  3396. Number *float32 `json:"number,optional"`
  3397. // status | 状态 1-正常 2-禁用
  3398. Status *int `json:"status,optional"`
  3399. // money | 充值钱数
  3400. Money *float32 `json:"money,optional"`
  3401. // out_trade_no | 外部订单号
  3402. OutTradeNo *string `json:"outTradeNo,optional"`
  3403. // organization_id | 租户ID
  3404. OrganizationId *uint64 `json:"organizationId,optional"`
  3405. OrganizationName *string `json:"organizationName,optional"`
  3406. }
  3407. // The response data of pay recharge list | PayRecharge列表数据
  3408. // swagger:model PayRechargeListResp
  3409. type PayRechargeListResp struct {
  3410. BaseDataInfo
  3411. // PayRecharge list data | PayRecharge列表数据
  3412. Data PayRechargeListInfo `json:"data"`
  3413. }
  3414. // PayRecharge list data | PayRecharge列表数据
  3415. // swagger:model PayRechargeListInfo
  3416. type PayRechargeListInfo struct {
  3417. BaseListInfo
  3418. // The API list data | PayRecharge列表数据
  3419. Data []PayRechargeInfo `json:"data"`
  3420. }
  3421. // Get pay recharge list request params | PayRecharge列表请求参数
  3422. // swagger:model PayRechargeListReq
  3423. type PayRechargeListReq struct {
  3424. PageInfo
  3425. // user_id | 用户ID
  3426. UserId *string `json:"userId,optional"`
  3427. // out_trade_no | 外部订单号
  3428. OutTradeNo *string `json:"outTradeNo,optional"`
  3429. }
  3430. // PayRecharge information response | PayRecharge信息返回体
  3431. // swagger:model PayRechargeInfoResp
  3432. type PayRechargeInfoResp struct {
  3433. BaseDataInfo
  3434. // PayRecharge information | PayRecharge数据
  3435. Data PayRechargeInfo `json:"data"`
  3436. }
  3437. // The data of whatsapp information | Whatsapp信息
  3438. // swagger:model WhatsappInfo
  3439. type WhatsappInfo struct {
  3440. BaseIDInfo
  3441. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3442. Status *uint8 `json:"status,optional"`
  3443. WaId *string `json:"waId,optional"`
  3444. WaName *string `json:"waName,optional"`
  3445. // 回调地址
  3446. Callback *string `json:"callback,optional"`
  3447. // 模式ID
  3448. AgentId *uint64 `json:"agentId,optional"`
  3449. AgentInfo *AgentInfo `json:"agentInfo,optional"`
  3450. // 微信账号
  3451. Account *string `json:"account,optional"`
  3452. // 手机号
  3453. Phone *string `json:"phone,optional"`
  3454. Cc *string `json:"cc,optional"`
  3455. // 号码名称
  3456. PhoneName *string `json:"phoneName,optional"`
  3457. // 号码状态
  3458. PhoneStatus *string `json:"phoneStatus,optional"`
  3459. Tokens *uint64 `json:"tokens,optional"`
  3460. // 号码发送频率号码发送频率
  3461. Frequency *string `json:"frequency,optional"`
  3462. // 号码质量
  3463. Quality *string `json:"quality,optional"`
  3464. // 号码校验状态
  3465. VerifyStatus *string `json:"verifyStatus,optional"`
  3466. // 机构 ID
  3467. OrganizationId *uint64 `json:"organizationId,optional"`
  3468. OrganizationName *string `json:"organizationName,optional"`
  3469. // 大模型服务地址
  3470. ApiBase *string `json:"apiBase,optional"`
  3471. // 大模型服务密钥
  3472. ApiKey *string `json:"apiKey,optional"`
  3473. // 白名单
  3474. AllowList []ContactInfo `json:"allowList,optional"`
  3475. // 群白名单
  3476. GroupAllowList []ContactInfo `json:"groupAllowList,optional"`
  3477. // 黑名单
  3478. BlockList []ContactInfo `json:"blockList,optional"`
  3479. // 群黑名单
  3480. GroupBlockList []ContactInfo `json:"groupBlockList,optional"`
  3481. }
  3482. // swagger:model WhatsappPhoneInfo
  3483. type WhatsappPhoneInfo struct {
  3484. Avatar *string `json:"avatar,optional"`
  3485. Industry *string `json:"industry,optional"`
  3486. Intro *string `json:"intro,optional"`
  3487. Address *string `json:"address,optional"`
  3488. Email *string `json:"email,optional"`
  3489. Website *string `json:"website,optional"`
  3490. }
  3491. // The response data of whatsapp list | Whatsapp列表数据
  3492. // swagger:model WhatsappListResp
  3493. type WhatsappListResp struct {
  3494. BaseDataInfo
  3495. // Whatsapp list data | Whatsapp列表数据
  3496. Data WhatsappListInfo `json:"data"`
  3497. }
  3498. // Whatsapp list data | Whatsapp列表数据
  3499. // swagger:model WhatsappListInfo
  3500. type WhatsappListInfo struct {
  3501. BaseListInfo
  3502. // The API list data | Whatsapp列表数据
  3503. Data []WhatsappInfo `json:"data"`
  3504. }
  3505. // Get whatsapp list request params | Whatsapp列表请求参数
  3506. // swagger:model WhatsappListReq
  3507. type WhatsappListReq struct {
  3508. PageInfo
  3509. // 手机号
  3510. Phone *string `json:"phone,optional"`
  3511. // 号码名称
  3512. PhoneName *string `json:"phoneName,optional"`
  3513. WaId *string `json:"waId,optional"`
  3514. OrganizationId *uint64 `json:"organizationId,optional"`
  3515. }
  3516. // Whatsapp information response | Whatsapp信息返回体
  3517. // swagger:model WhatsappInfoResp
  3518. type WhatsappInfoResp struct {
  3519. BaseDataInfo
  3520. // Whatsapp information | Whatsapp数据
  3521. Data WhatsappInfo `json:"data"`
  3522. }
  3523. // swagger:model AutomationReq
  3524. type AutomationReq struct {
  3525. WaId *string `json:"waId,optional"`
  3526. Phone *string `json:"phone,optional"`
  3527. }
  3528. // swagger:model AutomationResp
  3529. type AutomationResp struct {
  3530. BaseDataInfo
  3531. // Whatsapp list data | Whatsapp列表数据
  3532. Data ConversationalAutomationInfo `json:"data"`
  3533. }
  3534. // swagger:model ConversationalAutomationInfo
  3535. type ConversationalAutomationInfo struct {
  3536. Prompts []string `json:"prompts,optional"`
  3537. Commands []Command `json:"commands,optional"`
  3538. Phone string `json:"phone,optional"`
  3539. EnableWelcomeMessage bool `json:"enableWelcomeMessage,optional"`
  3540. }
  3541. type Command struct {
  3542. CommandDescription string `json:"commandDescription,optional"`
  3543. CommandName string `json:"commandName,optional"`
  3544. }
  3545. // swagger:model SetAutomationReq
  3546. type SetAutomationReq struct {
  3547. EnableWelcomeMessage bool `json:"enableWelcomeMessage,optional"`
  3548. Phone string `json:"phone,optional"`
  3549. Commands []Command `json:"commands,optional"`
  3550. Prompts []string `json:"prompts,optional"`
  3551. WaId string `json:"waId,optional"`
  3552. }
  3553. // swagger:model sendCodeReq
  3554. type SendCodeReq struct {
  3555. Cc *string `json:"cc"`
  3556. Phone *string `json:"phone"`
  3557. WaId *string `json:"waId"`
  3558. Method *string `json:"method"`
  3559. Locale *string `json:"locale"`
  3560. }
  3561. // swagger:model submitCodeReq
  3562. type SubmitCodeReq struct {
  3563. Cc *string `json:"cc"`
  3564. Phone *string `json:"phone"`
  3565. WaId *string `json:"waId"`
  3566. Code *string `json:"code"`
  3567. }
  3568. // swagger:model getQrcodeReq
  3569. type GetQrcodeReq struct {
  3570. Phone *string `json:"phone"`
  3571. WaId *string `json:"waId"`
  3572. }
  3573. // swagger:model getQrcodeResp
  3574. type GetQrcodeResp struct {
  3575. BaseDataInfo
  3576. Data QrcodeListInfo `json:"data"`
  3577. }
  3578. // swagger:model QrcodeListInfo
  3579. type QrcodeListInfo struct {
  3580. BaseListInfo
  3581. Data []Qrcode `json:"data"`
  3582. }
  3583. type Qrcode struct {
  3584. Phone string `json:"phone,optional"`
  3585. QrdlCode string `json:"qrdlCode,optional"`
  3586. GenerateQrImage string `json:"generateQrImage,optional"`
  3587. PrefilledMessage string `json:"prefilledMessage,optional"`
  3588. DeepLinkUrl string `json:"deepLinkUrl,optional"`
  3589. QrImageUrl string `json:"qrImageUrl,optional"`
  3590. }
  3591. // swagger:model createQrcodeReq
  3592. type CreateQrcodeReq struct {
  3593. Phone string `json:"phone"`
  3594. GenerateQrImage string `json:"generateQrImage"`
  3595. PrefilledMessage string `json:"prefilledMessage"`
  3596. WaId string `json:"waId"`
  3597. }
  3598. // swagger:model updateQrcodeReq
  3599. type UpdateQrcodeReq struct {
  3600. Phone string `json:"phone,optional"`
  3601. GenerateQrImage string `json:"generateQrImage,optional"`
  3602. PrefilledMessage string `json:"prefilledMessage,optional"`
  3603. QrdlCode string `json:"qrdlCode,optional"`
  3604. WaId string `json:"waId"`
  3605. }
  3606. // swagger:model removeQrcodeReq
  3607. type RemoveQrcodeReq struct {
  3608. Phone string `json:"phone,optional"`
  3609. QrdlCode string `json:"qrdlCode,optional"`
  3610. WaId string `json:"waId"`
  3611. }
  3612. // swagger:model getBusinessReq
  3613. type GetBusinessReq struct {
  3614. Phone *string `json:"phone"`
  3615. WaId *string `json:"waId"`
  3616. }
  3617. // swagger:model getBusinessResp
  3618. type GetBusinessResp struct {
  3619. BaseDataInfo
  3620. Data BusinessInfo `json:"data"`
  3621. }
  3622. // swagger:model BusinessInfo
  3623. type BusinessInfo struct {
  3624. Vertical string `json:"vertical,optional"`
  3625. Description string `json:"description,optional"`
  3626. Email string `json:"email,optional"`
  3627. Address string `json:"address,optional"`
  3628. ProfilePictureUrl string `json:"profilePictureUrl,optional"`
  3629. Websites []string `json:"websites,optional"`
  3630. About string `json:"about,optional"`
  3631. }
  3632. // swagger:model setBusinessReq
  3633. type SetBusinessReq struct {
  3634. Phone *string `json:"phone"`
  3635. WaId *string `json:"waId"`
  3636. Vertical string `json:"vertical,optional"`
  3637. Description string `json:"description,optional"`
  3638. Email string `json:"email,optional"`
  3639. Address string `json:"address,optional"`
  3640. ProfilePictureUrl string `json:"profilePictureUrl,optional"`
  3641. Websites []string `json:"websites,optional"`
  3642. About string `json:"about,optional"`
  3643. }
  3644. // swagger:model registerReq
  3645. type RegisterReq struct {
  3646. Phone *string `json:"phone"`
  3647. WaId *string `json:"waId"`
  3648. }
  3649. // swagger:model deregisterReq
  3650. type DeregisterReq struct {
  3651. Phone *string `json:"phone"`
  3652. WaId *string `json:"waId"`
  3653. }
  3654. // swagger:model UpdateAgentReq
  3655. type UpdateAgentReq struct {
  3656. Id uint64 `json:"id"`
  3657. AgentId uint64 `json:"agentId"`
  3658. }
  3659. // 获取黑白名单列表返回体
  3660. // swagger:model WhatsappAllowBlockListResp
  3661. type WhatsappAllowBlockListResp struct {
  3662. BaseDataInfo
  3663. // Wx information | Wx数据
  3664. Data WhatsappAllowBlockListRespData `json:"data"`
  3665. }
  3666. // WhatsappAllowBlockListRespData
  3667. type WhatsappAllowBlockListRespData struct {
  3668. // 白名单
  3669. AllowList *string `json:"allowList,optional"`
  3670. // 群白名单
  3671. GroupAllowList *string `json:"groupAllowList,optional"`
  3672. // 黑名单
  3673. BlockList *string `json:"blockList,optional"`
  3674. // 群黑名单
  3675. GroupBlockList *string `json:"groupBlockList,optional"`
  3676. }
  3677. // swagger:model UpdateAllowAndBlockListReq
  3678. type UpdateAllowAndBlockListReq struct {
  3679. Id uint64 `json:"id"`
  3680. // 白名单
  3681. AllowList *string `json:"allowList,optional"`
  3682. // 群白名单
  3683. GroupAllowList *string `json:"groupAllowList,optional"`
  3684. // 黑名单
  3685. BlockList *string `json:"blockList,optional"`
  3686. // 群黑名单
  3687. GroupBlockList *string `json:"groupBlockList,optional"`
  3688. }
  3689. // swagger:model UpdateAgentApiReq
  3690. type UpdateAgentApiReq struct {
  3691. Id uint64 `json:"id"`
  3692. ApiBase *string `json:"apiBase,optional"`
  3693. ApiKey *string `json:"apiKey,optional"`
  3694. }
  3695. // swagger:model TemplateInfo
  3696. type TemplateInfo struct {
  3697. Category string `json:"category,optional"`
  3698. TemplateCode string `json:"templateCode,optional"`
  3699. Name string `json:"name,optional"`
  3700. Language string `json:"language,optional"`
  3701. TemplateType string `json:"templateType,optional"`
  3702. AuditStatus string `json:"auditStatus,optional"`
  3703. Components []TemplateComponent `json:"components,optional"`
  3704. QualityScore string `json:"qualityScore,optional"`
  3705. MessageSendTtlSeconds int `json:"messageSendTtlSeconds,optional"`
  3706. Reason string `json:"reason,optional"`
  3707. }
  3708. // swagger:model TemplateSingleInfo
  3709. type TemplateSingleInfo struct {
  3710. Category string `json:"category,optional"`
  3711. TemplateCode string `json:"templateCode,optional"`
  3712. Name string `json:"name,optional"`
  3713. Language string `json:"language,optional"`
  3714. TemplateType string `json:"templateType,optional"`
  3715. AuditStatus string `json:"auditStatus,optional"`
  3716. }
  3717. type TemplateComponent struct {
  3718. Type string `json:"type,optional"`
  3719. Url string `json:"url,optional"`
  3720. Text string `json:"text,optional"`
  3721. Caption string `json:"caption,optional"`
  3722. FileName string `json:"fileName,optional"`
  3723. Format string `json:"format,optional"`
  3724. Buttons []TemplateButton `json:"buttons,optional"`
  3725. ThumbUrl string `json:"thumbUrl,optional"`
  3726. Duration int `json:"duration,optional"`
  3727. FileType string `json:"fileType,optional"`
  3728. Latitude string `json:"latitude,optional"`
  3729. Longitude string `json:"longitude,optional"`
  3730. LocationName string `json:"locationName,optional"`
  3731. LocationAddress string `json:"locationAddress,optional"`
  3732. AddSecretRecommendation bool `json:"addSecretRecommendation,optional"`
  3733. CodeExpirationMinutes int `json:"codeExpirationMinutes,optional"`
  3734. HasExpiration bool `json:"hasExpiration,optional"`
  3735. OfferExpirationTimeMs string `json:"offerExpirationTimeMs,optional"`
  3736. }
  3737. type TemplateButton struct {
  3738. Type string `json:"type,optional"`
  3739. Text string `json:"text,optional"`
  3740. PhoneNumber string `json:"phoneNumber,optional"`
  3741. Url string `json:"url,optional"`
  3742. UrlType string `json:"urlType,optional"`
  3743. SignatureHash string `json:"signatureHash,optional"`
  3744. PackageName string `json:"packageName,optional"`
  3745. AutofillText string `json:"autofillText,optional"`
  3746. IsOptOut bool `json:"isOptOut,optional"`
  3747. ExtendAttrs []TemplateExtendAttr `json:"extendAttrs,optional"`
  3748. CouponCode string `json:"couponCode,optional"`
  3749. FlowId string `json:"flowId,optional"`
  3750. FlowAction string `json:"flowAction,optional"`
  3751. NavigateScreen string `json:"navigateScreen,optional"`
  3752. SupportedApps []TemplateSupportedApp `json:"supportedApps,optional"`
  3753. }
  3754. type TemplateSupportedApp struct {
  3755. SignatureHash string `json:"signatureHash,optional"`
  3756. PackageName string `json:"packageName,optional"`
  3757. }
  3758. type TemplateExtendAttr struct {
  3759. NextTemplateCode string `json:"nextTemplateCode,optional"`
  3760. NextTemplateName string `json:"nextTemplateName,optional"`
  3761. NextLanguageCode string `json:"nextLanguageCode,optional"`
  3762. Action string `json:"action,optional"`
  3763. IntentCode string `json:"intentCode,optional"`
  3764. }
  3765. // swagger:model createTemplateReq
  3766. type CreateTemplateReq struct {
  3767. Category string `json:"category"`
  3768. TemplateCode string `json:"templateCode"`
  3769. Name string `json:"name"`
  3770. Language string `json:"language"`
  3771. TemplateType string `json:"templateType,optional"`
  3772. AllowCategoryChange bool `json:"allowCategoryChange,optional"`
  3773. MessageSendTtlSeconds int `json:"messageSendTtlSeconds,optional"`
  3774. }
  3775. // swagger:model listTemplateReq
  3776. type ListTemplateReq struct {
  3777. Page int32 `json:"page"`
  3778. PageSize int32 `json:"pageSize"`
  3779. Name string `json:"name,optional"`
  3780. Language string `json:"language,optional"`
  3781. AuditStatus string `json:"auditStatus,optional"`
  3782. TemplateType string `json:"templateType,optional"`
  3783. Code string `json:"code,optional"`
  3784. WaId string `json:"waId,optional"`
  3785. }
  3786. // swagger:model listTemplateResp
  3787. type ListTemplateResp struct {
  3788. Code int `json:"code"`
  3789. Msg string `json:"msg"`
  3790. Data ListTemplate `json:"data,omitempty"`
  3791. }
  3792. type ListTemplate struct {
  3793. BaseListInfo
  3794. Data []TemplateSingleInfo `json:"data,omitempty"`
  3795. }
  3796. // swagger:model removeTemplateReq
  3797. type RemoveTemplateReq struct {
  3798. TemplateCode string `json:"templateCode,optional"`
  3799. TemplateName string `json:"templateName,optional"`
  3800. Language string `json:"language"`
  3801. TemplateType string `json:"templateType,optional"`
  3802. }
  3803. // swagger:model editTemplateReq
  3804. type EditTemplateReq struct {
  3805. Components []TemplateComponent `json:"components,optional"`
  3806. Language string `json:"language,optional"`
  3807. TemplateCode string `json:"templateCode,optional"`
  3808. Category string `json:"category,optional"`
  3809. TemplateType string `json:"templateType,optional"`
  3810. MessageSendTtlSeconds int `json:"messageSendTtlSeconds,optional"`
  3811. TemplateName string `json:"templateName,optional"`
  3812. }
  3813. // swagger:model getTemplateReq
  3814. type GetTemplateReq struct {
  3815. TemplateCode string `json:"templateCode,optional"`
  3816. Language string `json:"language"`
  3817. TemplateType string `json:"templateType,optional"`
  3818. TemplateName string `json:"templateName,optional"`
  3819. }
  3820. // swagger:model getTemplateResp
  3821. type GetTemplateResp struct {
  3822. Code int `json:"code"`
  3823. Msg string `json:"msg"`
  3824. Data TemplateSingleInfo `json:"data,omitempty"`
  3825. }
  3826. // The data of whatsapp channel information | WhatsappChannel信息
  3827. // swagger:model WhatsappChannelInfo
  3828. type WhatsappChannelInfo struct {
  3829. BaseIDInfo
  3830. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3831. Status *uint8 `json:"status,optional"`
  3832. // ak
  3833. Ak *string `json:"ak,optional"`
  3834. // 端口号
  3835. Sk *string `json:"sk,optional"`
  3836. // 通道ID
  3837. WaId *string `json:"waId,optional"`
  3838. // 通道名
  3839. WaName *string `json:"waName,optional"`
  3840. // WABA ID
  3841. WabaId *uint64 `json:"wabaId,optional"`
  3842. // 商业平台ID
  3843. BusinessId *uint64 `json:"businessId,optional"`
  3844. // 机构 ID
  3845. OrganizationId *uint64 `json:"organizationId,optional"`
  3846. OrganizationName *string `json:"organizationName,optional"`
  3847. // 认证主体
  3848. VerifyAccount *string `json:"verifyAccount,optional"`
  3849. }
  3850. // The response data of whatsapp channel list | WhatsappChannel列表数据
  3851. // swagger:model WhatsappChannelListResp
  3852. type WhatsappChannelListResp struct {
  3853. BaseDataInfo
  3854. // WhatsappChannel list data | WhatsappChannel列表数据
  3855. Data WhatsappChannelListInfo `json:"data"`
  3856. }
  3857. // WhatsappChannel list data | WhatsappChannel列表数据
  3858. // swagger:model WhatsappChannelListInfo
  3859. type WhatsappChannelListInfo struct {
  3860. BaseListInfo
  3861. // The API list data | WhatsappChannel列表数据
  3862. Data []WhatsappChannelInfo `json:"data"`
  3863. }
  3864. // Get whatsapp channel list request params | WhatsappChannel列表请求参数
  3865. // swagger:model WhatsappChannelListReq
  3866. type WhatsappChannelListReq struct {
  3867. PageInfo
  3868. OrganizationId *uint64 `json:"organizationId,optional"`
  3869. WaName *string `json:"waName,optional"`
  3870. WaID *string `json:"waID,optional"`
  3871. WabaId *uint64 `json:"wabaId,optional"`
  3872. VerifyAccount *string `json:"verifyAccount,optional"`
  3873. }
  3874. // WhatsappChannel information response | WhatsappChannel信息返回体
  3875. // swagger:model WhatsappChannelInfoResp
  3876. type WhatsappChannelInfoResp struct {
  3877. BaseDataInfo
  3878. // WhatsappChannel information | WhatsappChannel数据
  3879. Data WhatsappChannelInfo `json:"data"`
  3880. }
  3881. // The data of xunji information | Xunji信息
  3882. // swagger:model XunjiInfo
  3883. type XunjiInfo struct {
  3884. BaseIDInfo
  3885. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3886. Status *uint8 `json:"status,optional"`
  3887. // AppKey
  3888. AppKey *string `json:"appKey,optional"`
  3889. // AppSecret
  3890. AppSecret *string `json:"appSecret,optional"`
  3891. // Token
  3892. Token *string `json:"token,optional"`
  3893. // 加密key
  3894. EncodingKey *string `json:"encodingKey,optional"`
  3895. // organization_id | 租户ID
  3896. OrganizationId *uint64 `json:"organizationId,optional"`
  3897. }
  3898. // The response data of xunji list | Xunji列表数据
  3899. // swagger:model XunjiListResp
  3900. type XunjiListResp struct {
  3901. BaseDataInfo
  3902. // Xunji list data | Xunji列表数据
  3903. Data XunjiListInfo `json:"data"`
  3904. }
  3905. // Xunji list data | Xunji列表数据
  3906. // swagger:model XunjiListInfo
  3907. type XunjiListInfo struct {
  3908. BaseListInfo
  3909. // The API list data | Xunji列表数据
  3910. Data []XunjiInfo `json:"data"`
  3911. }
  3912. // Get xunji list request params | Xunji列表请求参数
  3913. // swagger:model XunjiListReq
  3914. type XunjiListReq struct {
  3915. PageInfo
  3916. // AppKey
  3917. AppKey *string `json:"appKey,optional"`
  3918. // AppSecret
  3919. AppSecret *string `json:"appSecret,optional"`
  3920. // Token
  3921. Token *string `json:"token,optional"`
  3922. }
  3923. // Xunji information response | Xunji信息返回体
  3924. // swagger:model XunjiInfoResp
  3925. type XunjiInfoResp struct {
  3926. BaseDataInfo
  3927. // Xunji information | Xunji数据
  3928. Data XunjiInfo `json:"data"`
  3929. }
  3930. // The data of xunji service information | XunjiService信息
  3931. // swagger:model XunjiServiceInfo
  3932. type XunjiServiceInfo struct {
  3933. BaseIDInfo
  3934. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  3935. Status *uint8 `json:"status,optional"`
  3936. // Xunji表ID
  3937. XunjiId *uint64 `json:"xunjiId,optional"`
  3938. // 智能体ID
  3939. AgentId *uint64 `json:"agentId,optional"`
  3940. // 模式信息
  3941. AgentInfo *AgentInfo `json:"agentInfo,optional"`
  3942. // organization_id | 租户ID
  3943. OrganizationId *uint64 `json:"organizationId,optional"`
  3944. // 微信ID
  3945. Wxid *string `json:"wxid,optional"`
  3946. // 大模型服务地址
  3947. ApiBase *string `json:"apiBase,optional"`
  3948. // 大模型服务密钥
  3949. ApiKey *string `json:"apiKey,optional"`
  3950. }
  3951. // The response data of xunji service list | XunjiService列表数据
  3952. // swagger:model XunjiServiceListResp
  3953. type XunjiServiceListResp struct {
  3954. BaseDataInfo
  3955. // XunjiService list data | XunjiService列表数据
  3956. Data XunjiServiceListInfo `json:"data"`
  3957. }
  3958. // XunjiService list data | XunjiService列表数据
  3959. // swagger:model XunjiServiceListInfo
  3960. type XunjiServiceListInfo struct {
  3961. BaseListInfo
  3962. // The API list data | XunjiService列表数据
  3963. Data []XunjiServiceInfo `json:"data"`
  3964. }
  3965. // Get xunji service list request params | XunjiService列表请求参数
  3966. // swagger:model XunjiServiceListReq
  3967. type XunjiServiceListReq struct {
  3968. PageInfo
  3969. XunjiID *uint64 `json:"configId,optional"`
  3970. }
  3971. // XunjiService information response | XunjiService信息返回体
  3972. // swagger:model XunjiServiceInfoResp
  3973. type XunjiServiceInfoResp struct {
  3974. BaseDataInfo
  3975. // XunjiService information | XunjiService数据
  3976. Data XunjiServiceInfo `json:"data"`
  3977. }
  3978. // swagger:model WpWecomMsgReq
  3979. type WpWecomMsgReq struct {
  3980. // 机器人微信id
  3981. WxId *string `json:"wx_id"`
  3982. // 接收方微信 id
  3983. ConvId *string `json:"conv_id"`
  3984. // 消息类型
  3985. ContentType *string `json:"content_type"`
  3986. // 消息内容
  3987. Content *string `json:"content"`
  3988. }
  3989. // swagger:model CreateInfo
  3990. type CreateInfo struct {
  3991. // Translated Name | 展示名称
  3992. UserName string `json:"username"`
  3993. // Name | 部门名称
  3994. Title *string `json:"title"`
  3995. }
  3996. // swagger:model AppsListReq
  3997. type AppsListReq struct {
  3998. Type string `json:"type"`
  3999. Keyword *string `json:"keyword,optional"`
  4000. }
  4001. // swagger:model AppsListResp
  4002. type AppsListResp struct {
  4003. BaseDataInfo
  4004. Data []*AppsListRespInfo `json:"data"`
  4005. }
  4006. // swagger:model AppsListRespInfo
  4007. type AppsListRespInfo struct {
  4008. Id string `json:"_id"`
  4009. TeamId string `json:"teamId"`
  4010. TmbId string `json:"tmbId"`
  4011. Avatar string `json:"avatar"`
  4012. Name string `json:"name"`
  4013. Intro string `json:"intro"`
  4014. }
  4015. // swagger:model CreateAppsReq
  4016. type CreateAppsReq struct {
  4017. Type string `json:"type"`
  4018. Name string `json:"name"`
  4019. Intro *string `json:"intro,optional"`
  4020. }
  4021. // swagger:model UpdateAppsReq
  4022. type UpdateAppsReq struct {
  4023. Id string `json:"id"`
  4024. Name string `json:"name"`
  4025. Intro *string `json:"intro,optional"`
  4026. }
  4027. // swagger:model DeleteAppsReq
  4028. type DeleteAppsReq struct {
  4029. Id string `json:"id"`
  4030. }
  4031. // The response data of department information | 部门信息
  4032. // swagger:model DepartmentInfo
  4033. type DepartmentInfo struct {
  4034. BaseIDInfo
  4035. // Translated Name | 展示名称
  4036. Trans string `json:"trans,optional"`
  4037. // Status | 状态
  4038. // max : 20
  4039. Status *uint32 `json:"status,optional" validate:"omitempty,lt=20"`
  4040. // Sort | 排序
  4041. // max : 10000
  4042. Sort *uint32 `json:"sort,optional" validate:"omitempty,lt=10000"`
  4043. // Name | 部门名称
  4044. // min length : 1
  4045. // max length : 50
  4046. Name *string `json:"name,optional" validate:"omitempty,min=1,max=50"`
  4047. // Ancestors | 父级部门列表
  4048. // max length : 200
  4049. Ancestors *string `json:"ancestors,optional" validate:"omitempty,max=200"`
  4050. // Leader | 部门负责人
  4051. // max length : 20
  4052. Leader *string `json:"leader,optional" validate:"omitempty,max=20"`
  4053. // Phone | 电话号码
  4054. // max length : 18
  4055. Phone *string `json:"phone,optional" validate:"omitempty,max=18"`
  4056. // Email | 邮箱
  4057. // max length : 70
  4058. Email *string `json:"email,optional" validate:"omitempty,max=70"`
  4059. // Remark | 备注
  4060. // max length : 200
  4061. Remark *string `json:"remark,optional" validate:"omitempty,max=200"`
  4062. // ParentId | 父级 ID
  4063. ParentId *uint64 `json:"parentId,optional"`
  4064. }
  4065. // The response data of department list | 部门列表数据
  4066. // swagger:model DepartmentListResp
  4067. type DepartmentListResp struct {
  4068. BaseDataInfo
  4069. // Department list data | 部门列表数据
  4070. Data DepartmentListInfo `json:"data"`
  4071. }
  4072. // Department list data | 部门列表数据
  4073. // swagger:model DepartmentListInfo
  4074. type DepartmentListInfo struct {
  4075. BaseListInfo
  4076. // The API list data | 部门列表数据
  4077. Data []DepartmentInfo `json:"data"`
  4078. }
  4079. // Get department list request params | 部门列表请求参数
  4080. // swagger:model DepartmentListReq
  4081. type DepartmentListReq struct {
  4082. PageInfo
  4083. // Name | 部门名称
  4084. // max length : 50
  4085. Name *string `json:"name,optional" validate:"omitempty,max=50"`
  4086. // Leader | 部门负责人
  4087. // max length : 20
  4088. Leader *string `json:"leader,optional" validate:"omitempty,max=20"`
  4089. }
  4090. // Department information response | 部门信息返回体
  4091. // swagger:model DepartmentInfoResp
  4092. type DepartmentInfoResp struct {
  4093. BaseDataInfo
  4094. // Department information | 部门数据
  4095. Data DepartmentInfo `json:"data"`
  4096. }
  4097. // The data of api_key information | ApiKey信息
  4098. // swagger:model ApiKeyInfo
  4099. type ApiKeyInfo struct {
  4100. BaseIDInfo
  4101. // Title
  4102. Title *string `json:"title,optional"`
  4103. // Key
  4104. Key *string `json:"key,optional"`
  4105. // 租户ID
  4106. OrganizationId *uint64 `json:"organization_id,optional"`
  4107. AgentId *uint64 `json:"agent_id,optional"`
  4108. AgentInfo *AgentInfo `json:"agent_info,optional"`
  4109. CustomAgentBase *string `json:"custom_agent_base,optional"`
  4110. CustomAgentKey *string `json:"custom_agent_key,optional"`
  4111. OpenaiBase *string `json:"openai_base,optional"`
  4112. OpenaiKey *string `json:"openai_key,optional"`
  4113. }
  4114. // The response data of api_key list | ApiKey列表数据
  4115. // swagger:model ApiKeyListResp
  4116. type ApiKeyListResp struct {
  4117. BaseDataInfo
  4118. // ApiKey list data | ApiKey列表数据
  4119. Data ApiKeyListInfo `json:"data"`
  4120. }
  4121. // ApiKey list data | ApiKey列表数据
  4122. // swagger:model ApiKeyListInfo
  4123. type ApiKeyListInfo struct {
  4124. BaseListInfo
  4125. // The API list data | ApiKey列表数据
  4126. Data []ApiKeyInfo `json:"data"`
  4127. }
  4128. // Get ApiKey list request params | ApiKey列表请求参数
  4129. // swagger:model ApiKeyListReq
  4130. type ApiKeyListReq struct {
  4131. PageInfo
  4132. // Key
  4133. Key *string `json:"key,optional"`
  4134. OrganizationId *uint64 `json:"organization_id,optional"`
  4135. }
  4136. // The log in information | 登陆返回的数据信息
  4137. // swagger:model LoginInfo
  4138. type LoginInfo struct {
  4139. // User's UUID | 用户的UUID
  4140. UserId string `json:"userId"`
  4141. // Token for authorization | 验证身份的token
  4142. Token string `json:"token"`
  4143. // Expire timestamp | 过期时间戳
  4144. Expire uint64 `json:"expire"`
  4145. }
  4146. // The permission code for front end permission control | 权限码: 用于前端权限控制
  4147. // swagger:model PermCodeResp
  4148. type PermCodeResp struct {
  4149. BaseDataInfo
  4150. // Permission code data | 权限码数据
  4151. Data []string `json:"data"`
  4152. }
  4153. // Login request | 登录参数
  4154. // swagger:model LoginReq
  4155. type LoginReq struct {
  4156. // User Name | 用户名
  4157. // required : true
  4158. // max length : 20
  4159. Username string `json:"username" validate:"required,alphanum,max=20"`
  4160. // Password | 密码
  4161. // required : true
  4162. // max length : 30
  4163. // min length : 6
  4164. Password string `json:"password" validate:"required,max=30,min=6"`
  4165. // Captcha ID which store in redis | 验证码编号, 存在redis中
  4166. // required : true
  4167. // max length : 20
  4168. // min length : 20
  4169. CaptchaId string `json:"captchaId" validate:"required,len=20"`
  4170. // The Captcha which users input | 用户输入的验证码
  4171. // required : true
  4172. // max length : 5
  4173. // min length : 5
  4174. Captcha string `json:"captcha" validate:"required,len=5"`
  4175. }
  4176. // Log in by email request | 邮箱登录参数
  4177. // swagger:model LoginByEmailReq
  4178. type LoginByEmailReq struct {
  4179. // The user's email address | 用户的邮箱
  4180. // required : true
  4181. // max length : 100
  4182. Email string `json:"email" validate:"required,email,max=100"`
  4183. // The Captcha which users input | 用户输入的验证码
  4184. // max length : 5
  4185. // min length : 5
  4186. Captcha string `json:"captcha,optional" validate:"omitempty,len=5"`
  4187. }
  4188. // Log in by SMS request | 短信登录参数
  4189. // swagger:model LoginBySmsReq
  4190. type LoginBySmsReq struct {
  4191. // The user's mobile phone number | 用户的手机号码
  4192. // required : true
  4193. // max length : 20
  4194. PhoneNumber string `json:"phoneNumber" validate:"required,numeric,max=20"`
  4195. // The Captcha which users input | 用户输入的验证码
  4196. // max length : 5
  4197. // min length : 5
  4198. Captcha string `json:"captcha,optional" validate:"omitempty,len=5"`
  4199. }
  4200. // The log in response data | 登录返回数据
  4201. // swagger:model LoginResp
  4202. type LoginResp struct {
  4203. BaseDataInfo
  4204. // The log in information | 登陆返回的数据信息
  4205. Data LoginInfo `json:"data"`
  4206. }