CompanyregApiResolver.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625
  1. <?php
  2. namespace AlibabaCloud\Companyreg\V20200306;
  3. use AlibabaCloud\Client\Resolver\ApiResolver;
  4. /**
  5. * @method BindProduceAuthorization bindProduceAuthorization(array $options = [])
  6. * @method CloseIntentionForPartner closeIntentionForPartner(array $options = [])
  7. * @method CloseUserIntention closeUserIntention(array $options = [])
  8. * @method CreateBusinessOpportunity createBusinessOpportunity(array $options = [])
  9. * @method CreateProduceForPartner createProduceForPartner(array $options = [])
  10. * @method DescribePartnerConfig describePartnerConfig(array $options = [])
  11. * @method GenerateUploadFilePolicy generateUploadFilePolicy(array $options = [])
  12. * @method GetAlipayUrl getAlipayUrl(array $options = [])
  13. * @method ListIntentionNote listIntentionNote(array $options = [])
  14. * @method ListProduceAuthorization listProduceAuthorization(array $options = [])
  15. * @method ListUserDetailSolutions listUserDetailSolutions(array $options = [])
  16. * @method ListUserIntentionNotes listUserIntentionNotes(array $options = [])
  17. * @method ListUserIntentions listUserIntentions(array $options = [])
  18. * @method ListUserProduceOperateLogs listUserProduceOperateLogs(array $options = [])
  19. * @method ListUserSolutions listUserSolutions(array $options = [])
  20. * @method OperateProduceForPartner operateProduceForPartner(array $options = [])
  21. * @method PutMeasureData putMeasureData(array $options = [])
  22. * @method PutMeasureReadyFlag putMeasureReadyFlag(array $options = [])
  23. * @method QueryAvailableNumbers queryAvailableNumbers(array $options = [])
  24. * @method QueryBagRemaining queryBagRemaining(array $options = [])
  25. * @method QueryCommodityConfig queryCommodityConfig(array $options = [])
  26. * @method QueryInstance queryInstance(array $options = [])
  27. * @method QueryPartnerIntentionList queryPartnerIntentionList(array $options = [])
  28. * @method QueryPartnerProduceList queryPartnerProduceList(array $options = [])
  29. * @method QueryUserNeedAuth queryUserNeedAuth(array $options = [])
  30. * @method RejectSolution rejectSolution(array $options = [])
  31. * @method RejectUserSolution rejectUserSolution(array $options = [])
  32. * @method ReleaseProduceAuthorization releaseProduceAuthorization(array $options = [])
  33. * @method StartBackToBackCall startBackToBackCall(array $options = [])
  34. * @method SubmitIntentionNote submitIntentionNote(array $options = [])
  35. * @method SubmitSolution submitSolution(array $options = [])
  36. * @method TransferIntentionOwner transferIntentionOwner(array $options = [])
  37. * @method TransferProduceOwner transferProduceOwner(array $options = [])
  38. */
  39. class CompanyregApiResolver extends ApiResolver
  40. {
  41. }
  42. class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
  43. {
  44. /** @var string */
  45. public $product = 'companyreg';
  46. /** @var string */
  47. public $version = '2020-03-06';
  48. /** @var string */
  49. public $method = 'POST';
  50. }
  51. /**
  52. * @method string getBizType()
  53. * @method string getAuthorizedUserIds()
  54. * @method string getBizId()
  55. */
  56. class BindProduceAuthorization extends Rpc
  57. {
  58. /**
  59. * @param string $value
  60. *
  61. * @return $this
  62. */
  63. public function withBizType($value)
  64. {
  65. $this->data['BizType'] = $value;
  66. $this->options['form_params']['BizType'] = $value;
  67. return $this;
  68. }
  69. /**
  70. * @param string $value
  71. *
  72. * @return $this
  73. */
  74. public function withAuthorizedUserIds($value)
  75. {
  76. $this->data['AuthorizedUserIds'] = $value;
  77. $this->options['form_params']['AuthorizedUserIds'] = $value;
  78. return $this;
  79. }
  80. /**
  81. * @param string $value
  82. *
  83. * @return $this
  84. */
  85. public function withBizId($value)
  86. {
  87. $this->data['BizId'] = $value;
  88. $this->options['form_params']['BizId'] = $value;
  89. return $this;
  90. }
  91. }
  92. /**
  93. * @method string getBizType()
  94. * @method $this withBizType($value)
  95. * @method string getNote()
  96. * @method $this withNote($value)
  97. * @method string getIntentionBizId()
  98. * @method $this withIntentionBizId($value)
  99. */
  100. class CloseIntentionForPartner extends Rpc
  101. {
  102. }
  103. /**
  104. * @method string getBizType()
  105. * @method $this withBizType($value)
  106. * @method string getNote()
  107. * @method $this withNote($value)
  108. * @method string getIntentionBizId()
  109. * @method $this withIntentionBizId($value)
  110. */
  111. class CloseUserIntention extends Rpc
  112. {
  113. }
  114. /**
  115. * @method string getMobile()
  116. * @method $this withMobile($value)
  117. * @method string getSource()
  118. * @method $this withSource($value)
  119. * @method string getVCode()
  120. * @method $this withVCode($value)
  121. * @method string getContactName()
  122. * @method $this withContactName($value)
  123. * @method string getBizType()
  124. * @method $this withBizType($value)
  125. */
  126. class CreateBusinessOpportunity extends Rpc
  127. {
  128. }
  129. /**
  130. * @method string getBizType()
  131. * @method $this withBizType($value)
  132. * @method string getExtInfo()
  133. * @method $this withExtInfo($value)
  134. * @method string getBizId()
  135. * @method $this withBizId($value)
  136. */
  137. class CreateProduceForPartner extends Rpc
  138. {
  139. }
  140. /**
  141. * @method string getPartnerCode()
  142. * @method $this withPartnerCode($value)
  143. * @method string getBizType()
  144. * @method $this withBizType($value)
  145. */
  146. class DescribePartnerConfig extends Rpc
  147. {
  148. }
  149. /**
  150. * @method string getFileType()
  151. * @method $this withFileType($value)
  152. * @method string getBizType()
  153. * @method $this withBizType($value)
  154. * @method string getFileName()
  155. * @method $this withFileName($value)
  156. */
  157. class GenerateUploadFilePolicy extends Rpc
  158. {
  159. }
  160. /**
  161. * @method string getOrderId()
  162. * @method $this withOrderId($value)
  163. * @method string getType()
  164. * @method $this withType($value)
  165. * @method string getBizType()
  166. * @method $this withBizType($value)
  167. * @method string getReturnUrl()
  168. * @method $this withReturnUrl($value)
  169. */
  170. class GetAlipayUrl extends Rpc
  171. {
  172. /** @var string */
  173. public $method = 'GET';
  174. }
  175. /**
  176. * @method string getEndTime()
  177. * @method $this withEndTime($value)
  178. * @method string getBeginTime()
  179. * @method $this withBeginTime($value)
  180. * @method string getIntentionBizId()
  181. * @method $this withIntentionBizId($value)
  182. * @method string getPageNumber()
  183. * @method $this withPageNumber($value)
  184. * @method string getPageSize()
  185. * @method $this withPageSize($value)
  186. */
  187. class ListIntentionNote extends Rpc
  188. {
  189. }
  190. /**
  191. * @method string getPageNum()
  192. * @method $this withPageNum($value)
  193. * @method string getBizType()
  194. * @method $this withBizType($value)
  195. * @method string getBizId()
  196. * @method $this withBizId($value)
  197. * @method string getPageSize()
  198. * @method $this withPageSize($value)
  199. */
  200. class ListProduceAuthorization extends Rpc
  201. {
  202. }
  203. /**
  204. * @method string getBizType()
  205. * @method $this withBizType($value)
  206. * @method string getPageSize()
  207. * @method $this withPageSize($value)
  208. * @method string getIntentionBizId()
  209. * @method $this withIntentionBizId($value)
  210. * @method string getPageNum()
  211. * @method $this withPageNum($value)
  212. */
  213. class ListUserDetailSolutions extends Rpc
  214. {
  215. }
  216. /**
  217. * @method string getBizType()
  218. * @method $this withBizType($value)
  219. * @method string getPageSize()
  220. * @method $this withPageSize($value)
  221. * @method string getIntentionBizId()
  222. * @method $this withIntentionBizId($value)
  223. * @method string getPageNum()
  224. * @method $this withPageNum($value)
  225. */
  226. class ListUserIntentionNotes extends Rpc
  227. {
  228. }
  229. /**
  230. * @method string getArea()
  231. * @method $this withArea($value)
  232. * @method string getBizTypes()
  233. * @method $this withBizTypes($value)
  234. * @method string getIntentionBizId()
  235. * @method $this withIntentionBizId($value)
  236. * @method string getPageNum()
  237. * @method $this withPageNum($value)
  238. * @method string getSortFiled()
  239. * @method $this withSortFiled($value)
  240. * @method string getBizType()
  241. * @method $this withBizType($value)
  242. * @method string getPageSize()
  243. * @method $this withPageSize($value)
  244. * @method string getSortOrder()
  245. * @method $this withSortOrder($value)
  246. * @method string getStatus()
  247. * @method $this withStatus($value)
  248. */
  249. class ListUserIntentions extends Rpc
  250. {
  251. }
  252. /**
  253. * @method string getPageNum()
  254. * @method $this withPageNum($value)
  255. * @method string getBizType()
  256. * @method $this withBizType($value)
  257. * @method string getBizId()
  258. * @method $this withBizId($value)
  259. * @method string getPageSize()
  260. * @method $this withPageSize($value)
  261. */
  262. class ListUserProduceOperateLogs extends Rpc
  263. {
  264. }
  265. /**
  266. * @method string getPageSize()
  267. * @method $this withPageSize($value)
  268. * @method string getExistStatus()
  269. * @method $this withExistStatus($value)
  270. * @method string getIntentionBizId()
  271. * @method $this withIntentionBizId($value)
  272. * @method string getPageNum()
  273. * @method $this withPageNum($value)
  274. */
  275. class ListUserSolutions extends Rpc
  276. {
  277. }
  278. /**
  279. * @method string getBizType()
  280. * @method $this withBizType($value)
  281. * @method string getExtInfo()
  282. * @method $this withExtInfo($value)
  283. * @method string getBizId()
  284. * @method $this withBizId($value)
  285. * @method string getOperateType()
  286. * @method $this withOperateType($value)
  287. */
  288. class OperateProduceForPartner extends Rpc
  289. {
  290. }
  291. /**
  292. * @method string getData()
  293. * @method string getEndTime()
  294. * @method string getStartTime()
  295. * @method string getBizType()
  296. * @method string getDataType()
  297. */
  298. class PutMeasureData extends Rpc
  299. {
  300. /**
  301. * @param string $value
  302. *
  303. * @return $this
  304. */
  305. public function withData($value)
  306. {
  307. $this->data['Data'] = $value;
  308. $this->options['form_params']['Data'] = $value;
  309. return $this;
  310. }
  311. /**
  312. * @param string $value
  313. *
  314. * @return $this
  315. */
  316. public function withEndTime($value)
  317. {
  318. $this->data['EndTime'] = $value;
  319. $this->options['form_params']['EndTime'] = $value;
  320. return $this;
  321. }
  322. /**
  323. * @param string $value
  324. *
  325. * @return $this
  326. */
  327. public function withStartTime($value)
  328. {
  329. $this->data['StartTime'] = $value;
  330. $this->options['form_params']['StartTime'] = $value;
  331. return $this;
  332. }
  333. /**
  334. * @param string $value
  335. *
  336. * @return $this
  337. */
  338. public function withBizType($value)
  339. {
  340. $this->data['BizType'] = $value;
  341. $this->options['form_params']['BizType'] = $value;
  342. return $this;
  343. }
  344. /**
  345. * @param string $value
  346. *
  347. * @return $this
  348. */
  349. public function withDataType($value)
  350. {
  351. $this->data['DataType'] = $value;
  352. $this->options['form_params']['DataType'] = $value;
  353. return $this;
  354. }
  355. }
  356. /**
  357. * @method string getReadyFlag()
  358. * @method $this withReadyFlag($value)
  359. * @method string getEndTime()
  360. * @method $this withEndTime($value)
  361. * @method string getStartTime()
  362. * @method $this withStartTime($value)
  363. * @method string getBizType()
  364. * @method $this withBizType($value)
  365. * @method string getDataType()
  366. * @method $this withDataType($value)
  367. */
  368. class PutMeasureReadyFlag extends Rpc
  369. {
  370. }
  371. /**
  372. * @method string getBizType()
  373. * @method $this withBizType($value)
  374. */
  375. class QueryAvailableNumbers extends Rpc
  376. {
  377. }
  378. /**
  379. * @method string getBizType()
  380. * @method $this withBizType($value)
  381. */
  382. class QueryBagRemaining extends Rpc
  383. {
  384. /** @var string */
  385. public $method = 'GET';
  386. }
  387. /**
  388. * @method string getBizType()
  389. * @method $this withBizType($value)
  390. * @method string getQueryModule()
  391. * @method $this withQueryModule($value)
  392. * @method string getCommodityCode()
  393. * @method $this withCommodityCode($value)
  394. */
  395. class QueryCommodityConfig extends Rpc
  396. {
  397. }
  398. /**
  399. * @method string getBizType()
  400. * @method $this withBizType($value)
  401. * @method string getInstanceId()
  402. * @method $this withInstanceId($value)
  403. */
  404. class QueryInstance extends Rpc
  405. {
  406. }
  407. /**
  408. * @method string getBizType()
  409. * @method $this withBizType($value)
  410. * @method string getBizId()
  411. * @method $this withBizId($value)
  412. * @method string getPageSize()
  413. * @method $this withPageSize($value)
  414. * @method string getPageNum()
  415. * @method $this withPageNum($value)
  416. */
  417. class QueryPartnerIntentionList extends Rpc
  418. {
  419. }
  420. /**
  421. * @method string getBizType()
  422. * @method $this withBizType($value)
  423. * @method string getBizId()
  424. * @method $this withBizId($value)
  425. * @method string getPageSize()
  426. * @method $this withPageSize($value)
  427. * @method string getPageNum()
  428. * @method $this withPageNum($value)
  429. */
  430. class QueryPartnerProduceList extends Rpc
  431. {
  432. /** @var string */
  433. public $method = 'GET';
  434. }
  435. class QueryUserNeedAuth extends Rpc
  436. {
  437. }
  438. /**
  439. * @method string getNote()
  440. * @method $this withNote($value)
  441. * @method string getSolutionBizId()
  442. * @method $this withSolutionBizId($value)
  443. */
  444. class RejectSolution extends Rpc
  445. {
  446. }
  447. /**
  448. * @method string getBizType()
  449. * @method $this withBizType($value)
  450. * @method string getNote()
  451. * @method $this withNote($value)
  452. * @method string getSolutionBizId()
  453. * @method $this withSolutionBizId($value)
  454. */
  455. class RejectUserSolution extends Rpc
  456. {
  457. }
  458. /**
  459. * @method string getBizType()
  460. * @method string getAuthorizedUserId()
  461. * @method string getBizId()
  462. */
  463. class ReleaseProduceAuthorization extends Rpc
  464. {
  465. /**
  466. * @param string $value
  467. *
  468. * @return $this
  469. */
  470. public function withBizType($value)
  471. {
  472. $this->data['BizType'] = $value;
  473. $this->options['form_params']['BizType'] = $value;
  474. return $this;
  475. }
  476. /**
  477. * @param string $value
  478. *
  479. * @return $this
  480. */
  481. public function withAuthorizedUserId($value)
  482. {
  483. $this->data['AuthorizedUserId'] = $value;
  484. $this->options['form_params']['AuthorizedUserId'] = $value;
  485. return $this;
  486. }
  487. /**
  488. * @param string $value
  489. *
  490. * @return $this
  491. */
  492. public function withBizId($value)
  493. {
  494. $this->data['BizId'] = $value;
  495. $this->options['form_params']['BizId'] = $value;
  496. return $this;
  497. }
  498. }
  499. /**
  500. * @method string getBizType()
  501. * @method $this withBizType($value)
  502. * @method string getCaller()
  503. * @method $this withCaller($value)
  504. * @method string getCallCenterNumber()
  505. * @method $this withCallCenterNumber($value)
  506. * @method string getSkillType()
  507. * @method $this withSkillType($value)
  508. * @method string getBizId()
  509. * @method $this withBizId($value)
  510. */
  511. class StartBackToBackCall extends Rpc
  512. {
  513. }
  514. /**
  515. * @method string getNote()
  516. * @method $this withNote($value)
  517. * @method string getIntentionBizId()
  518. * @method $this withIntentionBizId($value)
  519. */
  520. class SubmitIntentionNote extends Rpc
  521. {
  522. }
  523. /**
  524. * @method string getBizType()
  525. * @method $this withBizType($value)
  526. * @method string getSolution()
  527. * @method $this withSolution($value)
  528. * @method string getIntentionBizId()
  529. * @method $this withIntentionBizId($value)
  530. * @method string getUserId()
  531. * @method $this withUserId($value)
  532. */
  533. class SubmitSolution extends Rpc
  534. {
  535. }
  536. /**
  537. * @method string getBizType()
  538. * @method $this withBizType($value)
  539. * @method string getBizId()
  540. * @method $this withBizId($value)
  541. * @method string getPersonId()
  542. * @method $this withPersonId($value)
  543. * @method string getRemark()
  544. * @method $this withRemark($value)
  545. */
  546. class TransferIntentionOwner extends Rpc
  547. {
  548. }
  549. /**
  550. * @method string getBizType()
  551. * @method $this withBizType($value)
  552. * @method string getBizId()
  553. * @method $this withBizId($value)
  554. * @method string getPersonId()
  555. * @method $this withPersonId($value)
  556. * @method string getRemark()
  557. * @method $this withRemark($value)
  558. */
  559. class TransferProduceOwner extends Rpc
  560. {
  561. }