更新页面
This commit is contained in:
parent
9398dfc214
commit
e6df1e710b
@ -48,7 +48,13 @@ use think\facade\Cache;
|
|||||||
use think\facade\Db;
|
use think\facade\Db;
|
||||||
use think\facade\Log;
|
use think\facade\Log;
|
||||||
use think\Response;
|
use think\Response;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Ocr;
|
||||||
|
use AlibabaCloud\Tea\Exception\TeaError;
|
||||||
|
use AlibabaCloud\Tea\Utils\Utils;
|
||||||
|
|
||||||
|
use Darabonba\OpenApi\Models\Config;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseRequest;
|
||||||
|
use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
|
||||||
/**
|
/**
|
||||||
* Class Common
|
* Class Common
|
||||||
* @package app\controller\api
|
* @package app\controller\api
|
||||||
@ -543,4 +549,48 @@ class Common extends BaseController
|
|||||||
return app('json')->success($data);
|
return app('json')->success($data);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 商户营业执照
|
||||||
|
*/
|
||||||
|
public function merchant_license_identify($image){
|
||||||
|
$config = new Config([
|
||||||
|
// 必填,您的 AccessKey ID
|
||||||
|
"accessKeyId" => 'LTAI5t7mhH3ij2cNWs1zhPmv',
|
||||||
|
// 必填,您的 AccessKey Secret
|
||||||
|
"accessKeySecret" => 'gqo2wMpvi8h5bDBmCpMje6BaiXvcPu'
|
||||||
|
]);
|
||||||
|
// Endpoint 请参考 https://api.aliyun.com/product/ocr
|
||||||
|
$config->endpoint = "ocr.cn-shanghai.aliyuncs.com";
|
||||||
|
$client= new Ocr($config);
|
||||||
|
$recognizeBusinessLicenseRequest = new RecognizeBusinessLicenseRequest([
|
||||||
|
"imageURL" => $image
|
||||||
|
]);
|
||||||
|
$runtime = new RuntimeOptions([]);
|
||||||
|
try {
|
||||||
|
// 复制代码运行请自行打印 API 的返回值
|
||||||
|
$resp=$client->recognizeBusinessLicenseWithOptions($recognizeBusinessLicenseRequest, $runtime);
|
||||||
|
$a= Utils::toArray($resp->body);
|
||||||
|
$data=[];
|
||||||
|
if($a){
|
||||||
|
$data['address']=$a['Data']['Address'];
|
||||||
|
$data['business']=$a['Data']['Business'];
|
||||||
|
$data['legal_person']=$a['Data']['LegalPerson'];
|
||||||
|
$data['name']=$a['Data']['Name'];
|
||||||
|
$data['register_number']=$a['Data']['RegisterNumber'];
|
||||||
|
$data['type']=$a['Data']['Type'];
|
||||||
|
}
|
||||||
|
return app('json')->success($data);
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (Exception $error) {
|
||||||
|
if (!($error instanceof TeaError)) {
|
||||||
|
$error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
|
||||||
|
}
|
||||||
|
$a=Utils::assertAsString($error->message);
|
||||||
|
return app('json')->fail($a);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,8 @@ class StoreSpu extends BaseController
|
|||||||
'product_ids',
|
'product_ids',
|
||||||
'mer_id',
|
'mer_id',
|
||||||
'type_id',
|
'type_id',
|
||||||
'street_id'
|
'street_id',
|
||||||
|
'category_id'
|
||||||
]);
|
]);
|
||||||
if ($where['type_id']) {
|
if ($where['type_id']) {
|
||||||
$arr = ['status' => 1, 'mer_state' => 1, 'is_del' => 0];
|
$arr = ['status' => 1, 'mer_state' => 1, 'is_del' => 0];
|
||||||
@ -74,6 +75,9 @@ class StoreSpu extends BaseController
|
|||||||
$where['product_type'] = $where['product_type']??0;
|
$where['product_type'] = $where['product_type']??0;
|
||||||
$where['order'] = $where['order'] ?: 'star';
|
$where['order'] = $where['order'] ?: 'star';
|
||||||
if ($where['is_trader'] != 1) unset($where['is_trader']);
|
if ($where['is_trader'] != 1) unset($where['is_trader']);
|
||||||
|
if($where['category_id']!=''){
|
||||||
|
$where['mer_ids']= Db::name('merchant')->where(['category_id'=>$where['category_id'],'status'=>1,'is_del'=>0])->column('mer_id');
|
||||||
|
}
|
||||||
$data = $this->repository->getApiSearch($where, $page, $limit, $this->userInfo);
|
$data = $this->repository->getApiSearch($where, $page, $limit, $this->userInfo);
|
||||||
return app('json')->success($data);
|
return app('json')->success($data);
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,8 @@
|
|||||||
"topthink/think-api": "1.0.27",
|
"topthink/think-api": "1.0.27",
|
||||||
"intervention/image": "^2.7",
|
"intervention/image": "^2.7",
|
||||||
"fastknife/ajcaptcha": "^1.2",
|
"fastknife/ajcaptcha": "^1.2",
|
||||||
"nelexa/zip": "^4.0"
|
"nelexa/zip": "^4.0",
|
||||||
|
"alibabacloud/ocr-20191230": "^3.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"symfony/var-dumper": "^4.2",
|
"symfony/var-dumper": "^4.2",
|
||||||
|
256
composer.lock
generated
256
composer.lock
generated
@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "60838a051e04cfb13dd75049f7540171",
|
"content-hash": "58b44ebbb4f75dc8b47bcaa0ae8327f7",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "adbario/php-dot-notation",
|
"name": "adbario/php-dot-notation",
|
||||||
@ -252,6 +252,59 @@
|
|||||||
"description": "Alibaba Cloud Gateway SPI Client",
|
"description": "Alibaba Cloud Gateway SPI Client",
|
||||||
"time": "2022-07-14T05:31:35+00:00"
|
"time": "2022-07-14T05:31:35+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "alibabacloud/ocr-20191230",
|
||||||
|
"version": "3.0.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/alibabacloud-sdk-php/Ocr-20191230.git",
|
||||||
|
"reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/alibabacloud-sdk-php/Ocr-20191230/zipball/8d7ad521074b2fd6c392cf0f2b114ce43f0612b8",
|
||||||
|
"reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8",
|
||||||
|
"shasum": "",
|
||||||
|
"mirrors": [
|
||||||
|
{
|
||||||
|
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||||
|
"preferred": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"alibabacloud/darabonba-openapi": "^0.2.8",
|
||||||
|
"alibabacloud/endpoint-util": "^0.1.0",
|
||||||
|
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
|
||||||
|
"alibabacloud/openplatform-20191219": "^2.0.1",
|
||||||
|
"alibabacloud/tea-fileform": "^0.3.0",
|
||||||
|
"alibabacloud/tea-oss-sdk": "^0.3.0",
|
||||||
|
"alibabacloud/tea-oss-utils": "^0.3.1",
|
||||||
|
"alibabacloud/tea-utils": "^0.2.19",
|
||||||
|
"php": ">5.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"AlibabaCloud\\SDK\\Ocr\\V20191230\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"Apache-2.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Alibaba Cloud SDK",
|
||||||
|
"email": "sdk-team@alibabacloud.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Alibaba Cloud OCR (20191230) SDK Library for PHP",
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/alibabacloud-sdk-php/Ocr-20191230/tree/3.0.0"
|
||||||
|
},
|
||||||
|
"time": "2023-07-04T02:18:29+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "alibabacloud/openapi-util",
|
"name": "alibabacloud/openapi-util",
|
||||||
"version": "0.1.13",
|
"version": "0.1.13",
|
||||||
@ -288,6 +341,55 @@
|
|||||||
"description": "Alibaba Cloud OpenApi Util",
|
"description": "Alibaba Cloud OpenApi Util",
|
||||||
"time": "2022-11-06T05:49:55+00:00"
|
"time": "2022-11-06T05:49:55+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "alibabacloud/openplatform-20191219",
|
||||||
|
"version": "2.0.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219.git",
|
||||||
|
"reference": "02ffa72369f8649214f1cfa336b52a544735f517"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/alibabacloud-sdk-php/OpenPlatform-20191219/zipball/02ffa72369f8649214f1cfa336b52a544735f517",
|
||||||
|
"reference": "02ffa72369f8649214f1cfa336b52a544735f517",
|
||||||
|
"shasum": "",
|
||||||
|
"mirrors": [
|
||||||
|
{
|
||||||
|
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||||
|
"preferred": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"alibabacloud/darabonba-openapi": "^0.2.8",
|
||||||
|
"alibabacloud/endpoint-util": "^0.1.0",
|
||||||
|
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
|
||||||
|
"alibabacloud/tea-utils": "^0.2.17",
|
||||||
|
"php": ">5.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"Apache-2.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Alibaba Cloud SDK",
|
||||||
|
"email": "sdk-team@alibabacloud.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Alibaba Cloud OpenPlatform (20191219) SDK Library for PHP",
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219/tree/2.0.1"
|
||||||
|
},
|
||||||
|
"time": "2023-02-07T06:39:39+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "alibabacloud/tea",
|
"name": "alibabacloud/tea",
|
||||||
"version": "3.2.1",
|
"version": "3.2.1",
|
||||||
@ -343,6 +445,156 @@
|
|||||||
],
|
],
|
||||||
"time": "2023-05-16T06:43:41+00:00"
|
"time": "2023-05-16T06:43:41+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "alibabacloud/tea-fileform",
|
||||||
|
"version": "0.3.4",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
|
||||||
|
"reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
|
||||||
|
"reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
|
||||||
|
"shasum": "",
|
||||||
|
"mirrors": [
|
||||||
|
{
|
||||||
|
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||||
|
"preferred": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"alibabacloud/tea": "^3.0",
|
||||||
|
"php": ">5.5"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.8.35|^5.4.3"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"AlibabaCloud\\Tea\\FileForm\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"Apache-2.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Alibaba Cloud SDK",
|
||||||
|
"email": "sdk-team@alibabacloud.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Alibaba Cloud Tea File Library for PHP",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
|
||||||
|
"source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
|
||||||
|
},
|
||||||
|
"time": "2020-12-01T07:24:35+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "alibabacloud/tea-oss-sdk",
|
||||||
|
"version": "0.3.6",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk.git",
|
||||||
|
"reference": "e28e70e2842b2e4da031a774209231bf08d7965c"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-sdk/zipball/e28e70e2842b2e4da031a774209231bf08d7965c",
|
||||||
|
"reference": "e28e70e2842b2e4da031a774209231bf08d7965c",
|
||||||
|
"shasum": "",
|
||||||
|
"mirrors": [
|
||||||
|
{
|
||||||
|
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||||
|
"preferred": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"alibabacloud/credentials": "^1.1",
|
||||||
|
"alibabacloud/tea-fileform": "^0.3.0",
|
||||||
|
"alibabacloud/tea-oss-utils": "^0.3.0",
|
||||||
|
"alibabacloud/tea-utils": "^0.2.0",
|
||||||
|
"alibabacloud/tea-xml": "^0.2",
|
||||||
|
"php": ">5.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"AlibabaCloud\\SDK\\OSS\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"Apache-2.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Alibaba Cloud SDK",
|
||||||
|
"email": "sdk-team@alibabacloud.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Aliyun Tea OSS SDK Library for PHP",
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk/tree/0.3.6"
|
||||||
|
},
|
||||||
|
"time": "2022-10-13T07:23:51+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "alibabacloud/tea-oss-utils",
|
||||||
|
"version": "0.3.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/alibabacloud-sdk-php/tea-oss-utils.git",
|
||||||
|
"reference": "19f58fc509347f075664e377742d4f9e18465372"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-utils/zipball/19f58fc509347f075664e377742d4f9e18465372",
|
||||||
|
"reference": "19f58fc509347f075664e377742d4f9e18465372",
|
||||||
|
"shasum": "",
|
||||||
|
"mirrors": [
|
||||||
|
{
|
||||||
|
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||||
|
"preferred": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"alibabacloud/tea": "^3.0",
|
||||||
|
"guzzlehttp/psr7": "^1.0",
|
||||||
|
"php": ">5.5"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.8.35|^5.4.3|^9.4"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"AlibabaCloud\\Tea\\OSSUtils\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"Apache-2.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Alibaba Cloud SDK",
|
||||||
|
"email": "sdk-team@alibabacloud.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Alibaba Cloud Tea OSS Utils Library for PHP",
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/alibabacloud-sdk-php/tea-oss-utils/tree/0.3.1"
|
||||||
|
},
|
||||||
|
"time": "2023-01-08T13:26:58+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "alibabacloud/tea-utils",
|
"name": "alibabacloud/tea-utils",
|
||||||
"version": "0.2.19",
|
"version": "0.2.19",
|
||||||
@ -5053,5 +5305,5 @@
|
|||||||
"ext-swoole": "^4.4.0"
|
"ext-swoole": "^4.4.0"
|
||||||
},
|
},
|
||||||
"platform-dev": [],
|
"platform-dev": [],
|
||||||
"plugin-api-version": "2.3.0"
|
"plugin-api-version": "2.1.0"
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,8 @@ Route::group('api/', function () {
|
|||||||
//强制登录
|
//强制登录
|
||||||
Route::group(function () {
|
Route::group(function () {
|
||||||
|
|
||||||
|
Route::post('merchant_license_identify', 'api.Common/merchant_license_identify');//营业执照识别
|
||||||
|
|
||||||
Route::post('user_free_trial/:id', 'api.store.product.StoreProduct/UserFreeTrial')->option([
|
Route::post('user_free_trial/:id', 'api.store.product.StoreProduct/UserFreeTrial')->option([
|
||||||
'_alias' => '免审编辑',
|
'_alias' => '免审编辑',
|
||||||
]);
|
]);
|
||||||
|
15
vendor/alibabacloud/ocr-20191230/.gitignore
vendored
Normal file
15
vendor/alibabacloud/ocr-20191230/.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
composer.phar
|
||||||
|
/vendor/
|
||||||
|
|
||||||
|
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
|
||||||
|
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
|
||||||
|
composer.lock
|
||||||
|
|
||||||
|
.vscode/
|
||||||
|
.idea
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
cache/
|
||||||
|
*.cache
|
||||||
|
runtime/
|
||||||
|
.php_cs.cache
|
65
vendor/alibabacloud/ocr-20191230/.php_cs.dist
vendored
Normal file
65
vendor/alibabacloud/ocr-20191230/.php_cs.dist
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This document has been generated with
|
||||||
|
* https://mlocati.github.io/php-cs-fixer-configurator/#version:2.15|configurator
|
||||||
|
* you can change this configuration by importing this file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return PhpCsFixer\Config::create()
|
||||||
|
->setRiskyAllowed(true)
|
||||||
|
->setIndent(' ')
|
||||||
|
->setRules([
|
||||||
|
'@PSR2' => true,
|
||||||
|
'@PhpCsFixer' => true,
|
||||||
|
'@Symfony:risky' => true,
|
||||||
|
'concat_space' => ['spacing' => 'one'],
|
||||||
|
'array_syntax' => ['syntax' => 'short'],
|
||||||
|
'array_indentation' => true,
|
||||||
|
'combine_consecutive_unsets' => true,
|
||||||
|
'method_separation' => true,
|
||||||
|
'single_quote' => true,
|
||||||
|
'declare_equal_normalize' => true,
|
||||||
|
'function_typehint_space' => true,
|
||||||
|
'hash_to_slash_comment' => true,
|
||||||
|
'include' => true,
|
||||||
|
'lowercase_cast' => true,
|
||||||
|
'no_multiline_whitespace_before_semicolons' => true,
|
||||||
|
'no_leading_import_slash' => true,
|
||||||
|
'no_multiline_whitespace_around_double_arrow' => true,
|
||||||
|
'no_spaces_around_offset' => true,
|
||||||
|
'no_unneeded_control_parentheses' => true,
|
||||||
|
'no_unused_imports' => true,
|
||||||
|
'no_whitespace_before_comma_in_array' => true,
|
||||||
|
'no_whitespace_in_blank_line' => true,
|
||||||
|
'object_operator_without_whitespace' => true,
|
||||||
|
'single_blank_line_before_namespace' => true,
|
||||||
|
'single_class_element_per_statement' => true,
|
||||||
|
'space_after_semicolon' => true,
|
||||||
|
'standardize_not_equals' => true,
|
||||||
|
'ternary_operator_spaces' => true,
|
||||||
|
'trailing_comma_in_multiline_array' => true,
|
||||||
|
'trim_array_spaces' => true,
|
||||||
|
'unary_operator_spaces' => true,
|
||||||
|
'whitespace_after_comma_in_array' => true,
|
||||||
|
'no_extra_consecutive_blank_lines' => [
|
||||||
|
'curly_brace_block',
|
||||||
|
'extra',
|
||||||
|
'parenthesis_brace_block',
|
||||||
|
'square_brace_block',
|
||||||
|
'throw',
|
||||||
|
'use',
|
||||||
|
],
|
||||||
|
'binary_operator_spaces' => [
|
||||||
|
'align_double_arrow' => true,
|
||||||
|
'align_equals' => true,
|
||||||
|
],
|
||||||
|
'braces' => [
|
||||||
|
'allow_single_line_closure' => true,
|
||||||
|
],
|
||||||
|
])
|
||||||
|
->setFinder(
|
||||||
|
PhpCsFixer\Finder::create()
|
||||||
|
->exclude('vendor')
|
||||||
|
->exclude('tests')
|
||||||
|
->in(__DIR__)
|
||||||
|
);
|
70
vendor/alibabacloud/ocr-20191230/ChangeLog.md
vendored
Normal file
70
vendor/alibabacloud/ocr-20191230/ChangeLog.md
vendored
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
2023-07-04 Version: 3.0.0
|
||||||
|
- Update TrimDocument.
|
||||||
|
- Update RecognizeTakeoutOrder.
|
||||||
|
- Update RecognizePassportMRZ.
|
||||||
|
- Update RecognizeChinapassport.
|
||||||
|
- Update DetectCardScreenshot.
|
||||||
|
- Update RecognizeVerificationcode.
|
||||||
|
- Update RecognizePoiName.
|
||||||
|
- Update RecognizeAccountPage.
|
||||||
|
|
||||||
|
2023-02-16 Version: 2.0.17
|
||||||
|
- Update RecognizeVideoCharacter.
|
||||||
|
|
||||||
|
2023-01-13 Version: 2.0.16
|
||||||
|
- Update sdk.
|
||||||
|
|
||||||
|
2023-01-11 Version: 2.0.15
|
||||||
|
- Update sdk.
|
||||||
|
|
||||||
|
2023-01-05 Version: 2.0.14
|
||||||
|
- Release RecognizeVATInvoice.
|
||||||
|
|
||||||
|
2022-11-10 Version: 2.0.13
|
||||||
|
- Release RecognizeVATInvoice.
|
||||||
|
|
||||||
|
2022-10-17 Version: 2.0.12
|
||||||
|
- Release RecognizeVATInvoice.
|
||||||
|
|
||||||
|
2022-10-14 Version: 2.0.11
|
||||||
|
- Release RecognizeVATInvoice.
|
||||||
|
|
||||||
|
2022-06-21 Version: 2.0.10
|
||||||
|
- Release RecognizeTurkeyIdentityCard RecognizeMalaysiaIdentityCard RecognizeRussiaIdentityCard RecognizeIndonesiaIdentityCard RecognizeUkraineIdentityCard RecognizeVietnamIdentityCard.
|
||||||
|
|
||||||
|
2022-05-25 Version: 2.0.9
|
||||||
|
- Release RecognizeTurkeyIdentityCard RecognizeMalaysiaIdentityCard RecognizeRussiaIdentityCard RecognizeIndonesiaIdentityCard RecognizeIndonesiaIdentityCard.
|
||||||
|
|
||||||
|
2022-05-05 Version: 2.0.8
|
||||||
|
- Release RecognizeUkraineIdentityCard.
|
||||||
|
|
||||||
|
2022-03-09 Version: 2.0.7
|
||||||
|
- Release RecognizeVideoCastCrewList.
|
||||||
|
|
||||||
|
2022-03-03 Version: 2.0.6
|
||||||
|
- RecognizeVideoCharacter add output field inputFile.
|
||||||
|
|
||||||
|
2021-12-15 Version: 2.0.5
|
||||||
|
- RecognizeVideoCharacter add output field inputFile.
|
||||||
|
|
||||||
|
2021-11-23 Version: 1.0.5
|
||||||
|
- Update RecognizeCharacter.
|
||||||
|
|
||||||
|
2021-07-02 Version: 1.0.4
|
||||||
|
- Release RecognizeQuotaInvoice RecognizeTicketInvoice RecognizePdf.
|
||||||
|
|
||||||
|
2021-05-10 Version: 1.0.3
|
||||||
|
- Update RecognizeDriverLicense RecognizeLicensePlate.
|
||||||
|
|
||||||
|
2021-03-25 Version: 1.0.2
|
||||||
|
- Generated php 2019-12-30 for ocr.
|
||||||
|
|
||||||
|
2021-03-04 Version: 1.0.1
|
||||||
|
- Update Ocr.
|
||||||
|
|
||||||
|
2021-01-29 Version: 1.0.0
|
||||||
|
- Generated php 2019-12-30 for ocr.
|
||||||
|
|
||||||
|
2020-11-13 Version: 0.1.16
|
||||||
|
- Release DetectCardScreenshot RecognizePoiName.
|
||||||
|
|
201
vendor/alibabacloud/ocr-20191230/LICENSE
vendored
Normal file
201
vendor/alibabacloud/ocr-20191230/LICENSE
vendored
Normal file
@ -0,0 +1,201 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
35
vendor/alibabacloud/ocr-20191230/README-CN.md
vendored
Normal file
35
vendor/alibabacloud/ocr-20191230/README-CN.md
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
[English](README.md) | 简体中文
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
# Alibaba Cloud ocr SDK for PHP
|
||||||
|
|
||||||
|
## 安装
|
||||||
|
|
||||||
|
### Composer
|
||||||
|
|
||||||
|
```bash
|
||||||
|
composer require alibabacloud/ocr-20191230
|
||||||
|
```
|
||||||
|
|
||||||
|
## 问题
|
||||||
|
|
||||||
|
[提交 Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new),不符合指南的问题可能会立即关闭。
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
[快速使用](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-CN.md#%E5%BF%AB%E9%80%9F%E4%BD%BF%E7%94%A8)
|
||||||
|
|
||||||
|
## 发行说明
|
||||||
|
|
||||||
|
每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
|
||||||
|
|
||||||
|
## 相关
|
||||||
|
|
||||||
|
* [最新源码](https://github.com/aliyun/alibabacloud-php-sdk/)
|
||||||
|
|
||||||
|
## 许可证
|
||||||
|
|
||||||
|
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
|
||||||
|
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
35
vendor/alibabacloud/ocr-20191230/README.md
vendored
Normal file
35
vendor/alibabacloud/ocr-20191230/README.md
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
English | [简体中文](README-CN.md)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
# Alibaba Cloud ocr SDK for PHP
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### Composer
|
||||||
|
|
||||||
|
```bash
|
||||||
|
composer require alibabacloud/ocr-20191230
|
||||||
|
```
|
||||||
|
|
||||||
|
## Issues
|
||||||
|
|
||||||
|
[Opening an Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
[Quick Examples](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-EN.md#quick-examples)
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
|
||||||
|
|
||||||
|
## References
|
||||||
|
|
||||||
|
* [Latest Release](https://github.com/aliyun/alibabacloud-php-sdk/)
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
|
||||||
|
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
17
vendor/alibabacloud/ocr-20191230/autoload.php
vendored
Normal file
17
vendor/alibabacloud/ocr-20191230/autoload.php
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
if (file_exists(__DIR__ . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php')) {
|
||||||
|
require_once __DIR__ . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
spl_autoload_register(function ($class) {
|
||||||
|
$name = str_replace('AlibabaCloud\\SDK\\Ocr\\V20191230\\', '', $class);
|
||||||
|
$file = __DIR__ . \DIRECTORY_SEPARATOR . 'src' . \DIRECTORY_SEPARATOR . str_replace('\\', \DIRECTORY_SEPARATOR, $name) . '.php';
|
||||||
|
if (file_exists($file)) {
|
||||||
|
require_once $file;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
});
|
37
vendor/alibabacloud/ocr-20191230/composer.json
vendored
Normal file
37
vendor/alibabacloud/ocr-20191230/composer.json
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"name": "alibabacloud/ocr-20191230",
|
||||||
|
"description": "Alibaba Cloud OCR (20191230) SDK Library for PHP",
|
||||||
|
"type": "library",
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Alibaba Cloud SDK",
|
||||||
|
"email": "sdk-team@alibabacloud.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"php": ">5.5",
|
||||||
|
"alibabacloud/tea-utils": "^0.2.19",
|
||||||
|
"alibabacloud/tea-oss-sdk": "^0.3.0",
|
||||||
|
"alibabacloud/openplatform-20191219": "^2.0.1",
|
||||||
|
"alibabacloud/tea-oss-utils": "^0.3.1",
|
||||||
|
"alibabacloud/tea-fileform": "^0.3.0",
|
||||||
|
"alibabacloud/darabonba-openapi": "^0.2.8",
|
||||||
|
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
|
||||||
|
"alibabacloud/endpoint-util": "^0.1.0"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"AlibabaCloud\\SDK\\Ocr\\V20191230\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"fixer": "php-cs-fixer fix ./"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"sort-packages": true,
|
||||||
|
"preferred-install": "dist",
|
||||||
|
"optimize-autoloader": true
|
||||||
|
},
|
||||||
|
"prefer-stable": true
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class GetAsyncJobResultRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example E75FE679-0303-4DD1-8252-1143B4FA8A27
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $jobId;
|
||||||
|
protected $_name = [
|
||||||
|
'jobId' => 'JobId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->jobId) {
|
||||||
|
$res['JobId'] = $this->jobId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return GetAsyncJobResultRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['JobId'])) {
|
||||||
|
$model->jobId = $map['JobId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class GetAsyncJobResultResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var GetAsyncJobResultResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return GetAsyncJobResultResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = GetAsyncJobResultResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\GetAsyncJobResultResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class GetAsyncJobResultResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example A1F44EC4-118D-4A03-B213-F908F36F7DAA
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return GetAsyncJobResultResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
103
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody/data.php
vendored
Normal file
103
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody/data.php
vendored
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\GetAsyncJobResultResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example InvalidParameter
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $errorCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example paramsIllegal
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $errorMessage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 49E2CC28-ED1D-4CC5-854D-7D0AE2B20976
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $jobId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $result;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example PROCESS_SUCCESS
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $status;
|
||||||
|
protected $_name = [
|
||||||
|
'errorCode' => 'ErrorCode',
|
||||||
|
'errorMessage' => 'ErrorMessage',
|
||||||
|
'jobId' => 'JobId',
|
||||||
|
'result' => 'Result',
|
||||||
|
'status' => 'Status',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->errorCode) {
|
||||||
|
$res['ErrorCode'] = $this->errorCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->errorMessage) {
|
||||||
|
$res['ErrorMessage'] = $this->errorMessage;
|
||||||
|
}
|
||||||
|
if (null !== $this->jobId) {
|
||||||
|
$res['JobId'] = $this->jobId;
|
||||||
|
}
|
||||||
|
if (null !== $this->result) {
|
||||||
|
$res['Result'] = $this->result;
|
||||||
|
}
|
||||||
|
if (null !== $this->status) {
|
||||||
|
$res['Status'] = $this->status;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ErrorCode'])) {
|
||||||
|
$model->errorCode = $map['ErrorCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['ErrorMessage'])) {
|
||||||
|
$model->errorMessage = $map['ErrorMessage'];
|
||||||
|
}
|
||||||
|
if (isset($map['JobId'])) {
|
||||||
|
$model->jobId = $map['JobId'];
|
||||||
|
}
|
||||||
|
if (isset($map['Result'])) {
|
||||||
|
$model->result = $map['Result'];
|
||||||
|
}
|
||||||
|
if (isset($map['Status'])) {
|
||||||
|
$model->status = $map['Status'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeBankCardAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBankCard/yhk3.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBankCardAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBankCardRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBankCard/yhk3.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBankCardRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBankCardResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeBankCardResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBankCardResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeBankCardResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBankCardResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBankCardResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example D9C7521-0367-42EE-9646-FD066CCADB26
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBankCardResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
75
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody/data.php
vendored
Normal file
75
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody/data.php
vendored
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBankCardResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $bankName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 6212262315007683105
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $cardNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 07/26
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $validDate;
|
||||||
|
protected $_name = [
|
||||||
|
'bankName' => 'BankName',
|
||||||
|
'cardNumber' => 'CardNumber',
|
||||||
|
'validDate' => 'ValidDate',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->bankName) {
|
||||||
|
$res['BankName'] = $this->bankName;
|
||||||
|
}
|
||||||
|
if (null !== $this->cardNumber) {
|
||||||
|
$res['CardNumber'] = $this->cardNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->validDate) {
|
||||||
|
$res['ValidDate'] = $this->validDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['BankName'])) {
|
||||||
|
$model->bankName = $map['BankName'];
|
||||||
|
}
|
||||||
|
if (isset($map['CardNumber'])) {
|
||||||
|
$model->cardNumber = $map['CardNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['ValidDate'])) {
|
||||||
|
$model->validDate = $map['ValidDate'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeBusinessCardAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessCard/RecognizeBusinessCard1.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessCardAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBusinessCardRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessCard/RecognizeBusinessCard1.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessCardRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBusinessCardResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeBusinessCardResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessCardResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeBusinessCardResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessCardResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBusinessCardResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 0068957A-C493-481F-BA14-C3F89BF75BD4
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessCardResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
145
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody/data.php
vendored
Normal file
145
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody/data.php
vendored
Normal file
@ -0,0 +1,145 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessCardResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $addresses;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $cellPhoneNumbers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $companies;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $departments;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $emails;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $officePhoneNumbers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $titles;
|
||||||
|
protected $_name = [
|
||||||
|
'addresses' => 'Addresses',
|
||||||
|
'cellPhoneNumbers' => 'CellPhoneNumbers',
|
||||||
|
'companies' => 'Companies',
|
||||||
|
'departments' => 'Departments',
|
||||||
|
'emails' => 'Emails',
|
||||||
|
'name' => 'Name',
|
||||||
|
'officePhoneNumbers' => 'OfficePhoneNumbers',
|
||||||
|
'titles' => 'Titles',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->addresses) {
|
||||||
|
$res['Addresses'] = $this->addresses;
|
||||||
|
}
|
||||||
|
if (null !== $this->cellPhoneNumbers) {
|
||||||
|
$res['CellPhoneNumbers'] = $this->cellPhoneNumbers;
|
||||||
|
}
|
||||||
|
if (null !== $this->companies) {
|
||||||
|
$res['Companies'] = $this->companies;
|
||||||
|
}
|
||||||
|
if (null !== $this->departments) {
|
||||||
|
$res['Departments'] = $this->departments;
|
||||||
|
}
|
||||||
|
if (null !== $this->emails) {
|
||||||
|
$res['Emails'] = $this->emails;
|
||||||
|
}
|
||||||
|
if (null !== $this->name) {
|
||||||
|
$res['Name'] = $this->name;
|
||||||
|
}
|
||||||
|
if (null !== $this->officePhoneNumbers) {
|
||||||
|
$res['OfficePhoneNumbers'] = $this->officePhoneNumbers;
|
||||||
|
}
|
||||||
|
if (null !== $this->titles) {
|
||||||
|
$res['Titles'] = $this->titles;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Addresses'])) {
|
||||||
|
if (!empty($map['Addresses'])) {
|
||||||
|
$model->addresses = $map['Addresses'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['CellPhoneNumbers'])) {
|
||||||
|
if (!empty($map['CellPhoneNumbers'])) {
|
||||||
|
$model->cellPhoneNumbers = $map['CellPhoneNumbers'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Companies'])) {
|
||||||
|
if (!empty($map['Companies'])) {
|
||||||
|
$model->companies = $map['Companies'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Departments'])) {
|
||||||
|
if (!empty($map['Departments'])) {
|
||||||
|
$model->departments = $map['Departments'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Emails'])) {
|
||||||
|
if (!empty($map['Emails'])) {
|
||||||
|
$model->emails = $map['Emails'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Name'])) {
|
||||||
|
$model->name = $map['Name'];
|
||||||
|
}
|
||||||
|
if (isset($map['OfficePhoneNumbers'])) {
|
||||||
|
if (!empty($map['OfficePhoneNumbers'])) {
|
||||||
|
$model->officePhoneNumbers = $map['OfficePhoneNumbers'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Titles'])) {
|
||||||
|
if (!empty($map['Titles'])) {
|
||||||
|
$model->titles = $map['Titles'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeBusinessLicenseAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessLicense/RecognizeBusinessLicense1.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessLicenseAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBusinessLicenseRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessLicense/RecognizeBusinessLicense1.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessLicenseRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBusinessLicenseResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeBusinessLicenseResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessLicenseResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeBusinessLicenseResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeBusinessLicenseResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example F34D031B-02BD-4A59-BA35-EE068DD6F6E6
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeBusinessLicenseResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
215
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data.php
vendored
Normal file
215
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data.php
vendored
Normal file
@ -0,0 +1,215 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\emblem;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\QRCode;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\stamp;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\title;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $address;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 0
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $angle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $business;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $capital;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var emblem
|
||||||
|
*/
|
||||||
|
public $emblem;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 20150504
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $establishDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $legalPerson;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var QRCode
|
||||||
|
*/
|
||||||
|
public $QRCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 91500108320423****
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $registerNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var stamp
|
||||||
|
*/
|
||||||
|
public $stamp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var title
|
||||||
|
*/
|
||||||
|
public $title;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 29991231
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $validPeriod;
|
||||||
|
protected $_name = [
|
||||||
|
'address' => 'Address',
|
||||||
|
'angle' => 'Angle',
|
||||||
|
'business' => 'Business',
|
||||||
|
'capital' => 'Capital',
|
||||||
|
'emblem' => 'Emblem',
|
||||||
|
'establishDate' => 'EstablishDate',
|
||||||
|
'legalPerson' => 'LegalPerson',
|
||||||
|
'name' => 'Name',
|
||||||
|
'QRCode' => 'QRCode',
|
||||||
|
'registerNumber' => 'RegisterNumber',
|
||||||
|
'stamp' => 'Stamp',
|
||||||
|
'title' => 'Title',
|
||||||
|
'type' => 'Type',
|
||||||
|
'validPeriod' => 'ValidPeriod',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->address) {
|
||||||
|
$res['Address'] = $this->address;
|
||||||
|
}
|
||||||
|
if (null !== $this->angle) {
|
||||||
|
$res['Angle'] = $this->angle;
|
||||||
|
}
|
||||||
|
if (null !== $this->business) {
|
||||||
|
$res['Business'] = $this->business;
|
||||||
|
}
|
||||||
|
if (null !== $this->capital) {
|
||||||
|
$res['Capital'] = $this->capital;
|
||||||
|
}
|
||||||
|
if (null !== $this->emblem) {
|
||||||
|
$res['Emblem'] = null !== $this->emblem ? $this->emblem->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->establishDate) {
|
||||||
|
$res['EstablishDate'] = $this->establishDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->legalPerson) {
|
||||||
|
$res['LegalPerson'] = $this->legalPerson;
|
||||||
|
}
|
||||||
|
if (null !== $this->name) {
|
||||||
|
$res['Name'] = $this->name;
|
||||||
|
}
|
||||||
|
if (null !== $this->QRCode) {
|
||||||
|
$res['QRCode'] = null !== $this->QRCode ? $this->QRCode->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->registerNumber) {
|
||||||
|
$res['RegisterNumber'] = $this->registerNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->stamp) {
|
||||||
|
$res['Stamp'] = null !== $this->stamp ? $this->stamp->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->title) {
|
||||||
|
$res['Title'] = null !== $this->title ? $this->title->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->type) {
|
||||||
|
$res['Type'] = $this->type;
|
||||||
|
}
|
||||||
|
if (null !== $this->validPeriod) {
|
||||||
|
$res['ValidPeriod'] = $this->validPeriod;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Address'])) {
|
||||||
|
$model->address = $map['Address'];
|
||||||
|
}
|
||||||
|
if (isset($map['Angle'])) {
|
||||||
|
$model->angle = $map['Angle'];
|
||||||
|
}
|
||||||
|
if (isset($map['Business'])) {
|
||||||
|
$model->business = $map['Business'];
|
||||||
|
}
|
||||||
|
if (isset($map['Capital'])) {
|
||||||
|
$model->capital = $map['Capital'];
|
||||||
|
}
|
||||||
|
if (isset($map['Emblem'])) {
|
||||||
|
$model->emblem = emblem::fromMap($map['Emblem']);
|
||||||
|
}
|
||||||
|
if (isset($map['EstablishDate'])) {
|
||||||
|
$model->establishDate = $map['EstablishDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['LegalPerson'])) {
|
||||||
|
$model->legalPerson = $map['LegalPerson'];
|
||||||
|
}
|
||||||
|
if (isset($map['Name'])) {
|
||||||
|
$model->name = $map['Name'];
|
||||||
|
}
|
||||||
|
if (isset($map['QRCode'])) {
|
||||||
|
$model->QRCode = QRCode::fromMap($map['QRCode']);
|
||||||
|
}
|
||||||
|
if (isset($map['RegisterNumber'])) {
|
||||||
|
$model->registerNumber = $map['RegisterNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['Stamp'])) {
|
||||||
|
$model->stamp = stamp::fromMap($map['Stamp']);
|
||||||
|
}
|
||||||
|
if (isset($map['Title'])) {
|
||||||
|
$model->title = title::fromMap($map['Title']);
|
||||||
|
}
|
||||||
|
if (isset($map['Type'])) {
|
||||||
|
$model->type = $map['Type'];
|
||||||
|
}
|
||||||
|
if (isset($map['ValidPeriod'])) {
|
||||||
|
$model->validPeriod = $map['ValidPeriod'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/QRCode.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/QRCode.php
vendored
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class QRCode extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 132
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 156
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $left;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 914
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $top;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 126
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
protected $_name = [
|
||||||
|
'height' => 'Height',
|
||||||
|
'left' => 'Left',
|
||||||
|
'top' => 'Top',
|
||||||
|
'width' => 'Width',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->left) {
|
||||||
|
$res['Left'] = $this->left;
|
||||||
|
}
|
||||||
|
if (null !== $this->top) {
|
||||||
|
$res['Top'] = $this->top;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return QRCode
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['Left'])) {
|
||||||
|
$model->left = $map['Left'];
|
||||||
|
}
|
||||||
|
if (isset($map['Top'])) {
|
||||||
|
$model->top = $map['Top'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/emblem.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/emblem.php
vendored
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class emblem extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 163
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 366
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $left;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 8
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $top;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 162
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
protected $_name = [
|
||||||
|
'height' => 'Height',
|
||||||
|
'left' => 'Left',
|
||||||
|
'top' => 'Top',
|
||||||
|
'width' => 'Width',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->left) {
|
||||||
|
$res['Left'] = $this->left;
|
||||||
|
}
|
||||||
|
if (null !== $this->top) {
|
||||||
|
$res['Top'] = $this->top;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return emblem
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['Left'])) {
|
||||||
|
$model->left = $map['Left'];
|
||||||
|
}
|
||||||
|
if (isset($map['Top'])) {
|
||||||
|
$model->top = $map['Top'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/stamp.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/stamp.php
vendored
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class stamp extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 154
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 650
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $left;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 1030
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $top;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 154
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
protected $_name = [
|
||||||
|
'height' => 'Height',
|
||||||
|
'left' => 'Left',
|
||||||
|
'top' => 'Top',
|
||||||
|
'width' => 'Width',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->left) {
|
||||||
|
$res['Left'] = $this->left;
|
||||||
|
}
|
||||||
|
if (null !== $this->top) {
|
||||||
|
$res['Top'] = $this->top;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return stamp
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['Left'])) {
|
||||||
|
$model->left = $map['Left'];
|
||||||
|
}
|
||||||
|
if (isset($map['Top'])) {
|
||||||
|
$model->top = $map['Top'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/title.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/title.php
vendored
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class title extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 10
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 10
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $left;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 10
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $top;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 10
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
protected $_name = [
|
||||||
|
'height' => 'Height',
|
||||||
|
'left' => 'Left',
|
||||||
|
'top' => 'Top',
|
||||||
|
'width' => 'Width',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->left) {
|
||||||
|
$res['Left'] = $this->left;
|
||||||
|
}
|
||||||
|
if (null !== $this->top) {
|
||||||
|
$res['Top'] = $this->top;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return title
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['Left'])) {
|
||||||
|
$model->left = $map['Left'];
|
||||||
|
}
|
||||||
|
if (isset($map['Top'])) {
|
||||||
|
$model->top = $map['Top'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
78
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterAdvanceRequest.php
vendored
Normal file
78
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeCharacterAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeCharacter/RecognizeCharacter5.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 10
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $minHeight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example true
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $outputProbability;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
'minHeight' => 'MinHeight',
|
||||||
|
'outputProbability' => 'OutputProbability',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
if (null !== $this->minHeight) {
|
||||||
|
$res['MinHeight'] = $this->minHeight;
|
||||||
|
}
|
||||||
|
if (null !== $this->outputProbability) {
|
||||||
|
$res['OutputProbability'] = $this->outputProbability;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeCharacterAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['MinHeight'])) {
|
||||||
|
$model->minHeight = $map['MinHeight'];
|
||||||
|
}
|
||||||
|
if (isset($map['OutputProbability'])) {
|
||||||
|
$model->outputProbability = $map['OutputProbability'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
77
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterRequest.php
vendored
Normal file
77
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterRequest.php
vendored
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeCharacterRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeCharacter/RecognizeCharacter5.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 10
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $minHeight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example true
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $outputProbability;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
'minHeight' => 'MinHeight',
|
||||||
|
'outputProbability' => 'OutputProbability',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
if (null !== $this->minHeight) {
|
||||||
|
$res['MinHeight'] = $this->minHeight;
|
||||||
|
}
|
||||||
|
if (null !== $this->outputProbability) {
|
||||||
|
$res['OutputProbability'] = $this->outputProbability;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeCharacterRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['MinHeight'])) {
|
||||||
|
$model->minHeight = $map['MinHeight'];
|
||||||
|
}
|
||||||
|
if (isset($map['OutputProbability'])) {
|
||||||
|
$model->outputProbability = $map['OutputProbability'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeCharacterResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeCharacterResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeCharacterResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeCharacterResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeCharacterResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 7A9BC7FE-2D42-57AF-93BC-09A229DD2F1D
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeCharacterResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data.php
vendored
Normal file
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data.php
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data\results;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var results[]
|
||||||
|
*/
|
||||||
|
public $results;
|
||||||
|
protected $_name = [
|
||||||
|
'results' => 'Results',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->results) {
|
||||||
|
$res['Results'] = [];
|
||||||
|
if (null !== $this->results && \is_array($this->results)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->results as $item) {
|
||||||
|
$res['Results'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Results'])) {
|
||||||
|
if (!empty($map['Results'])) {
|
||||||
|
$model->results = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Results'] as $item) {
|
||||||
|
$model->results[$n++] = null !== $item ? results::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data\results\textRectangles;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class results extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 0.99
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $probability;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $text;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var textRectangles
|
||||||
|
*/
|
||||||
|
public $textRectangles;
|
||||||
|
protected $_name = [
|
||||||
|
'probability' => 'Probability',
|
||||||
|
'text' => 'Text',
|
||||||
|
'textRectangles' => 'TextRectangles',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->probability) {
|
||||||
|
$res['Probability'] = $this->probability;
|
||||||
|
}
|
||||||
|
if (null !== $this->text) {
|
||||||
|
$res['Text'] = $this->text;
|
||||||
|
}
|
||||||
|
if (null !== $this->textRectangles) {
|
||||||
|
$res['TextRectangles'] = null !== $this->textRectangles ? $this->textRectangles->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return results
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Probability'])) {
|
||||||
|
$model->probability = $map['Probability'];
|
||||||
|
}
|
||||||
|
if (isset($map['Text'])) {
|
||||||
|
$model->text = $map['Text'];
|
||||||
|
}
|
||||||
|
if (isset($map['TextRectangles'])) {
|
||||||
|
$model->textRectangles = textRectangles::fromMap($map['TextRectangles']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,105 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data\results;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class textRectangles extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example -65
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $angle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 409
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 511
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $left;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 150
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $top;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 77
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
protected $_name = [
|
||||||
|
'angle' => 'Angle',
|
||||||
|
'height' => 'Height',
|
||||||
|
'left' => 'Left',
|
||||||
|
'top' => 'Top',
|
||||||
|
'width' => 'Width',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->angle) {
|
||||||
|
$res['Angle'] = $this->angle;
|
||||||
|
}
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->left) {
|
||||||
|
$res['Left'] = $this->left;
|
||||||
|
}
|
||||||
|
if (null !== $this->top) {
|
||||||
|
$res['Top'] = $this->top;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return textRectangles
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Angle'])) {
|
||||||
|
$model->angle = $map['Angle'];
|
||||||
|
}
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['Left'])) {
|
||||||
|
$model->left = $map['Left'];
|
||||||
|
}
|
||||||
|
if (isset($map['Top'])) {
|
||||||
|
$model->top = $map['Top'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseAdvanceRequest.php
vendored
Normal file
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeDriverLicenseAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDriverLicense/jsz2.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example face
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $side;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
'side' => 'Side',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
if (null !== $this->side) {
|
||||||
|
$res['Side'] = $this->side;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDriverLicenseAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['Side'])) {
|
||||||
|
$model->side = $map['Side'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseRequest.php
vendored
Normal file
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseRequest.php
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeDriverLicenseRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDriverLicense/jsz2.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example face
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $side;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
'side' => 'Side',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
if (null !== $this->side) {
|
||||||
|
$res['Side'] = $this->side;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDriverLicenseRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['Side'])) {
|
||||||
|
$model->side = $map['Side'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeDriverLicenseResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeDriverLicenseResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDriverLicenseResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeDriverLicenseResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeDriverLicenseResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 374D8C7E-9ECC-4750-A87F-50571702F175
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDriverLicenseResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data.php
vendored
Normal file
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data.php
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data\backResult;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data\faceResult;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var backResult
|
||||||
|
*/
|
||||||
|
public $backResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var faceResult
|
||||||
|
*/
|
||||||
|
public $faceResult;
|
||||||
|
protected $_name = [
|
||||||
|
'backResult' => 'BackResult',
|
||||||
|
'faceResult' => 'FaceResult',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->backResult) {
|
||||||
|
$res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->faceResult) {
|
||||||
|
$res['FaceResult'] = null !== $this->faceResult ? $this->faceResult->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['BackResult'])) {
|
||||||
|
$model->backResult = backResult::fromMap($map['BackResult']);
|
||||||
|
}
|
||||||
|
if (isset($map['FaceResult'])) {
|
||||||
|
$model->faceResult = faceResult::fromMap($map['FaceResult']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,87 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class backResult extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 130601473955
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $archiveNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 210288898898898888
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $cardNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $record;
|
||||||
|
protected $_name = [
|
||||||
|
'archiveNumber' => 'ArchiveNumber',
|
||||||
|
'cardNumber' => 'CardNumber',
|
||||||
|
'name' => 'Name',
|
||||||
|
'record' => 'Record',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->archiveNumber) {
|
||||||
|
$res['ArchiveNumber'] = $this->archiveNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->cardNumber) {
|
||||||
|
$res['CardNumber'] = $this->cardNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->name) {
|
||||||
|
$res['Name'] = $this->name;
|
||||||
|
}
|
||||||
|
if (null !== $this->record) {
|
||||||
|
$res['Record'] = $this->record;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return backResult
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ArchiveNumber'])) {
|
||||||
|
$model->archiveNumber = $map['ArchiveNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['CardNumber'])) {
|
||||||
|
$model->cardNumber = $map['CardNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['Name'])) {
|
||||||
|
$model->name = $map['Name'];
|
||||||
|
}
|
||||||
|
if (isset($map['Record'])) {
|
||||||
|
$model->record = $map['Record'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
153
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/faceResult.php
vendored
Normal file
153
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/faceResult.php
vendored
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class faceResult extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $address;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 20190201
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $endDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $gender;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 20130208
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $issueDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $issueUnit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 210288898898898888
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $licenseNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 20130208
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $startDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example C1
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $vehicleType;
|
||||||
|
protected $_name = [
|
||||||
|
'address' => 'Address',
|
||||||
|
'endDate' => 'EndDate',
|
||||||
|
'gender' => 'Gender',
|
||||||
|
'issueDate' => 'IssueDate',
|
||||||
|
'issueUnit' => 'IssueUnit',
|
||||||
|
'licenseNumber' => 'LicenseNumber',
|
||||||
|
'name' => 'Name',
|
||||||
|
'startDate' => 'StartDate',
|
||||||
|
'vehicleType' => 'VehicleType',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->address) {
|
||||||
|
$res['Address'] = $this->address;
|
||||||
|
}
|
||||||
|
if (null !== $this->endDate) {
|
||||||
|
$res['EndDate'] = $this->endDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->gender) {
|
||||||
|
$res['Gender'] = $this->gender;
|
||||||
|
}
|
||||||
|
if (null !== $this->issueDate) {
|
||||||
|
$res['IssueDate'] = $this->issueDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->issueUnit) {
|
||||||
|
$res['IssueUnit'] = $this->issueUnit;
|
||||||
|
}
|
||||||
|
if (null !== $this->licenseNumber) {
|
||||||
|
$res['LicenseNumber'] = $this->licenseNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->name) {
|
||||||
|
$res['Name'] = $this->name;
|
||||||
|
}
|
||||||
|
if (null !== $this->startDate) {
|
||||||
|
$res['StartDate'] = $this->startDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->vehicleType) {
|
||||||
|
$res['VehicleType'] = $this->vehicleType;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return faceResult
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Address'])) {
|
||||||
|
$model->address = $map['Address'];
|
||||||
|
}
|
||||||
|
if (isset($map['EndDate'])) {
|
||||||
|
$model->endDate = $map['EndDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['Gender'])) {
|
||||||
|
$model->gender = $map['Gender'];
|
||||||
|
}
|
||||||
|
if (isset($map['IssueDate'])) {
|
||||||
|
$model->issueDate = $map['IssueDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['IssueUnit'])) {
|
||||||
|
$model->issueUnit = $map['IssueUnit'];
|
||||||
|
}
|
||||||
|
if (isset($map['LicenseNumber'])) {
|
||||||
|
$model->licenseNumber = $map['LicenseNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['Name'])) {
|
||||||
|
$model->name = $map['Name'];
|
||||||
|
}
|
||||||
|
if (isset($map['StartDate'])) {
|
||||||
|
$model->startDate = $map['StartDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['VehicleType'])) {
|
||||||
|
$model->vehicleType = $map['VehicleType'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseAdvanceRequest.php
vendored
Normal file
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeDrivingLicenseAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDrivingLicense/xsz2.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example face
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $side;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
'side' => 'Side',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
if (null !== $this->side) {
|
||||||
|
$res['Side'] = $this->side;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDrivingLicenseAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['Side'])) {
|
||||||
|
$model->side = $map['Side'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseRequest.php
vendored
Normal file
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseRequest.php
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeDrivingLicenseRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDrivingLicense/xsz2.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example face
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $side;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
'side' => 'Side',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
if (null !== $this->side) {
|
||||||
|
$res['Side'] = $this->side;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDrivingLicenseRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['Side'])) {
|
||||||
|
$model->side = $map['Side'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeDrivingLicenseResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeDrivingLicenseResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDrivingLicenseResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeDrivingLicenseResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeDrivingLicenseResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 1DD989C1-4E08-4E04-9D5D-314901E91226
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeDrivingLicenseResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data.php
vendored
Normal file
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data.php
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data\backResult;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data\faceResult;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var backResult
|
||||||
|
*/
|
||||||
|
public $backResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var faceResult
|
||||||
|
*/
|
||||||
|
public $faceResult;
|
||||||
|
protected $_name = [
|
||||||
|
'backResult' => 'BackResult',
|
||||||
|
'faceResult' => 'FaceResult',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->backResult) {
|
||||||
|
$res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->faceResult) {
|
||||||
|
$res['FaceResult'] = null !== $this->faceResult ? $this->faceResult->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['BackResult'])) {
|
||||||
|
$model->backResult = backResult::fromMap($map['BackResult']);
|
||||||
|
}
|
||||||
|
if (isset($map['FaceResult'])) {
|
||||||
|
$model->faceResult = faceResult::fromMap($map['FaceResult']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
169
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/backResult.php
vendored
Normal file
169
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/backResult.php
vendored
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class backResult extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 300
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $approvedLoad;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 5
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $approvedPassengerCapacity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example -
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $energyType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $fileNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 2205
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $grossMass;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $inspectionRecord;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 4945x1845x1480
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $overallDimension;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $plateNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 100
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $tractionMass;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 2000
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $unladenMass;
|
||||||
|
protected $_name = [
|
||||||
|
'approvedLoad' => 'ApprovedLoad',
|
||||||
|
'approvedPassengerCapacity' => 'ApprovedPassengerCapacity',
|
||||||
|
'energyType' => 'EnergyType',
|
||||||
|
'fileNumber' => 'FileNumber',
|
||||||
|
'grossMass' => 'GrossMass',
|
||||||
|
'inspectionRecord' => 'InspectionRecord',
|
||||||
|
'overallDimension' => 'OverallDimension',
|
||||||
|
'plateNumber' => 'PlateNumber',
|
||||||
|
'tractionMass' => 'TractionMass',
|
||||||
|
'unladenMass' => 'UnladenMass',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->approvedLoad) {
|
||||||
|
$res['ApprovedLoad'] = $this->approvedLoad;
|
||||||
|
}
|
||||||
|
if (null !== $this->approvedPassengerCapacity) {
|
||||||
|
$res['ApprovedPassengerCapacity'] = $this->approvedPassengerCapacity;
|
||||||
|
}
|
||||||
|
if (null !== $this->energyType) {
|
||||||
|
$res['EnergyType'] = $this->energyType;
|
||||||
|
}
|
||||||
|
if (null !== $this->fileNumber) {
|
||||||
|
$res['FileNumber'] = $this->fileNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->grossMass) {
|
||||||
|
$res['GrossMass'] = $this->grossMass;
|
||||||
|
}
|
||||||
|
if (null !== $this->inspectionRecord) {
|
||||||
|
$res['InspectionRecord'] = $this->inspectionRecord;
|
||||||
|
}
|
||||||
|
if (null !== $this->overallDimension) {
|
||||||
|
$res['OverallDimension'] = $this->overallDimension;
|
||||||
|
}
|
||||||
|
if (null !== $this->plateNumber) {
|
||||||
|
$res['PlateNumber'] = $this->plateNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->tractionMass) {
|
||||||
|
$res['TractionMass'] = $this->tractionMass;
|
||||||
|
}
|
||||||
|
if (null !== $this->unladenMass) {
|
||||||
|
$res['UnladenMass'] = $this->unladenMass;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return backResult
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ApprovedLoad'])) {
|
||||||
|
$model->approvedLoad = $map['ApprovedLoad'];
|
||||||
|
}
|
||||||
|
if (isset($map['ApprovedPassengerCapacity'])) {
|
||||||
|
$model->approvedPassengerCapacity = $map['ApprovedPassengerCapacity'];
|
||||||
|
}
|
||||||
|
if (isset($map['EnergyType'])) {
|
||||||
|
$model->energyType = $map['EnergyType'];
|
||||||
|
}
|
||||||
|
if (isset($map['FileNumber'])) {
|
||||||
|
$model->fileNumber = $map['FileNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['GrossMass'])) {
|
||||||
|
$model->grossMass = $map['GrossMass'];
|
||||||
|
}
|
||||||
|
if (isset($map['InspectionRecord'])) {
|
||||||
|
$model->inspectionRecord = $map['InspectionRecord'];
|
||||||
|
}
|
||||||
|
if (isset($map['OverallDimension'])) {
|
||||||
|
$model->overallDimension = $map['OverallDimension'];
|
||||||
|
}
|
||||||
|
if (isset($map['PlateNumber'])) {
|
||||||
|
$model->plateNumber = $map['PlateNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['TractionMass'])) {
|
||||||
|
$model->tractionMass = $map['TractionMass'];
|
||||||
|
}
|
||||||
|
if (isset($map['UnladenMass'])) {
|
||||||
|
$model->unladenMass = $map['UnladenMass'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
163
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/faceResult.php
vendored
Normal file
163
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/faceResult.php
vendored
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class faceResult extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $address;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 111111
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $engineNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 20180313
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $issueDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $model;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $owner;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $plateNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 20180312
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $registerDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $useCharacter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $vehicleType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example SSVUDDTT2J2022555
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $vin;
|
||||||
|
protected $_name = [
|
||||||
|
'address' => 'Address',
|
||||||
|
'engineNumber' => 'EngineNumber',
|
||||||
|
'issueDate' => 'IssueDate',
|
||||||
|
'model' => 'Model',
|
||||||
|
'owner' => 'Owner',
|
||||||
|
'plateNumber' => 'PlateNumber',
|
||||||
|
'registerDate' => 'RegisterDate',
|
||||||
|
'useCharacter' => 'UseCharacter',
|
||||||
|
'vehicleType' => 'VehicleType',
|
||||||
|
'vin' => 'Vin',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->address) {
|
||||||
|
$res['Address'] = $this->address;
|
||||||
|
}
|
||||||
|
if (null !== $this->engineNumber) {
|
||||||
|
$res['EngineNumber'] = $this->engineNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->issueDate) {
|
||||||
|
$res['IssueDate'] = $this->issueDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->model) {
|
||||||
|
$res['Model'] = $this->model;
|
||||||
|
}
|
||||||
|
if (null !== $this->owner) {
|
||||||
|
$res['Owner'] = $this->owner;
|
||||||
|
}
|
||||||
|
if (null !== $this->plateNumber) {
|
||||||
|
$res['PlateNumber'] = $this->plateNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->registerDate) {
|
||||||
|
$res['RegisterDate'] = $this->registerDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->useCharacter) {
|
||||||
|
$res['UseCharacter'] = $this->useCharacter;
|
||||||
|
}
|
||||||
|
if (null !== $this->vehicleType) {
|
||||||
|
$res['VehicleType'] = $this->vehicleType;
|
||||||
|
}
|
||||||
|
if (null !== $this->vin) {
|
||||||
|
$res['Vin'] = $this->vin;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return faceResult
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Address'])) {
|
||||||
|
$model->address = $map['Address'];
|
||||||
|
}
|
||||||
|
if (isset($map['EngineNumber'])) {
|
||||||
|
$model->engineNumber = $map['EngineNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['IssueDate'])) {
|
||||||
|
$model->issueDate = $map['IssueDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['Model'])) {
|
||||||
|
$model->model = $map['Model'];
|
||||||
|
}
|
||||||
|
if (isset($map['Owner'])) {
|
||||||
|
$model->owner = $map['Owner'];
|
||||||
|
}
|
||||||
|
if (isset($map['PlateNumber'])) {
|
||||||
|
$model->plateNumber = $map['PlateNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['RegisterDate'])) {
|
||||||
|
$model->registerDate = $map['RegisterDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['UseCharacter'])) {
|
||||||
|
$model->useCharacter = $map['UseCharacter'];
|
||||||
|
}
|
||||||
|
if (isset($map['VehicleType'])) {
|
||||||
|
$model->vehicleType = $map['VehicleType'];
|
||||||
|
}
|
||||||
|
if (isset($map['Vin'])) {
|
||||||
|
$model->vin = $map['Vin'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardAdvanceRequest.php
vendored
Normal file
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeIdentityCardAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeIdentityCard/sfz1.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example face
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $side;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
'side' => 'Side',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
if (null !== $this->side) {
|
||||||
|
$res['Side'] = $this->side;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeIdentityCardAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['Side'])) {
|
||||||
|
$model->side = $map['Side'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardRequest.php
vendored
Normal file
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardRequest.php
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeIdentityCardRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeIdentityCard/sfz1.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example face
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $side;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
'side' => 'Side',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
if (null !== $this->side) {
|
||||||
|
$res['Side'] = $this->side;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeIdentityCardRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['Side'])) {
|
||||||
|
$model->side = $map['Side'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeIdentityCardResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeIdentityCardResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeIdentityCardResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeIdentityCardResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeIdentityCardResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example D3F5BA69-79C4-46A4-B02B-58C4EEBC4C33
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeIdentityCardResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data.php
vendored
Normal file
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data.php
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\backResult;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var backResult
|
||||||
|
*/
|
||||||
|
public $backResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var frontResult
|
||||||
|
*/
|
||||||
|
public $frontResult;
|
||||||
|
protected $_name = [
|
||||||
|
'backResult' => 'BackResult',
|
||||||
|
'frontResult' => 'FrontResult',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->backResult) {
|
||||||
|
$res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->frontResult) {
|
||||||
|
$res['FrontResult'] = null !== $this->frontResult ? $this->frontResult->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['BackResult'])) {
|
||||||
|
$model->backResult = backResult::fromMap($map['BackResult']);
|
||||||
|
}
|
||||||
|
if (isset($map['FrontResult'])) {
|
||||||
|
$model->frontResult = frontResult::fromMap($map['FrontResult']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,75 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class backResult extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 19800101
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $endDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $issue;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 19970101
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $startDate;
|
||||||
|
protected $_name = [
|
||||||
|
'endDate' => 'EndDate',
|
||||||
|
'issue' => 'Issue',
|
||||||
|
'startDate' => 'StartDate',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->endDate) {
|
||||||
|
$res['EndDate'] = $this->endDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->issue) {
|
||||||
|
$res['Issue'] = $this->issue;
|
||||||
|
}
|
||||||
|
if (null !== $this->startDate) {
|
||||||
|
$res['StartDate'] = $this->startDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return backResult
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['EndDate'])) {
|
||||||
|
$model->endDate = $map['EndDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['Issue'])) {
|
||||||
|
$model->issue = $map['Issue'];
|
||||||
|
}
|
||||||
|
if (isset($map['StartDate'])) {
|
||||||
|
$model->startDate = $map['StartDate'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
174
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult.php
vendored
Normal file
174
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult.php
vendored
Normal file
@ -0,0 +1,174 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\cardAreas;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectVertices;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class frontResult extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $address;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 19960111
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $birthDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var cardAreas[]
|
||||||
|
*/
|
||||||
|
public $cardAreas;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var faceRectVertices[]
|
||||||
|
*/
|
||||||
|
public $faceRectVertices;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var faceRectangle
|
||||||
|
*/
|
||||||
|
public $faceRectangle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $gender;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 310228199601115411
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $IDNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $nationality;
|
||||||
|
protected $_name = [
|
||||||
|
'address' => 'Address',
|
||||||
|
'birthDate' => 'BirthDate',
|
||||||
|
'cardAreas' => 'CardAreas',
|
||||||
|
'faceRectVertices' => 'FaceRectVertices',
|
||||||
|
'faceRectangle' => 'FaceRectangle',
|
||||||
|
'gender' => 'Gender',
|
||||||
|
'IDNumber' => 'IDNumber',
|
||||||
|
'name' => 'Name',
|
||||||
|
'nationality' => 'Nationality',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->address) {
|
||||||
|
$res['Address'] = $this->address;
|
||||||
|
}
|
||||||
|
if (null !== $this->birthDate) {
|
||||||
|
$res['BirthDate'] = $this->birthDate;
|
||||||
|
}
|
||||||
|
if (null !== $this->cardAreas) {
|
||||||
|
$res['CardAreas'] = [];
|
||||||
|
if (null !== $this->cardAreas && \is_array($this->cardAreas)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->cardAreas as $item) {
|
||||||
|
$res['CardAreas'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (null !== $this->faceRectVertices) {
|
||||||
|
$res['FaceRectVertices'] = [];
|
||||||
|
if (null !== $this->faceRectVertices && \is_array($this->faceRectVertices)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->faceRectVertices as $item) {
|
||||||
|
$res['FaceRectVertices'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (null !== $this->faceRectangle) {
|
||||||
|
$res['FaceRectangle'] = null !== $this->faceRectangle ? $this->faceRectangle->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->gender) {
|
||||||
|
$res['Gender'] = $this->gender;
|
||||||
|
}
|
||||||
|
if (null !== $this->IDNumber) {
|
||||||
|
$res['IDNumber'] = $this->IDNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->name) {
|
||||||
|
$res['Name'] = $this->name;
|
||||||
|
}
|
||||||
|
if (null !== $this->nationality) {
|
||||||
|
$res['Nationality'] = $this->nationality;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return frontResult
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Address'])) {
|
||||||
|
$model->address = $map['Address'];
|
||||||
|
}
|
||||||
|
if (isset($map['BirthDate'])) {
|
||||||
|
$model->birthDate = $map['BirthDate'];
|
||||||
|
}
|
||||||
|
if (isset($map['CardAreas'])) {
|
||||||
|
if (!empty($map['CardAreas'])) {
|
||||||
|
$model->cardAreas = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['CardAreas'] as $item) {
|
||||||
|
$model->cardAreas[$n++] = null !== $item ? cardAreas::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['FaceRectVertices'])) {
|
||||||
|
if (!empty($map['FaceRectVertices'])) {
|
||||||
|
$model->faceRectVertices = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['FaceRectVertices'] as $item) {
|
||||||
|
$model->faceRectVertices[$n++] = null !== $item ? faceRectVertices::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['FaceRectangle'])) {
|
||||||
|
$model->faceRectangle = faceRectangle::fromMap($map['FaceRectangle']);
|
||||||
|
}
|
||||||
|
if (isset($map['Gender'])) {
|
||||||
|
$model->gender = $map['Gender'];
|
||||||
|
}
|
||||||
|
if (isset($map['IDNumber'])) {
|
||||||
|
$model->IDNumber = $map['IDNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['Name'])) {
|
||||||
|
$model->name = $map['Name'];
|
||||||
|
}
|
||||||
|
if (isset($map['Nationality'])) {
|
||||||
|
$model->nationality = $map['Nationality'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class cardAreas extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 40
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $x;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 81
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $y;
|
||||||
|
protected $_name = [
|
||||||
|
'x' => 'X',
|
||||||
|
'y' => 'Y',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->x) {
|
||||||
|
$res['X'] = $this->x;
|
||||||
|
}
|
||||||
|
if (null !== $this->y) {
|
||||||
|
$res['Y'] = $this->y;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return cardAreas
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['X'])) {
|
||||||
|
$model->x = $map['X'];
|
||||||
|
}
|
||||||
|
if (isset($map['Y'])) {
|
||||||
|
$model->y = $map['Y'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class faceRectVertices extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 429.46124267578125
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $x;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 164.23321533203125
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $y;
|
||||||
|
protected $_name = [
|
||||||
|
'x' => 'X',
|
||||||
|
'y' => 'Y',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->x) {
|
||||||
|
$res['X'] = $this->x;
|
||||||
|
}
|
||||||
|
if (null !== $this->y) {
|
||||||
|
$res['Y'] = $this->y;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return faceRectVertices
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['X'])) {
|
||||||
|
$model->x = $map['X'];
|
||||||
|
}
|
||||||
|
if (isset($map['Y'])) {
|
||||||
|
$model->y = $map['Y'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,75 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle\center;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle\size;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class faceRectangle extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example -87.710586547851562
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $angle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var center
|
||||||
|
*/
|
||||||
|
public $center;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var size
|
||||||
|
*/
|
||||||
|
public $size;
|
||||||
|
protected $_name = [
|
||||||
|
'angle' => 'Angle',
|
||||||
|
'center' => 'Center',
|
||||||
|
'size' => 'Size',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->angle) {
|
||||||
|
$res['Angle'] = $this->angle;
|
||||||
|
}
|
||||||
|
if (null !== $this->center) {
|
||||||
|
$res['Center'] = null !== $this->center ? $this->center->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->size) {
|
||||||
|
$res['Size'] = null !== $this->size ? $this->size->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return faceRectangle
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Angle'])) {
|
||||||
|
$model->angle = $map['Angle'];
|
||||||
|
}
|
||||||
|
if (isset($map['Center'])) {
|
||||||
|
$model->center = center::fromMap($map['Center']);
|
||||||
|
}
|
||||||
|
if (isset($map['Size'])) {
|
||||||
|
$model->size = size::fromMap($map['Size']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class center extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 475.59390258789062
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $x;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 225.20643615722656
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $y;
|
||||||
|
protected $_name = [
|
||||||
|
'x' => 'X',
|
||||||
|
'y' => 'Y',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->x) {
|
||||||
|
$res['X'] = $this->x;
|
||||||
|
}
|
||||||
|
if (null !== $this->y) {
|
||||||
|
$res['Y'] = $this->y;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return center
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['X'])) {
|
||||||
|
$model->x = $map['X'];
|
||||||
|
}
|
||||||
|
if (isset($map['Y'])) {
|
||||||
|
$model->y = $map['Y'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class size extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 97.063156127929688
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 118.16333770751953
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
protected $_name = [
|
||||||
|
'height' => 'Height',
|
||||||
|
'width' => 'Width',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return size
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeLicensePlateAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeLicensePlate/cpsb1.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeLicensePlateAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeLicensePlateRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeLicensePlate/cpsb1.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeLicensePlateRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeLicensePlateResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeLicensePlateResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeLicensePlateResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeLicensePlateResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeLicensePlateResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 3F10DAC3-CF4A-487C-BF33-3B8EB9AA12F2
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeLicensePlateResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data.php
vendored
Normal file
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data.php
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var plates[]
|
||||||
|
*/
|
||||||
|
public $plates;
|
||||||
|
protected $_name = [
|
||||||
|
'plates' => 'Plates',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->plates) {
|
||||||
|
$res['Plates'] = [];
|
||||||
|
if (null !== $this->plates && \is_array($this->plates)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->plates as $item) {
|
||||||
|
$res['Plates'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Plates'])) {
|
||||||
|
if (!empty($map['Plates'])) {
|
||||||
|
$model->plates = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Plates'] as $item) {
|
||||||
|
$model->plates[$n++] = null !== $item ? plates::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
125
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates.php
vendored
Normal file
125
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates.php
vendored
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates\positions;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates\roi;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class plates extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 0.99745339155197144
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $confidence;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $plateNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $plateType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 1
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $plateTypeConfidence;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var positions[]
|
||||||
|
*/
|
||||||
|
public $positions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var roi
|
||||||
|
*/
|
||||||
|
public $roi;
|
||||||
|
protected $_name = [
|
||||||
|
'confidence' => 'Confidence',
|
||||||
|
'plateNumber' => 'PlateNumber',
|
||||||
|
'plateType' => 'PlateType',
|
||||||
|
'plateTypeConfidence' => 'PlateTypeConfidence',
|
||||||
|
'positions' => 'Positions',
|
||||||
|
'roi' => 'Roi',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->confidence) {
|
||||||
|
$res['Confidence'] = $this->confidence;
|
||||||
|
}
|
||||||
|
if (null !== $this->plateNumber) {
|
||||||
|
$res['PlateNumber'] = $this->plateNumber;
|
||||||
|
}
|
||||||
|
if (null !== $this->plateType) {
|
||||||
|
$res['PlateType'] = $this->plateType;
|
||||||
|
}
|
||||||
|
if (null !== $this->plateTypeConfidence) {
|
||||||
|
$res['PlateTypeConfidence'] = $this->plateTypeConfidence;
|
||||||
|
}
|
||||||
|
if (null !== $this->positions) {
|
||||||
|
$res['Positions'] = [];
|
||||||
|
if (null !== $this->positions && \is_array($this->positions)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->positions as $item) {
|
||||||
|
$res['Positions'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (null !== $this->roi) {
|
||||||
|
$res['Roi'] = null !== $this->roi ? $this->roi->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return plates
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Confidence'])) {
|
||||||
|
$model->confidence = $map['Confidence'];
|
||||||
|
}
|
||||||
|
if (isset($map['PlateNumber'])) {
|
||||||
|
$model->plateNumber = $map['PlateNumber'];
|
||||||
|
}
|
||||||
|
if (isset($map['PlateType'])) {
|
||||||
|
$model->plateType = $map['PlateType'];
|
||||||
|
}
|
||||||
|
if (isset($map['PlateTypeConfidence'])) {
|
||||||
|
$model->plateTypeConfidence = $map['PlateTypeConfidence'];
|
||||||
|
}
|
||||||
|
if (isset($map['Positions'])) {
|
||||||
|
if (!empty($map['Positions'])) {
|
||||||
|
$model->positions = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Positions'] as $item) {
|
||||||
|
$model->positions[$n++] = null !== $item ? positions::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Roi'])) {
|
||||||
|
$model->roi = roi::fromMap($map['Roi']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class positions extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 466
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $x;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 293
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $y;
|
||||||
|
protected $_name = [
|
||||||
|
'x' => 'X',
|
||||||
|
'y' => 'Y',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->x) {
|
||||||
|
$res['X'] = $this->x;
|
||||||
|
}
|
||||||
|
if (null !== $this->y) {
|
||||||
|
$res['Y'] = $this->y;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return positions
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['X'])) {
|
||||||
|
$model->x = $map['X'];
|
||||||
|
}
|
||||||
|
if (isset($map['Y'])) {
|
||||||
|
$model->y = $map['Y'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,91 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class roi extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 53
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $h;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 141
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $w;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 294
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $x;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 256
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $y;
|
||||||
|
protected $_name = [
|
||||||
|
'h' => 'H',
|
||||||
|
'w' => 'W',
|
||||||
|
'x' => 'X',
|
||||||
|
'y' => 'Y',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->h) {
|
||||||
|
$res['H'] = $this->h;
|
||||||
|
}
|
||||||
|
if (null !== $this->w) {
|
||||||
|
$res['W'] = $this->w;
|
||||||
|
}
|
||||||
|
if (null !== $this->x) {
|
||||||
|
$res['X'] = $this->x;
|
||||||
|
}
|
||||||
|
if (null !== $this->y) {
|
||||||
|
$res['Y'] = $this->y;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return roi
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['H'])) {
|
||||||
|
$model->h = $map['H'];
|
||||||
|
}
|
||||||
|
if (isset($map['W'])) {
|
||||||
|
$model->w = $map['W'];
|
||||||
|
}
|
||||||
|
if (isset($map['X'])) {
|
||||||
|
$model->x = $map['X'];
|
||||||
|
}
|
||||||
|
if (isset($map['Y'])) {
|
||||||
|
$model->y = $map['Y'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizePdfAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example https://viapi-test.oss-cn-shanghai.aliyuncs.com/ocr/xxxx.pdf
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $fileURLObject;
|
||||||
|
protected $_name = [
|
||||||
|
'fileURLObject' => 'FileURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->fileURLObject) {
|
||||||
|
$res['FileURL'] = $this->fileURLObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizePdfAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['FileURL'])) {
|
||||||
|
$model->fileURLObject = $map['FileURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizePdfRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example https://viapi-test.oss-cn-shanghai.aliyuncs.com/ocr/xxxx.pdf
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $fileURL;
|
||||||
|
protected $_name = [
|
||||||
|
'fileURL' => 'FileURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->fileURL) {
|
||||||
|
$res['FileURL'] = $this->fileURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizePdfRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['FileURL'])) {
|
||||||
|
$model->fileURL = $map['FileURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizePdfResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizePdfResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizePdfResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizePdfResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizePdfResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example CD9A9659-ABEE-4A7D-837F-9FDF40879A97
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizePdfResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
144
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data.php
vendored
Normal file
144
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data.php
vendored
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data\wordsInfo;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 0
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $angle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 788
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 610
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $orgHeight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 394
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $orgWidth;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 1
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $pageIndex;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 1220
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var wordsInfo[]
|
||||||
|
*/
|
||||||
|
public $wordsInfo;
|
||||||
|
protected $_name = [
|
||||||
|
'angle' => 'Angle',
|
||||||
|
'height' => 'Height',
|
||||||
|
'orgHeight' => 'OrgHeight',
|
||||||
|
'orgWidth' => 'OrgWidth',
|
||||||
|
'pageIndex' => 'PageIndex',
|
||||||
|
'width' => 'Width',
|
||||||
|
'wordsInfo' => 'WordsInfo',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->angle) {
|
||||||
|
$res['Angle'] = $this->angle;
|
||||||
|
}
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->orgHeight) {
|
||||||
|
$res['OrgHeight'] = $this->orgHeight;
|
||||||
|
}
|
||||||
|
if (null !== $this->orgWidth) {
|
||||||
|
$res['OrgWidth'] = $this->orgWidth;
|
||||||
|
}
|
||||||
|
if (null !== $this->pageIndex) {
|
||||||
|
$res['PageIndex'] = $this->pageIndex;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
if (null !== $this->wordsInfo) {
|
||||||
|
$res['WordsInfo'] = [];
|
||||||
|
if (null !== $this->wordsInfo && \is_array($this->wordsInfo)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->wordsInfo as $item) {
|
||||||
|
$res['WordsInfo'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Angle'])) {
|
||||||
|
$model->angle = $map['Angle'];
|
||||||
|
}
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['OrgHeight'])) {
|
||||||
|
$model->orgHeight = $map['OrgHeight'];
|
||||||
|
}
|
||||||
|
if (isset($map['OrgWidth'])) {
|
||||||
|
$model->orgWidth = $map['OrgWidth'];
|
||||||
|
}
|
||||||
|
if (isset($map['PageIndex'])) {
|
||||||
|
$model->pageIndex = $map['PageIndex'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
if (isset($map['WordsInfo'])) {
|
||||||
|
if (!empty($map['WordsInfo'])) {
|
||||||
|
$model->wordsInfo = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['WordsInfo'] as $item) {
|
||||||
|
$model->wordsInfo[$n++] = null !== $item ? wordsInfo::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
142
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo.php
vendored
Normal file
142
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo.php
vendored
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data\wordsInfo\positions;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class wordsInfo extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 0
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $angle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 16
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var positions[]
|
||||||
|
*/
|
||||||
|
public $positions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 205
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $word;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 863
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $x;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 46
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $y;
|
||||||
|
protected $_name = [
|
||||||
|
'angle' => 'Angle',
|
||||||
|
'height' => 'Height',
|
||||||
|
'positions' => 'Positions',
|
||||||
|
'width' => 'Width',
|
||||||
|
'word' => 'Word',
|
||||||
|
'x' => 'X',
|
||||||
|
'y' => 'Y',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->angle) {
|
||||||
|
$res['Angle'] = $this->angle;
|
||||||
|
}
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->positions) {
|
||||||
|
$res['Positions'] = [];
|
||||||
|
if (null !== $this->positions && \is_array($this->positions)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->positions as $item) {
|
||||||
|
$res['Positions'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
if (null !== $this->word) {
|
||||||
|
$res['Word'] = $this->word;
|
||||||
|
}
|
||||||
|
if (null !== $this->x) {
|
||||||
|
$res['X'] = $this->x;
|
||||||
|
}
|
||||||
|
if (null !== $this->y) {
|
||||||
|
$res['Y'] = $this->y;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return wordsInfo
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Angle'])) {
|
||||||
|
$model->angle = $map['Angle'];
|
||||||
|
}
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['Positions'])) {
|
||||||
|
if (!empty($map['Positions'])) {
|
||||||
|
$model->positions = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Positions'] as $item) {
|
||||||
|
$model->positions[$n++] = null !== $item ? positions::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
if (isset($map['Word'])) {
|
||||||
|
$model->word = $map['Word'];
|
||||||
|
}
|
||||||
|
if (isset($map['X'])) {
|
||||||
|
$model->x = $map['X'];
|
||||||
|
}
|
||||||
|
if (isset($map['Y'])) {
|
||||||
|
$model->y = $map['Y'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data\wordsInfo;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class positions extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 863
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $x;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 43
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $y;
|
||||||
|
protected $_name = [
|
||||||
|
'x' => 'X',
|
||||||
|
'y' => 'Y',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->x) {
|
||||||
|
$res['X'] = $this->x;
|
||||||
|
}
|
||||||
|
if (null !== $this->y) {
|
||||||
|
$res['Y'] = $this->y;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return positions
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['X'])) {
|
||||||
|
$model->x = $map['X'];
|
||||||
|
}
|
||||||
|
if (isset($map['Y'])) {
|
||||||
|
$model->y = $map['Y'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeAdvanceRequest\tasks;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeQrCodeAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @description 1
|
||||||
|
*
|
||||||
|
* @var tasks[]
|
||||||
|
*/
|
||||||
|
public $tasks;
|
||||||
|
protected $_name = [
|
||||||
|
'tasks' => 'Tasks',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->tasks) {
|
||||||
|
$res['Tasks'] = [];
|
||||||
|
if (null !== $this->tasks && \is_array($this->tasks)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->tasks as $item) {
|
||||||
|
$res['Tasks'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQrCodeAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Tasks'])) {
|
||||||
|
if (!empty($map['Tasks'])) {
|
||||||
|
$model->tasks = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Tasks'] as $item) {
|
||||||
|
$model->tasks[$n++] = null !== $item ? tasks::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest/tasks.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest/tasks.php
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeAdvanceRequest;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class tasks extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return tasks
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeRequest\tasks;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeQrCodeRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @description 1
|
||||||
|
*
|
||||||
|
* @var tasks[]
|
||||||
|
*/
|
||||||
|
public $tasks;
|
||||||
|
protected $_name = [
|
||||||
|
'tasks' => 'Tasks',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->tasks) {
|
||||||
|
$res['Tasks'] = [];
|
||||||
|
if (null !== $this->tasks && \is_array($this->tasks)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->tasks as $item) {
|
||||||
|
$res['Tasks'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQrCodeRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Tasks'])) {
|
||||||
|
if (!empty($map['Tasks'])) {
|
||||||
|
$model->tasks = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Tasks'] as $item) {
|
||||||
|
$model->tasks[$n++] = null !== $item ? tasks::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest/tasks.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest/tasks.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeRequest;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class tasks extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return tasks
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeQrCodeResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeQrCodeResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQrCodeResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeQrCodeResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeQrCodeResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example A53DC437-F883-4968-86D5-EB21FB044692
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQrCodeResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data.php
vendored
Normal file
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data.php
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody\data\elements;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var elements[]
|
||||||
|
*/
|
||||||
|
public $elements;
|
||||||
|
protected $_name = [
|
||||||
|
'elements' => 'Elements',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->elements) {
|
||||||
|
$res['Elements'] = [];
|
||||||
|
if (null !== $this->elements && \is_array($this->elements)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->elements as $item) {
|
||||||
|
$res['Elements'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Elements'])) {
|
||||||
|
if (!empty($map['Elements'])) {
|
||||||
|
$model->elements = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Elements'] as $item) {
|
||||||
|
$model->elements[$n++] = null !== $item ? elements::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
88
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements.php
vendored
Normal file
88
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements.php
vendored
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody\data\elements\results;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class elements extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var results[]
|
||||||
|
*/
|
||||||
|
public $results;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example img5iGtwVIxQzc4Nqy$L84yHd-1v****
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $taskId;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
'results' => 'Results',
|
||||||
|
'taskId' => 'TaskId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
if (null !== $this->results) {
|
||||||
|
$res['Results'] = [];
|
||||||
|
if (null !== $this->results && \is_array($this->results)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->results as $item) {
|
||||||
|
$res['Results'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (null !== $this->taskId) {
|
||||||
|
$res['TaskId'] = $this->taskId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return elements
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
if (isset($map['Results'])) {
|
||||||
|
if (!empty($map['Results'])) {
|
||||||
|
$model->results = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['Results'] as $item) {
|
||||||
|
$model->results[$n++] = null !== $item ? results::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['TaskId'])) {
|
||||||
|
$model->taskId = $map['TaskId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,93 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody\data\elements;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class results extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example qrcode
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $label;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description 1
|
||||||
|
*
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $qrCodesData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 99.91
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $rate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example review
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $suggestion;
|
||||||
|
protected $_name = [
|
||||||
|
'label' => 'Label',
|
||||||
|
'qrCodesData' => 'QrCodesData',
|
||||||
|
'rate' => 'Rate',
|
||||||
|
'suggestion' => 'Suggestion',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->label) {
|
||||||
|
$res['Label'] = $this->label;
|
||||||
|
}
|
||||||
|
if (null !== $this->qrCodesData) {
|
||||||
|
$res['QrCodesData'] = $this->qrCodesData;
|
||||||
|
}
|
||||||
|
if (null !== $this->rate) {
|
||||||
|
$res['Rate'] = $this->rate;
|
||||||
|
}
|
||||||
|
if (null !== $this->suggestion) {
|
||||||
|
$res['Suggestion'] = $this->suggestion;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return results
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Label'])) {
|
||||||
|
$model->label = $map['Label'];
|
||||||
|
}
|
||||||
|
if (isset($map['QrCodesData'])) {
|
||||||
|
if (!empty($map['QrCodesData'])) {
|
||||||
|
$model->qrCodesData = $map['QrCodesData'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['Rate'])) {
|
||||||
|
$model->rate = $map['Rate'];
|
||||||
|
}
|
||||||
|
if (isset($map['Suggestion'])) {
|
||||||
|
$model->suggestion = $map['Suggestion'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
use GuzzleHttp\Psr7\Stream;
|
||||||
|
|
||||||
|
class RecognizeQuotaInvoiceAdvanceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQuotaInvoice/RecognizeQuotaInvoice1.jpg
|
||||||
|
*
|
||||||
|
* @var Stream
|
||||||
|
*/
|
||||||
|
public $imageURLObject;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURLObject' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURLObject) {
|
||||||
|
$res['ImageURL'] = $this->imageURLObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQuotaInvoiceAdvanceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURLObject = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeQuotaInvoiceRequest extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQuotaInvoice/RecognizeQuotaInvoice1.jpg
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $imageURL;
|
||||||
|
protected $_name = [
|
||||||
|
'imageURL' => 'ImageURL',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->imageURL) {
|
||||||
|
$res['ImageURL'] = $this->imageURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQuotaInvoiceRequest
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['ImageURL'])) {
|
||||||
|
$model->imageURL = $map['ImageURL'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeQuotaInvoiceResponse extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
public $headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $statusCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var RecognizeQuotaInvoiceResponseBody
|
||||||
|
*/
|
||||||
|
public $body;
|
||||||
|
protected $_name = [
|
||||||
|
'headers' => 'headers',
|
||||||
|
'statusCode' => 'statusCode',
|
||||||
|
'body' => 'body',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
Model::validateRequired('headers', $this->headers, true);
|
||||||
|
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||||
|
Model::validateRequired('body', $this->body, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->headers) {
|
||||||
|
$res['headers'] = $this->headers;
|
||||||
|
}
|
||||||
|
if (null !== $this->statusCode) {
|
||||||
|
$res['statusCode'] = $this->statusCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->body) {
|
||||||
|
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQuotaInvoiceResponse
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['headers'])) {
|
||||||
|
$model->headers = $map['headers'];
|
||||||
|
}
|
||||||
|
if (isset($map['statusCode'])) {
|
||||||
|
$model->statusCode = $map['statusCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['body'])) {
|
||||||
|
$model->body = RecognizeQuotaInvoiceResponseBody::fromMap($map['body']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQuotaInvoiceResponseBody\data;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class RecognizeQuotaInvoiceResponseBody extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var data
|
||||||
|
*/
|
||||||
|
public $data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example BC4C12D0-7FD3-419A-B997-A91212DF6D82
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $requestId;
|
||||||
|
protected $_name = [
|
||||||
|
'data' => 'Data',
|
||||||
|
'requestId' => 'RequestId',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->data) {
|
||||||
|
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->requestId) {
|
||||||
|
$res['RequestId'] = $this->requestId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return RecognizeQuotaInvoiceResponseBody
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Data'])) {
|
||||||
|
$model->data = data::fromMap($map['Data']);
|
||||||
|
}
|
||||||
|
if (isset($map['RequestId'])) {
|
||||||
|
$model->requestId = $map['RequestId'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
143
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data.php
vendored
Normal file
143
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data.php
vendored
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQuotaInvoiceResponseBody;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQuotaInvoiceResponseBody\data\content;
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQuotaInvoiceResponseBody\data\keyValueInfos;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class data extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 1
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $angle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var content
|
||||||
|
*/
|
||||||
|
public $content;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 624
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var keyValueInfos[]
|
||||||
|
*/
|
||||||
|
public $keyValueInfos;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 610
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $orgHeight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 855
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $orgWidth;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 865
|
||||||
|
*
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
public $width;
|
||||||
|
protected $_name = [
|
||||||
|
'angle' => 'Angle',
|
||||||
|
'content' => 'Content',
|
||||||
|
'height' => 'Height',
|
||||||
|
'keyValueInfos' => 'KeyValueInfos',
|
||||||
|
'orgHeight' => 'OrgHeight',
|
||||||
|
'orgWidth' => 'OrgWidth',
|
||||||
|
'width' => 'Width',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->angle) {
|
||||||
|
$res['Angle'] = $this->angle;
|
||||||
|
}
|
||||||
|
if (null !== $this->content) {
|
||||||
|
$res['Content'] = null !== $this->content ? $this->content->toMap() : null;
|
||||||
|
}
|
||||||
|
if (null !== $this->height) {
|
||||||
|
$res['Height'] = $this->height;
|
||||||
|
}
|
||||||
|
if (null !== $this->keyValueInfos) {
|
||||||
|
$res['KeyValueInfos'] = [];
|
||||||
|
if (null !== $this->keyValueInfos && \is_array($this->keyValueInfos)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->keyValueInfos as $item) {
|
||||||
|
$res['KeyValueInfos'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (null !== $this->orgHeight) {
|
||||||
|
$res['OrgHeight'] = $this->orgHeight;
|
||||||
|
}
|
||||||
|
if (null !== $this->orgWidth) {
|
||||||
|
$res['OrgWidth'] = $this->orgWidth;
|
||||||
|
}
|
||||||
|
if (null !== $this->width) {
|
||||||
|
$res['Width'] = $this->width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return data
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Angle'])) {
|
||||||
|
$model->angle = $map['Angle'];
|
||||||
|
}
|
||||||
|
if (isset($map['Content'])) {
|
||||||
|
$model->content = content::fromMap($map['Content']);
|
||||||
|
}
|
||||||
|
if (isset($map['Height'])) {
|
||||||
|
$model->height = $map['Height'];
|
||||||
|
}
|
||||||
|
if (isset($map['KeyValueInfos'])) {
|
||||||
|
if (!empty($map['KeyValueInfos'])) {
|
||||||
|
$model->keyValueInfos = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['KeyValueInfos'] as $item) {
|
||||||
|
$model->keyValueInfos[$n++] = null !== $item ? keyValueInfos::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['OrgHeight'])) {
|
||||||
|
$model->orgHeight = $map['OrgHeight'];
|
||||||
|
}
|
||||||
|
if (isset($map['OrgWidth'])) {
|
||||||
|
$model->orgWidth = $map['OrgWidth'];
|
||||||
|
}
|
||||||
|
if (isset($map['Width'])) {
|
||||||
|
$model->width = $map['Width'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
101
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/content.php
vendored
Normal file
101
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/content.php
vendored
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQuotaInvoiceResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class content extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @example 10
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $invoiceAmount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 144031800103
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $invoiceCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $invoiceDetails;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 40637706
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $invoiceNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $sumAmount;
|
||||||
|
protected $_name = [
|
||||||
|
'invoiceAmount' => 'InvoiceAmount',
|
||||||
|
'invoiceCode' => 'InvoiceCode',
|
||||||
|
'invoiceDetails' => 'InvoiceDetails',
|
||||||
|
'invoiceNo' => 'InvoiceNo',
|
||||||
|
'sumAmount' => 'SumAmount',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->invoiceAmount) {
|
||||||
|
$res['InvoiceAmount'] = $this->invoiceAmount;
|
||||||
|
}
|
||||||
|
if (null !== $this->invoiceCode) {
|
||||||
|
$res['InvoiceCode'] = $this->invoiceCode;
|
||||||
|
}
|
||||||
|
if (null !== $this->invoiceDetails) {
|
||||||
|
$res['InvoiceDetails'] = $this->invoiceDetails;
|
||||||
|
}
|
||||||
|
if (null !== $this->invoiceNo) {
|
||||||
|
$res['InvoiceNo'] = $this->invoiceNo;
|
||||||
|
}
|
||||||
|
if (null !== $this->sumAmount) {
|
||||||
|
$res['SumAmount'] = $this->sumAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return content
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['InvoiceAmount'])) {
|
||||||
|
$model->invoiceAmount = $map['InvoiceAmount'];
|
||||||
|
}
|
||||||
|
if (isset($map['InvoiceCode'])) {
|
||||||
|
$model->invoiceCode = $map['InvoiceCode'];
|
||||||
|
}
|
||||||
|
if (isset($map['InvoiceDetails'])) {
|
||||||
|
$model->invoiceDetails = $map['InvoiceDetails'];
|
||||||
|
}
|
||||||
|
if (isset($map['InvoiceNo'])) {
|
||||||
|
$model->invoiceNo = $map['InvoiceNo'];
|
||||||
|
}
|
||||||
|
if (isset($map['SumAmount'])) {
|
||||||
|
$model->sumAmount = $map['SumAmount'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,98 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// This file is auto-generated, don't edit it. Thanks.
|
||||||
|
|
||||||
|
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQuotaInvoiceResponseBody\data;
|
||||||
|
|
||||||
|
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQuotaInvoiceResponseBody\data\keyValueInfos\valuePositions;
|
||||||
|
use AlibabaCloud\Tea\Model;
|
||||||
|
|
||||||
|
class keyValueInfos extends Model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $key;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var valuePositions[]
|
||||||
|
*/
|
||||||
|
public $valuePositions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @example 100
|
||||||
|
*
|
||||||
|
* @var float
|
||||||
|
*/
|
||||||
|
public $valueScore;
|
||||||
|
protected $_name = [
|
||||||
|
'key' => 'Key',
|
||||||
|
'value' => 'Value',
|
||||||
|
'valuePositions' => 'ValuePositions',
|
||||||
|
'valueScore' => 'ValueScore',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function validate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toMap()
|
||||||
|
{
|
||||||
|
$res = [];
|
||||||
|
if (null !== $this->key) {
|
||||||
|
$res['Key'] = $this->key;
|
||||||
|
}
|
||||||
|
if (null !== $this->value) {
|
||||||
|
$res['Value'] = $this->value;
|
||||||
|
}
|
||||||
|
if (null !== $this->valuePositions) {
|
||||||
|
$res['ValuePositions'] = [];
|
||||||
|
if (null !== $this->valuePositions && \is_array($this->valuePositions)) {
|
||||||
|
$n = 0;
|
||||||
|
foreach ($this->valuePositions as $item) {
|
||||||
|
$res['ValuePositions'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (null !== $this->valueScore) {
|
||||||
|
$res['ValueScore'] = $this->valueScore;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $map
|
||||||
|
*
|
||||||
|
* @return keyValueInfos
|
||||||
|
*/
|
||||||
|
public static function fromMap($map = [])
|
||||||
|
{
|
||||||
|
$model = new self();
|
||||||
|
if (isset($map['Key'])) {
|
||||||
|
$model->key = $map['Key'];
|
||||||
|
}
|
||||||
|
if (isset($map['Value'])) {
|
||||||
|
$model->value = $map['Value'];
|
||||||
|
}
|
||||||
|
if (isset($map['ValuePositions'])) {
|
||||||
|
if (!empty($map['ValuePositions'])) {
|
||||||
|
$model->valuePositions = [];
|
||||||
|
$n = 0;
|
||||||
|
foreach ($map['ValuePositions'] as $item) {
|
||||||
|
$model->valuePositions[$n++] = null !== $item ? valuePositions::fromMap($item) : $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($map['ValueScore'])) {
|
||||||
|
$model->valueScore = $map['ValueScore'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $model;
|
||||||
|
}
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user