|
56 | 56 | 'input' => [ 'shape' => 'CheckLegalPersonRequestShape', ], |
57 | 57 | 'output' => [ 'shape' => 'CheckLegalPersonResponseShape', ], |
58 | 58 | ], |
59 | | - 'CheckAgent' => [ |
60 | | - 'name' => 'CheckAgent', |
61 | | - 'http' => [ |
62 | | - 'method' => 'POST', |
63 | | - 'requestUri' => '/v1/company:agent', |
64 | | - ], |
65 | | - 'input' => [ 'shape' => 'CheckAgentRequestShape', ], |
66 | | - 'output' => [ 'shape' => 'CheckAgentResponseShape', ], |
67 | | - ], |
68 | | - 'CheckLegalPersonAndAgent' => [ |
69 | | - 'name' => 'CheckLegalPersonAndAgent', |
70 | | - 'http' => [ |
71 | | - 'method' => 'POST', |
72 | | - 'requestUri' => '/v1/company:legalPersonAndAgent', |
73 | | - ], |
74 | | - 'input' => [ 'shape' => 'CheckLegalPersonAndAgentRequestShape', ], |
75 | | - 'output' => [ 'shape' => 'CheckLegalPersonAndAgentResponseShape', ], |
76 | | - ], |
77 | 59 | 'QueryCityList' => [ |
78 | 60 | 'name' => 'QueryCityList', |
79 | 61 | 'http' => [ |
|
83 | 65 | 'input' => [ 'shape' => 'QueryCityListRequestShape', ], |
84 | 66 | 'output' => [ 'shape' => 'QueryCityListResponseShape', ], |
85 | 67 | ], |
| 68 | + 'CompanyTransferSimple' => [ |
| 69 | + 'name' => 'CompanyTransferSimple', |
| 70 | + 'http' => [ |
| 71 | + 'method' => 'POST', |
| 72 | + 'requestUri' => '/v1/company:transferSimple', |
| 73 | + ], |
| 74 | + 'input' => [ 'shape' => 'CompanyTransferSimpleRequestShape', ], |
| 75 | + 'output' => [ 'shape' => 'CompanyTransferSimpleResponseShape', ], |
| 76 | + ], |
86 | 77 | 'QueryProvinceList' => [ |
87 | 78 | 'name' => 'QueryProvinceList', |
88 | 79 | 'http' => [ |
|
110 | 101 | 'input' => [ 'shape' => 'QueryBankBranchListRequestShape', ], |
111 | 102 | 'output' => [ 'shape' => 'QueryBankBranchListResponseShape', ], |
112 | 103 | ], |
| 104 | + 'IDCard' => [ |
| 105 | + 'name' => 'IDCard', |
| 106 | + 'http' => [ |
| 107 | + 'method' => 'POST', |
| 108 | + 'requestUri' => '/v1/ocr:IDCard', |
| 109 | + ], |
| 110 | + 'input' => [ 'shape' => 'IDCardRequestShape', ], |
| 111 | + 'output' => [ 'shape' => 'IDCardResponseShape', ], |
| 112 | + ], |
113 | 113 | 'DescribeApplyStatus' => [ |
114 | 114 | 'name' => 'DescribeApplyStatus', |
115 | 115 | 'http' => [ |
|
121 | 121 | ], |
122 | 122 | ], |
123 | 123 | 'shapes' => [ |
| 124 | + 'AccountInfoSimple' => [ |
| 125 | + 'type' => 'structure', |
| 126 | + 'members' => [ |
| 127 | + 'orgName' => [ 'type' => 'string', 'locationName' => 'orgName', ], |
| 128 | + 'bankCardNum' => [ 'type' => 'string', 'locationName' => 'bankCardNum', ], |
| 129 | + 'bankCode' => [ 'type' => 'string', 'locationName' => 'bankCode', ], |
| 130 | + ], |
| 131 | + ], |
124 | 132 | 'AuthInfo' => [ |
125 | 133 | 'type' => 'structure', |
126 | 134 | 'members' => [ |
|
144 | 152 | 'provinceCode' => [ 'type' => 'string', 'locationName' => 'provinceCode', ], |
145 | 153 | ], |
146 | 154 | ], |
147 | | - 'AgentSpec' => [ |
148 | | - 'type' => 'structure', |
149 | | - 'members' => [ |
150 | | - 'companyType' => [ 'type' => 'integer', 'locationName' => 'companyType', ], |
151 | | - 'companyName' => [ 'type' => 'string', 'locationName' => 'companyName', ], |
152 | | - 'idCode' => [ 'type' => 'string', 'locationName' => 'idCode', ], |
153 | | - 'agentName' => [ 'type' => 'string', 'locationName' => 'agentName', ], |
154 | | - 'agentId' => [ 'type' => 'string', 'locationName' => 'agentId', ], |
155 | | - ], |
156 | | - ], |
157 | 155 | 'LegalPersonSpec' => [ |
158 | 156 | 'type' => 'structure', |
159 | 157 | 'members' => [ |
|
171 | 169 | 'orderNumber' => [ 'type' => 'string', 'locationName' => 'orderNumber', ], |
172 | 170 | ], |
173 | 171 | ], |
174 | | - 'LegalPersonAndAgentSpec' => [ |
| 172 | + 'OCRInfo' => [ |
175 | 173 | 'type' => 'structure', |
176 | 174 | 'members' => [ |
177 | | - 'companyType' => [ 'type' => 'integer', 'locationName' => 'companyType', ], |
178 | | - 'companyName' => [ 'type' => 'string', 'locationName' => 'companyName', ], |
179 | | - 'idCode' => [ 'type' => 'string', 'locationName' => 'idCode', ], |
180 | | - 'legalPersonName' => [ 'type' => 'string', 'locationName' => 'legalPersonName', ], |
181 | | - 'legalPersonId' => [ 'type' => 'string', 'locationName' => 'legalPersonId', ], |
182 | | - 'agentName' => [ 'type' => 'string', 'locationName' => 'agentName', ], |
183 | | - 'agentId' => [ 'type' => 'string', 'locationName' => 'agentId', ], |
| 175 | + 'status' => [ 'type' => 'string', 'locationName' => 'status', ], |
| 176 | + 'name' => [ 'type' => 'string', 'locationName' => 'name', ], |
| 177 | + 'nation' => [ 'type' => 'string', 'locationName' => 'nation', ], |
| 178 | + 'address' => [ 'type' => 'string', 'locationName' => 'address', ], |
| 179 | + 'idNumber' => [ 'type' => 'string', 'locationName' => 'idNumber', ], |
| 180 | + 'birthday' => [ 'type' => 'string', 'locationName' => 'birthday', ], |
| 181 | + 'gender' => [ 'type' => 'string', 'locationName' => 'gender', ], |
184 | 182 | ], |
185 | 183 | ], |
186 | 184 | 'CheckInfo' => [ |
|
230 | 228 | 'value' => [ 'type' => 'integer', 'locationName' => 'value', ], |
231 | 229 | ], |
232 | 230 | ], |
| 231 | + 'Rule' => [ |
| 232 | + 'type' => 'structure', |
| 233 | + 'members' => [ |
| 234 | + 'id' => [ 'type' => 'integer', 'locationName' => 'id', ], |
| 235 | + 'pin' => [ 'type' => 'string', 'locationName' => 'pin', ], |
| 236 | + 'type' => [ 'type' => 'integer', 'locationName' => 'type', ], |
| 237 | + 'vendor' => [ 'type' => 'integer', 'locationName' => 'vendor', ], |
| 238 | + ], |
| 239 | + ], |
| 240 | + 'User' => [ |
| 241 | + 'type' => 'structure', |
| 242 | + 'members' => [ |
| 243 | + 'pin' => [ 'type' => 'string', 'locationName' => 'pin', ], |
| 244 | + 'status' => [ 'type' => 'integer', 'locationName' => 'status', ], |
| 245 | + 'resourceId' => [ 'type' => 'string', 'locationName' => 'resourceId', ], |
| 246 | + 'applyTime' => [ 'type' => 'string', 'locationName' => 'applyTime', ], |
| 247 | + 'name' => [ 'type' => 'string', 'locationName' => 'name', ], |
| 248 | + ], |
| 249 | + ], |
| 250 | + 'CodeList' => [ |
| 251 | + 'type' => 'structure', |
| 252 | + 'members' => [ |
| 253 | + 'list' => [ 'type' => 'list', 'member' => [ 'type' => 'object', ], ], |
| 254 | + ], |
| 255 | + ], |
| 256 | + 'UserList' => [ |
| 257 | + 'type' => 'structure', |
| 258 | + 'members' => [ |
| 259 | + 'list' => [ 'type' => 'list', 'member' => [ 'type' => 'object', ], ], |
| 260 | + ], |
| 261 | + ], |
| 262 | + 'RuleList' => [ |
| 263 | + 'type' => 'structure', |
| 264 | + 'members' => [ |
| 265 | + 'list' => [ 'type' => 'list', 'member' => [ 'type' => 'object', ], ], |
| 266 | + ], |
| 267 | + ], |
| 268 | + 'CodeDescription' => [ |
| 269 | + 'type' => 'structure', |
| 270 | + 'members' => [ |
| 271 | + 'code' => [ 'type' => 'integer', 'locationName' => 'code', ], |
| 272 | + 'description' => [ 'type' => 'string', 'locationName' => 'description', ], |
| 273 | + ], |
| 274 | + ], |
233 | 275 | 'QueryBankBranchListResponseShape' => [ |
234 | 276 | 'type' => 'structure', |
235 | 277 | 'members' => [ |
|
258 | 300 | 'companyInfo' => [ 'shape' => 'CompanyInfo', ], |
259 | 301 | ], |
260 | 302 | ], |
| 303 | + 'IDCardRequestShape' => [ |
| 304 | + 'type' => 'structure', |
| 305 | + 'members' => [ |
| 306 | + 'imageData' => [ 'type' => 'string', 'locationName' => 'imageData', ], |
| 307 | + 'side' => [ 'type' => 'string', 'locationName' => 'side', ], |
| 308 | + ], |
| 309 | + ], |
261 | 310 | 'CheckCompanyInfoResultShape' => [ |
262 | 311 | 'type' => 'structure', |
263 | 312 | 'members' => [ |
|
268 | 317 | 'detail' => [ 'type' => 'string', 'locationName' => 'detail', ], |
269 | 318 | ], |
270 | 319 | ], |
271 | | - 'CheckAgentRequestShape' => [ |
272 | | - 'type' => 'structure', |
273 | | - 'members' => [ |
274 | | - 'agentSpec' => [ 'shape' => 'AgentSpec', ], |
275 | | - ], |
276 | | - ], |
277 | | - 'CheckAgentResponseShape' => [ |
| 320 | + 'CompanyTransferSimpleResponseShape' => [ |
278 | 321 | 'type' => 'structure', |
279 | 322 | 'members' => [ |
280 | 323 | 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
281 | | - 'result' => [ 'shape' => 'CheckAgentResultShape', ], |
| 324 | + 'result' => [ 'shape' => 'CompanyTransferSimpleResultShape', ], |
282 | 325 | ], |
283 | 326 | ], |
284 | 327 | 'CompanyTransferResultShape' => [ |
|
291 | 334 | 'detail' => [ 'type' => 'string', 'locationName' => 'detail', ], |
292 | 335 | ], |
293 | 336 | ], |
294 | | - 'CheckLegalPersonAndAgentRequestShape' => [ |
| 337 | + 'CompanyTransferSimpleResultShape' => [ |
295 | 338 | 'type' => 'structure', |
296 | 339 | 'members' => [ |
297 | | - 'legalPersonAndAgentSpec' => [ 'shape' => 'LegalPersonAndAgentSpec', ], |
| 340 | + 'success' => [ 'type' => 'boolean', 'locationName' => 'success', ], |
| 341 | + 'hasException' => [ 'type' => 'boolean', 'locationName' => 'hasException', ], |
| 342 | + 'code' => [ 'type' => 'string', 'locationName' => 'code', ], |
| 343 | + 'message' => [ 'type' => 'string', 'locationName' => 'message', ], |
| 344 | + 'detail' => [ 'type' => 'string', 'locationName' => 'detail', ], |
298 | 345 | ], |
299 | 346 | ], |
300 | 347 | 'PersonalAuthRequestShape' => [ |
|
303 | 350 | 'personalSpec' => [ 'shape' => 'PersonalSpec', ], |
304 | 351 | ], |
305 | 352 | ], |
| 353 | + 'CompanyTransferSimpleRequestShape' => [ |
| 354 | + 'type' => 'structure', |
| 355 | + 'members' => [ |
| 356 | + 'accountInfo' => [ 'shape' => 'AccountInfoSimple', ], |
| 357 | + ], |
| 358 | + ], |
306 | 359 | 'PersonalAuthResponseShape' => [ |
307 | 360 | 'type' => 'structure', |
308 | 361 | 'members' => [ |
|
326 | 379 | 'detail' => [ 'type' => 'string', 'locationName' => 'detail', ], |
327 | 380 | ], |
328 | 381 | ], |
329 | | - 'CheckLegalPersonAndAgentResponseShape' => [ |
330 | | - 'type' => 'structure', |
331 | | - 'members' => [ |
332 | | - 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
333 | | - 'result' => [ 'shape' => 'CheckLegalPersonAndAgentResultShape', ], |
334 | | - ], |
335 | | - ], |
336 | 382 | 'QueryCityListResponseShape' => [ |
337 | 383 | 'type' => 'structure', |
338 | 384 | 'members' => [ |
|
416 | 462 | 'detail' => [ 'type' => 'string', 'locationName' => 'detail', ], |
417 | 463 | ], |
418 | 464 | ], |
| 465 | + 'IDCardResponseShape' => [ |
| 466 | + 'type' => 'structure', |
| 467 | + 'members' => [ |
| 468 | + 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
| 469 | + 'result' => [ 'shape' => 'IDCardResultShape', ], |
| 470 | + ], |
| 471 | + ], |
419 | 472 | 'QueryProvinceListResponseShape' => [ |
420 | 473 | 'type' => 'structure', |
421 | 474 | 'members' => [ |
|
436 | 489 | 'result' => [ 'shape' => 'CheckCompanyTransferResultShape', ], |
437 | 490 | ], |
438 | 491 | ], |
439 | | - 'CheckLegalPersonAndAgentResultShape' => [ |
440 | | - 'type' => 'structure', |
441 | | - 'members' => [ |
442 | | - 'success' => [ 'type' => 'boolean', 'locationName' => 'success', ], |
443 | | - 'hasException' => [ 'type' => 'boolean', 'locationName' => 'hasException', ], |
444 | | - 'code' => [ 'type' => 'string', 'locationName' => 'code', ], |
445 | | - 'message' => [ 'type' => 'string', 'locationName' => 'message', ], |
446 | | - 'detail' => [ 'type' => 'string', 'locationName' => 'detail', ], |
447 | | - ], |
448 | | - ], |
449 | 492 | 'CheckLegalPersonRequestShape' => [ |
450 | 493 | 'type' => 'structure', |
451 | 494 | 'members' => [ |
452 | 495 | 'legalPersonSpec' => [ 'shape' => 'LegalPersonSpec', ], |
453 | 496 | ], |
454 | 497 | ], |
455 | | - 'CheckAgentResultShape' => [ |
| 498 | + 'IDCardResultShape' => [ |
456 | 499 | 'type' => 'structure', |
457 | 500 | 'members' => [ |
458 | | - 'success' => [ 'type' => 'boolean', 'locationName' => 'success', ], |
459 | | - 'hasException' => [ 'type' => 'boolean', 'locationName' => 'hasException', ], |
460 | | - 'code' => [ 'type' => 'string', 'locationName' => 'code', ], |
461 | | - 'message' => [ 'type' => 'string', 'locationName' => 'message', ], |
462 | | - 'detail' => [ 'type' => 'string', 'locationName' => 'detail', ], |
| 501 | + 'status' => [ 'type' => 'string', 'locationName' => 'status', ], |
| 502 | + 'name' => [ 'type' => 'string', 'locationName' => 'name', ], |
| 503 | + 'nation' => [ 'type' => 'string', 'locationName' => 'nation', ], |
| 504 | + 'address' => [ 'type' => 'string', 'locationName' => 'address', ], |
| 505 | + 'idNumber' => [ 'type' => 'string', 'locationName' => 'idNumber', ], |
| 506 | + 'birthday' => [ 'type' => 'string', 'locationName' => 'birthday', ], |
| 507 | + 'gender' => [ 'type' => 'string', 'locationName' => 'gender', ], |
463 | 508 | ], |
464 | 509 | ], |
465 | 510 | 'QueryBankListResponseShape' => [ |
|
0 commit comments