diff --git a/app/api/controller/ZhiboController.php b/app/api/controller/ZhiboController.php
index c363b9f0e..938e30568 100644
--- a/app/api/controller/ZhiboController.php
+++ b/app/api/controller/ZhiboController.php
@@ -15,27 +15,71 @@
namespace app\api\controller;
use think\facade\Db;
-use WebSocket\Client;
-use GuzzleHttp\Client as GzClient;
+use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Exception\GuzzleException;
use Guzzle\Http\Exception\RequestException;
+use Darabonba\OpenApi\OpenApiClient;
+use AlibabaCloud\OpenApiUtil\OpenApiUtilClient;
+use Darabonba\OpenApi\Models\Config;
+use Darabonba\OpenApi\Models\Params;
+use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
+use Darabonba\OpenApi\Models\OpenApiRequest;
+use AlibabaCloud\SDK\Live\V20161101\Live;
+
+
/**
- * 七牛直播
+ * 阿里云直播
* Class ZhiboController
*/
class ZhiboController extends BaseApiController
{
- public array $notNeedLogin = ['chat'];
+ public array $notNeedLogin = ['createPushUrl', 'getPullUrl'];
- private $app_id='2eda6c2e';
- private $api_key='12ec1f9d113932575fc4b114a2f60ffd';
- private $api_secret='MDEyMzE5YTc5YmQ5NjMwOTU1MWY4N2Y2';
+ // 推流host
+ private $push_host = 'rtmp://push-live.lihaink.cn';
+ // 拉流host
+ private $pull_host = 'rtmp://live.lihaink.cn';
+ // URL推流鉴权key
+ private $push_auth_key = '5WRlJV0QxK731AJe';
+ // URL拉流鉴权key
+ private $pull_auth_key = '59YEMIXP9260MZBe';
- public function chat()
+ public function createPushUrl()
{
- return $this->data([]);
+ $uri = $this->push_host . '/app/ceshi';
+ $key = $this->push_auth_key;
+ $exp = time() + 3600;
+ $authuri = $this->authKey($uri, $key, $exp);
+ return $this->data([$authuri]);
+ }
+
+ public function getPullUrl()
+ {
+ $uri = $this->pull_host . '/app/ceshi';
+ $key = $this->pull_auth_key;
+ $exp = time() + 3600;
+ $authuri = $this->authKey($uri, $key, $exp);
+ return $this->data([$authuri]);
+ }
+
+ private function authKey($uri, $key, $exp) {
+ preg_match("/^(rtmp:\/\/)?([^\/?]+)?(\/[^?]*)?(\\?.*)?$/", $uri, $matches);
+ $scheme = $matches[1] ?? '';
+ $host = $matches[2] ?? '';
+ $path = $matches[3] ?? '';
+ if (empty($scheme)) {
+ $scheme ="rtmp://";
+ }
+ if (empty($path)) {
+ $path ="/";
+ }
+ $uid = $rand = "0";
+ $string = sprintf("%s-%u-%s-%s-%s", $path, $exp, $rand, $uid, $key);
+ $hashvalue = md5($string);
+ $auth_key = sprintf("%u-%s-%s-%s", $exp, $rand, $uid, $hashvalue);
+ return sprintf("%s%s%s?auth_key=%s", $scheme, $host, $path, $auth_key);
}
}
diff --git a/composer.json b/composer.json
index 6f6006354..9214adbec 100755
--- a/composer.json
+++ b/composer.json
@@ -43,7 +43,8 @@
"workerman/gatewayclient": "^3.0",
"jpush/jpush": "^3.6",
"topthink/think-filesystem": "^2.0",
- "alibabacloud/live": "^1.8"
+ "alibabacloud/live": "^1.8",
+ "alibabacloud/live-20161101": "1.1.1"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
diff --git a/composer.lock b/composer.lock
index 430db2866..783e0c020 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "0ba9392aaf4e23b4c1f1d571084d8951",
+ "content-hash": "df2314f832b2603d5d7eb0b31b84ae66",
"packages": [
{
"name": "adbario/php-dot-notation",
@@ -155,6 +155,237 @@
},
"time": "2022-12-09T04:05:55+00:00"
},
+ {
+ "name": "alibabacloud/credentials",
+ "version": "1.1.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/aliyun/credentials-php.git",
+ "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
+ "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "adbario/php-dot-notation": "^2.2",
+ "alibabacloud/tea": "^3.0",
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-simplexml": "*",
+ "ext-xmlwriter": "*",
+ "guzzlehttp/guzzle": "^6.3|^7.0",
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "composer/composer": "^1.8",
+ "drupal/coder": "^8.3",
+ "ext-dom": "*",
+ "ext-pcre": "*",
+ "ext-sockets": "*",
+ "ext-spl": "*",
+ "mikey179/vfsstream": "^1.6",
+ "monolog/monolog": "^1.24",
+ "phpunit/phpunit": "^5.7|^6.6|^7.5",
+ "psr/cache": "^1.0",
+ "symfony/dotenv": "^3.4",
+ "symfony/var-dumper": "^3.4"
+ },
+ "suggest": {
+ "ext-sockets": "To use client-side monitoring"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Credentials\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com",
+ "homepage": "http://www.alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud Credentials for PHP",
+ "homepage": "https://www.alibabacloud.com/",
+ "keywords": [
+ "alibaba",
+ "alibabacloud",
+ "aliyun",
+ "client",
+ "cloud",
+ "credentials",
+ "library",
+ "sdk",
+ "tool"
+ ],
+ "support": {
+ "issues": "https://github.com/aliyun/credentials-php/issues",
+ "source": "https://github.com/aliyun/credentials-php"
+ },
+ "time": "2023-04-11T02:12:12+00:00"
+ },
+ {
+ "name": "alibabacloud/darabonba-openapi",
+ "version": "0.2.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
+ "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/4cdfc36615f345786d668dfbaf68d9a301b6dbe2",
+ "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/credentials": "^1.1",
+ "alibabacloud/gateway-spi": "^1",
+ "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
+ "alibabacloud/tea-utils": "^0.2.17",
+ "alibabacloud/tea-xml": "^0.2",
+ "php": ">5.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Darabonba\\OpenApi\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud OpenApi Client",
+ "support": {
+ "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
+ "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.9"
+ },
+ "time": "2023-02-06T12:02:21+00:00"
+ },
+ {
+ "name": "alibabacloud/endpoint-util",
+ "version": "0.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
+ "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
+ "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35|^5.4.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Endpoint\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud Endpoint Library for PHP",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
+ },
+ "time": "2020-06-04T10:57:15+00:00"
+ },
+ {
+ "name": "alibabacloud/gateway-spi",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
+ "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
+ "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/credentials": "^1.1",
+ "php": ">5.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Darabonba\\GatewaySpi\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud Gateway SPI Client",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
+ },
+ "time": "2022-07-14T05:31:35+00:00"
+ },
{
"name": "alibabacloud/live",
"version": "1.8.958",
@@ -213,6 +444,274 @@
},
"time": "2021-04-29T09:14:45+00:00"
},
+ {
+ "name": "alibabacloud/live-20161101",
+ "version": "1.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/live-20161101.git",
+ "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/live-20161101/zipball/6aa9436929b8d8d2b5a51daeca7227ebc88e1717",
+ "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717",
+ "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.0",
+ "alibabacloud/tea-utils": "^0.2.17",
+ "php": ">5.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\SDK\\Live\\V20161101\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud ApsaraVideo for Live (20161101) SDK Library for PHP",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/live-20161101/tree/1.1.1"
+ },
+ "time": "2022-12-05T03:08:45+00:00"
+ },
+ {
+ "name": "alibabacloud/openapi-util",
+ "version": "0.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
+ "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
+ "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/tea": "^3.1",
+ "alibabacloud/tea-utils": "^0.2",
+ "lizhichao/one-sm": "^1.5",
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\OpenApiUtil\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud OpenApi Util",
+ "support": {
+ "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
+ "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
+ },
+ "time": "2023-01-10T09:10:10+00:00"
+ },
+ {
+ "name": "alibabacloud/tea",
+ "version": "3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/aliyun/tea-php.git",
+ "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
+ "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "adbario/php-dot-notation": "^2.4",
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-simplexml": "*",
+ "ext-xmlwriter": "*",
+ "guzzlehttp/guzzle": "^6.3|^7.0",
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*",
+ "symfony/dotenv": "^3.4",
+ "symfony/var-dumper": "^3.4"
+ },
+ "suggest": {
+ "ext-sockets": "To use client-side monitoring"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com",
+ "homepage": "http://www.alibabacloud.com"
+ }
+ ],
+ "description": "Client of Tea for PHP",
+ "homepage": "https://www.alibabacloud.com/",
+ "keywords": [
+ "alibabacloud",
+ "client",
+ "cloud",
+ "tea"
+ ],
+ "support": {
+ "issues": "https://github.com/aliyun/tea-php/issues",
+ "source": "https://github.com/aliyun/tea-php"
+ },
+ "time": "2023-05-16T06:43:41+00:00"
+ },
+ {
+ "name": "alibabacloud/tea-utils",
+ "version": "0.2.19",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
+ "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
+ "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/tea": "^3.1",
+ "php": ">5.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\Utils\\": "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 Utils for PHP",
+ "support": {
+ "issues": "https://github.com/aliyun/tea-util/issues",
+ "source": "https://github.com/aliyun/tea-util"
+ },
+ "time": "2023-06-26T09:49:19+00:00"
+ },
+ {
+ "name": "alibabacloud/tea-xml",
+ "version": "0.2.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
+ "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
+ "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*",
+ "symfony/var-dumper": "*"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\XML\\": "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 XML Library for PHP",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
+ },
+ "time": "2022-08-02T04:12:58+00:00"
+ },
{
"name": "aliyuncs/oss-sdk-php",
"version": "v2.6.0",
@@ -1295,6 +1794,66 @@
],
"time": "2023-08-05T12:09:49+00:00"
},
+ {
+ "name": "lizhichao/one-sm",
+ "version": "1.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/lizhichao/sm.git",
+ "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
+ "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "OneSm\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "tanszhe",
+ "email": "1018595261@qq.com"
+ }
+ ],
+ "description": "国密sm3",
+ "keywords": [
+ "php",
+ "sm3"
+ ],
+ "support": {
+ "issues": "https://github.com/lizhichao/sm/issues",
+ "source": "https://github.com/lizhichao/sm/tree/1.10"
+ },
+ "funding": [
+ {
+ "url": "https://www.vicsdf.com/img/w.jpg",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.vicsdf.com/img/z.jpg",
+ "type": "custom"
+ }
+ ],
+ "time": "2021-05-26T06:19:22+00:00"
+ },
{
"name": "maennchen/zipstream-php",
"version": "2.4.0",
diff --git a/vendor/alibabacloud/credentials/CHANGELOG.md b/vendor/alibabacloud/credentials/CHANGELOG.md
new file mode 100644
index 000000000..6180270e6
--- /dev/null
+++ b/vendor/alibabacloud/credentials/CHANGELOG.md
@@ -0,0 +1,14 @@
+# CHANGELOG
+
+## 1.1.3 - 2020-12-24
+
+- Require guzzle ^6.3|^7.0
+
+## 1.0.2 - 2020-02-14
+- Update Tea.
+
+## 1.0.1 - 2019-12-30
+- Supported get `Role Name` automatically.
+
+## 1.0.0 - 2019-09-01
+- Initial release of the Alibaba Cloud Credentials for PHP Version 1.0.0 on Packagist See for more information.
diff --git a/vendor/alibabacloud/credentials/CONTRIBUTING.md b/vendor/alibabacloud/credentials/CONTRIBUTING.md
new file mode 100644
index 000000000..8ed933034
--- /dev/null
+++ b/vendor/alibabacloud/credentials/CONTRIBUTING.md
@@ -0,0 +1,30 @@
+# CONTRIBUTING
+
+We work hard to provide a high-quality and useful SDK for Alibaba Cloud, and
+we greatly value feedback and contributions from our community. Please submit
+your [issues][issues] or [pull requests][pull-requests] through GitHub.
+
+## Tips
+
+- The SDK is released under the [Apache license][license]. Any code you submit
+ will be released under that license. For substantial contributions, we may
+ ask you to sign a [Alibaba Documentation Corporate Contributor License
+ Agreement (CLA)][cla].
+- We follow all of the relevant PSR recommendations from the [PHP Framework
+ Interop Group][php-fig]. Please submit code that follows these standards.
+ The [PHP CS Fixer][cs-fixer] tool can be helpful for formatting your code.
+ Your can use `composer fixer` to fix code.
+- We maintain a high percentage of code coverage in our unit tests. If you make
+ changes to the code, please add, update, and/or remove tests as appropriate.
+- If your code does not conform to the PSR standards, does not include adequate
+ tests, or does not contain a changelog document, we may ask you to update
+ your pull requests before we accept them. We also reserve the right to deny
+ any pull requests that do not align with our standards or goals.
+
+[issues]: https://github.com/aliyun/credentials-php/issues
+[pull-requests]: https://github.com/aliyun/credentials-php/pulls
+[license]: http://www.apache.org/licenses/LICENSE-2.0
+[cla]: https://alibaba-cla-2018.oss-cn-beijing.aliyuncs.com/Alibaba_Documentation_Open_Source_Corporate_CLA.pdf
+[php-fig]: http://php-fig.org
+[cs-fixer]: http://cs.sensiolabs.org/
+[docs-readme]: https://github.com/aliyun/credentials-php/blob/master/README.md
diff --git a/vendor/alibabacloud/credentials/LICENSE.md b/vendor/alibabacloud/credentials/LICENSE.md
new file mode 100644
index 000000000..ec13fccd3
--- /dev/null
+++ b/vendor/alibabacloud/credentials/LICENSE.md
@@ -0,0 +1,13 @@
+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.
diff --git a/vendor/alibabacloud/credentials/NOTICE.md b/vendor/alibabacloud/credentials/NOTICE.md
new file mode 100644
index 000000000..97db1932e
--- /dev/null
+++ b/vendor/alibabacloud/credentials/NOTICE.md
@@ -0,0 +1,88 @@
+# NOTICE
+
+
+
+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.
+A copy of the License is located at
+
+
+
+or in the "license" file accompanying this file. This file 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.
+
+# Guzzle
+
+
+
+Copyright (c) 2011-2018 Michael Dowling, https://github.com/mtdowling
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+# jmespath.php
+
+
+
+Copyright (c) 2014 Michael Dowling, https://github.com/mtdowling
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+# Dot
+
+
+
+Copyright (c) 2016-2019 Riku Särkinen
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/vendor/alibabacloud/credentials/README-zh-CN.md b/vendor/alibabacloud/credentials/README-zh-CN.md
new file mode 100644
index 000000000..ad127c467
--- /dev/null
+++ b/vendor/alibabacloud/credentials/README-zh-CN.md
@@ -0,0 +1,250 @@
+[English](/README.md) | 简体中文
+
+
+# Alibaba Cloud Credentials for PHP
+[](https://packagist.org/packages/alibabacloud/credentials)
+[](https://packagist.org/packages/alibabacloud/credentials)
+[](https://packagist.org/packages/alibabacloud/credentials)
+[](https://packagist.org/packages/alibabacloud/credentials)
+[](https://codecov.io/gh/aliyun/credentials-php)
+[](https://travis-ci.org/aliyun/credentials-php)
+[](https://ci.appveyor.com/project/aliyun/credentials-php)
+
+
+
+
+
+Alibaba Cloud Credentials for PHP 是帮助 PHP 开发者管理凭据的工具。
+
+
+## 先决条件
+您的系统需要满足[先决条件](/docs/zh-CN/0-Prerequisites.md),包括 PHP> = 5.6。 我们强烈建议使用cURL扩展,并使用TLS后端编译cURL 7.16.2+。
+
+
+## 安装依赖
+如果已在系统上[全局安装 Composer](https://getcomposer.org/doc/00-intro.md#globally),请直接在项目目录中运行以下内容来安装 Alibaba Cloud Credentials for PHP 作为依赖项:
+```
+composer require alibabacloud/credentials
+```
+> 一些用户可能由于网络问题无法安装,可以使用[阿里云 Composer 全量镜像](https://developer.aliyun.com/composer)。
+
+请看[安装](/docs/zh-CN/1-Installation.md)有关通过 Composer 和其他方式安装的详细信息。
+
+
+## 快速使用
+在您开始之前,您需要注册阿里云帐户并获取您的[凭证](https://usercenter.console.aliyun.com/#/manage/ak)。
+
+### 凭证类型
+
+#### AccessKey
+
+通过[用户信息管理][ak]设置 access_key,它们具有该账户完全的权限,请妥善保管。有时出于安全考虑,您不能把具有完全访问权限的主账户 AccessKey 交于一个项目的开发者使用,您可以[创建RAM子账户][ram]并为子账户[授权][permissions],使用RAM子用户的 AccessKey 来进行API调用。
+
+```php
+getAccessKeyId();
+$credential->getAccessKeySecret();
+
+// Access Key
+$ak = new Credential([
+ 'type' => 'access_key',
+ 'access_key_id' => '',
+ 'access_key_secret' => '',
+]);
+$ak->getAccessKeyId();
+$ak->getAccessKeySecret();
+```
+
+#### STS
+
+通过安全令牌服务(Security Token Service,简称 STS),申请临时安全凭证(Temporary Security Credentials,简称 TSC),创建临时安全凭证。
+
+```php
+ 'sts',
+ 'access_key_id' => '',
+ 'accessKey_secret' => '',
+ 'security_token' => '',
+]);
+$sts->getAccessKeyId();
+$sts->getAccessKeySecret();
+$sts->getSecurityToken();
+```
+
+#### RamRoleArn
+
+通过指定[RAM角色][RAM Role],让凭证自动申请维护 STS Token。你可以通过为 `Policy` 赋值来限制获取到的 STS Token 的权限。
+
+```php
+ 'ram_role_arn',
+ 'access_key_id' => '',
+ 'access_key_secret' => '',
+ 'role_arn' => '',
+ 'role_session_name' => '',
+ 'policy' => '',
+]);
+$ramRoleArn->getAccessKeyId();
+$ramRoleArn->getAccessKeySecret();
+$ramRoleArn->getRoleArn();
+$ramRoleArn->getRoleSessionName();
+$ramRoleArn->getPolicy();
+```
+
+#### EcsRamRole
+
+通过指定角色名称,让凭证自动申请维护 STS Token
+
+```php
+ 'ecs_ram_role',
+ 'role_name' => '',
+]);
+$ecsRamRole->getRoleName();
+// Note: `role_name` is optional. It will be retrieved automatically if not set. It is highly recommended to set it up to reduce requests.
+```
+
+#### RsaKeyPair
+
+通过指定公钥Id和私钥文件,让凭证自动申请维护 AccessKey。仅支持日本站。
+
+```php
+ 'rsa_key_pair',
+ 'public_key_id' => '',
+ 'private_key_file' => '',
+]);
+$rsaKeyPair->getPublicKeyId();
+$rsaKeyPair->getPrivateKey();
+```
+
+#### Bearer Token
+
+如呼叫中心(CCC)需用此凭证,请自行申请维护 Bearer Token。
+
+```php
+ 'bearer',
+ 'bearer_token' => '',
+]);
+$bearerToken->getBearerToken();
+$bearerToken->getSignature();
+```
+
+## 默认凭证提供程序链
+默认凭证提供程序链查找可用的凭证,寻找顺序如下:
+
+### 1. 环境凭证
+程序首先会在环境变量里寻找环境凭证,如果定义了 `ALIBABA_CLOUD_ACCESS_KEY_ID` 和 `ALIBABA_CLOUD_ACCESS_KEY_SECRET` 环境变量且不为空,程序将使用他们创建默认凭证。
+
+### 2. 配置文件
+> 如果用户主目录存在默认文件 `~/.alibabacloud/credentials` (Windows 为 `C:\Users\USER_NAME\.alibabacloud\credentials`),程序会自动创建指定类型和名称的凭证。默认文件可以不存在,但解析错误会抛出异常。 凭证名称不分大小写,若凭证同名,后者会覆盖前者。不同的项目、工具之间可以共用这个配置文件,因为超出项目之外,也不会被意外提交到版本控制。Windows 上可以使用环境变量引用到主目录 %UserProfile%。类 Unix 的系统可以使用环境变量 $HOME 或 ~ (tilde)。 可以通过定义 `ALIBABA_CLOUD_CREDENTIALS_FILE` 环境变量修改默认文件的路径。
+
+```ini
+[default]
+type = access_key # 认证方式为 access_key
+access_key_id = foo # Key
+access_key_secret = bar # Secret
+
+[project1]
+type = ecs_ram_role # 认证方式为 ecs_ram_role
+role_name = EcsRamRoleTest # Role Name,非必填,不填则自动获取,建议设置,可以减少网络请求。
+
+[project2]
+type = ram_role_arn # 认证方式为 ram_role_arn
+access_key_id = foo
+access_key_secret = bar
+role_arn = role_arn
+role_session_name = session_name
+
+[project3]
+type = rsa_key_pair # 认证方式为 rsa_key_pair
+public_key_id = publicKeyId # Public Key ID
+private_key_file = /your/pk.pem # Private Key 文件
+```
+
+### 3. 实例 RAM 角色
+如果定义了环境变量 `ALIBABA_CLOUD_ECS_METADATA` 且不为空,程序会将该环境变量的值作为角色名称,请求 `http://100.100.100.200/latest/meta-data/ram/security-credentials/` 获取临时安全凭证作为默认凭证。
+
+### 自定义凭证提供程序链
+可通过自定义程序链代替默认程序链的寻找顺序,也可以自行编写闭包传入提供者。
+```php
+ = 5.6. We strongly recommend using the cURL extension and compiling cURL 7.16.2+ using the TLS backend.
+
+
+## Installation
+If you have [Globally Install Composer](https://getcomposer.org/doc/00-intro.md#globally) on your system, install Alibaba Cloud Credentials for PHP as a dependency by running the following directly in the project directory:
+```
+composer require alibabacloud/credentials
+```
+> Some users may not be able to install due to network problems, you can switch to the [Alibaba Cloud Composer Mirror](https://developer.aliyun.com/composer).
+
+See [Installation](/docs/zh-CN/1-Installation.md) for details on installing through Composer and other means.
+
+
+## Quick Examples
+Before you begin, you need to sign up for an Alibaba Cloud account and retrieve your [Credentials](https://usercenter.console.aliyun.com/#/manage/ak).
+
+### Credential Type
+
+#### AccessKey
+
+Setup access_key credential through [User Information Management][ak], it have full authority over the account, please keep it safe. Sometimes for security reasons, you cannot hand over a primary account AccessKey with full access to the developer of a project. You may create a sub-account [RAM Sub-account][ram] , grant its [authorization][permissions],and use the AccessKey of RAM Sub-account.
+
+```php
+getAccessKeyId();
+$credential->getAccessKeySecret();
+
+// Access Key
+$ak = new Credential([
+ 'type' => 'access_key',
+ 'access_key_id' => '',
+ 'access_key_secret' => '',
+]);
+$ak->getAccessKeyId();
+$ak->getAccessKeySecret();
+```
+
+#### STS
+
+Create a temporary security credential by applying Temporary Security Credentials (TSC) through the Security Token Service (STS).
+
+```php
+ 'sts',
+ 'access_key_id' => '',
+ 'accessKey_secret' => '',
+ 'security_token' => '',
+]);
+$sts->getAccessKeyId();
+$sts->getAccessKeySecret();
+$sts->getSecurityToken();
+```
+
+#### RamRoleArn
+
+By specifying [RAM Role][RAM Role], the credential will be able to automatically request maintenance of STS Token. If you want to limit the permissions([How to make a policy][policy]) of STS Token, you can assign value for `Policy`.
+
+```php
+ 'ram_role_arn',
+ 'access_key_id' => '',
+ 'access_key_secret' => '',
+ 'role_arn' => '',
+ 'role_session_name' => '',
+ 'policy' => '',
+]);
+$ramRoleArn->getAccessKeyId();
+$ramRoleArn->getAccessKeySecret();
+$ramRoleArn->getRoleArn();
+$ramRoleArn->getRoleSessionName();
+$ramRoleArn->getPolicy();
+```
+
+#### EcsRamRole
+
+By specifying the role name, the credential will be able to automatically request maintenance of STS Token.
+
+```php
+ 'ecs_ram_role',
+ 'role_name' => '',
+]);
+$ecsRamRole->getRoleName();
+// Note: `role_name` is optional. It will be retrieved automatically if not set. It is highly recommended to set it up to reduce requests.
+```
+
+#### RsaKeyPair
+
+By specifying the public key Id and the private key file, the credential will be able to automatically request maintenance of the AccessKey before sending the request. Only Japan station is supported.
+
+
+```php
+ 'rsa_key_pair',
+ 'public_key_id' => '',
+ 'private_key_file' => '',
+]);
+$rsaKeyPair->getPublicKeyId();
+$rsaKeyPair->getPrivateKey();
+```
+
+#### Bearer Token
+
+If credential is required by the Cloud Call Centre (CCC), please apply for Bearer Token maintenance by yourself.
+
+```php
+ 'bearer',
+ 'bearer_token' => '',
+]);
+$bearerToken->getBearerToken();
+$bearerToken->getSignature();
+```
+
+## Default credential provider chain
+The default credential provider chain looks for available credentials, looking in the following order:
+
+### 1. Environmental certificate
+The program first looks for environment credentials in the environment variable. If the `ALIBABA_CLOUD_ACCESS_KEY_ID` and `ALIBABA_CLOUD_ACCESS_KEY_SECRET` environment variables are defined and not empty, the program will use them to create default credentials.
+
+### 2. Configuration file
+> If the user's home directory has the default file `~/.alibabacloud/credentials` (Windows is `C:\Users\USER_NAME\.alibabacloud\credentials`), the program will automatically create credentials with the specified type and name. The default file may not exist, but parsing errors will throw an exception. The voucher name is not case sensitive. If the voucher has the same name, the latter will overwrite the former. This configuration file can be shared between different projects and tools, and it will not be accidentally submitted to version control because it is outside the project. Environment variables can be referenced to the home directory %UserProfile% on Windows. Unix-like systems can use the environment variable $HOME or ~ (tilde). The path to the default file can be modified by defining the `ALIBABA_CLOUD_CREDENTIALS_FILE` environment variable.
+
+```ini
+[default]
+type = access_key # Authentication method is access_key
+access_key_id = foo # Key
+access_key_secret = bar # Secret
+
+[project1]
+type = ecs_ram_role # Authentication method is ecs_ram_role
+role_name = EcsRamRoleTest # Role name, optional. It will be retrieved automatically if not set. It is highly recommended to set it up to reduce requests.
+
+[project2]
+type = ram_role_arn # Authentication method is ram_role_arn
+access_key_id = foo
+access_key_secret = bar
+role_arn = role_arn
+role_session_name = session_name
+
+[project3]
+type = rsa_key_pair # Authentication method is rsa_key_pair
+public_key_id = publicKeyId # Public Key ID
+private_key_file = /your/pk.pem # Private Key File
+```
+
+### 3. Instance RAM role
+If the environment variable `ALIBABA_CLOUD_ECS_METADATA` is defined and not empty, the program will take the value of the environment variable as the role name and request `http://100.100.100.200/latest/meta-data/ram/security-credentials/` to get the temporary Security credentials are used as default credentials.
+
+### Custom credential provider chain
+You can replace the default order of the program chain by customizing the program chain, or you can write the closure to the provider.
+```php
+ for more information.
diff --git a/vendor/alibabacloud/credentials/composer.json b/vendor/alibabacloud/credentials/composer.json
new file mode 100644
index 000000000..513e8a127
--- /dev/null
+++ b/vendor/alibabacloud/credentials/composer.json
@@ -0,0 +1,107 @@
+{
+ "name": "alibabacloud/credentials",
+ "homepage": "https://www.alibabacloud.com/",
+ "description": "Alibaba Cloud Credentials for PHP",
+ "keywords": [
+ "sdk",
+ "tool",
+ "cloud",
+ "client",
+ "aliyun",
+ "library",
+ "alibaba",
+ "Credentials",
+ "alibabacloud"
+ ],
+ "type": "library",
+ "license": "Apache-2.0",
+ "support": {
+ "source": "https://github.com/aliyun/credentials-php",
+ "issues": "https://github.com/aliyun/credentials-php/issues"
+ },
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com",
+ "homepage": "http://www.alibabacloud.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.6",
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-openssl": "*",
+ "ext-mbstring": "*",
+ "ext-simplexml": "*",
+ "ext-xmlwriter": "*",
+ "guzzlehttp/guzzle": "^6.3|^7.0",
+ "adbario/php-dot-notation": "^2.2",
+ "alibabacloud/tea": "^3.0"
+ },
+ "require-dev": {
+ "ext-spl": "*",
+ "ext-dom": "*",
+ "ext-pcre": "*",
+ "psr/cache": "^1.0",
+ "ext-sockets": "*",
+ "drupal/coder": "^8.3",
+ "symfony/dotenv": "^3.4",
+ "phpunit/phpunit": "^5.7|^6.6|^7.5",
+ "monolog/monolog": "^1.24",
+ "composer/composer": "^1.8",
+ "mikey179/vfsstream": "^1.6",
+ "symfony/var-dumper": "^3.4"
+ },
+ "suggest": {
+ "ext-sockets": "To use client-side monitoring"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Credentials\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "AlibabaCloud\\Credentials\\Tests\\": "tests/"
+ }
+ },
+ "config": {
+ "preferred-install": "dist",
+ "optimize-autoloader": true,
+ "allow-plugins": {
+ "dealerdirect/phpcodesniffer-composer-installer": true
+ }
+ },
+ "minimum-stability": "dev",
+ "prefer-stable": true,
+ "scripts-descriptions": {
+ "cs": "Tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard.",
+ "cbf": "Automatically correct coding standard violations.",
+ "fixer": "Fixes code to follow standards.",
+ "test": "Run all tests.",
+ "unit": "Run Unit tests.",
+ "feature": "Run Feature tests.",
+ "clearCache": "Clear cache like coverage.",
+ "coverage": "Show Coverage html.",
+ "endpoints": "Update endpoints from OSS."
+ },
+ "scripts": {
+ "cs": "phpcs --standard=PSR2 -n ./",
+ "cbf": "phpcbf --standard=PSR2 -n ./",
+ "fixer": "php-cs-fixer fix ./",
+ "test": [
+ "phpunit --colors=always"
+ ],
+ "unit": [
+ "@clearCache",
+ "phpunit --testsuite=Unit --colors=always"
+ ],
+ "feature": [
+ "@clearCache",
+ "phpunit --testsuite=Feature --colors=always"
+ ],
+ "coverage": "open cache/coverage/index.html",
+ "clearCache": "rm -rf cache/*"
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/AccessKeyCredential.php b/vendor/alibabacloud/credentials/src/AccessKeyCredential.php
new file mode 100644
index 000000000..6d7d7c97e
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/AccessKeyCredential.php
@@ -0,0 +1,72 @@
+accessKeyId = $access_key_id;
+ $this->accessKeySecret = $access_key_secret;
+ }
+
+ /**
+ * @return string
+ */
+ public function getAccessKeyId()
+ {
+ return $this->accessKeyId;
+ }
+
+ /**
+ * @return string
+ */
+ public function getAccessKeySecret()
+ {
+ return $this->accessKeySecret;
+ }
+
+ /**
+ * @return string
+ */
+ public function __toString()
+ {
+ return "$this->accessKeyId#$this->accessKeySecret";
+ }
+
+ /**
+ * @return ShaHmac1Signature
+ */
+ public function getSignature()
+ {
+ return new ShaHmac1Signature();
+ }
+
+ public function getSecurityToken()
+ {
+ return '';
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/BearerTokenCredential.php b/vendor/alibabacloud/credentials/src/BearerTokenCredential.php
new file mode 100644
index 000000000..c38fb8c2c
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/BearerTokenCredential.php
@@ -0,0 +1,53 @@
+bearerToken = $bearer_token;
+ }
+
+ /**
+ * @return string
+ */
+ public function getBearerToken()
+ {
+ return $this->bearerToken;
+ }
+
+ /**
+ * @return string
+ */
+ public function __toString()
+ {
+ return "bearerToken#$this->bearerToken";
+ }
+
+ /**
+ * @return BearerTokenSignature
+ */
+ public function getSignature()
+ {
+ return new BearerTokenSignature();
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Credential.php b/vendor/alibabacloud/credentials/src/Credential.php
new file mode 100644
index 000000000..3916c1d61
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Credential.php
@@ -0,0 +1,183 @@
+ AccessKeyCredential::class,
+ 'sts' => StsCredential::class,
+ 'ecs_ram_role' => EcsRamRoleCredential::class,
+ 'ram_role_arn' => RamRoleArnCredential::class,
+ 'rsa_key_pair' => RsaKeyPairCredential::class,
+ 'bearer' => BearerTokenCredential::class,
+ ];
+
+ /**
+ * @var AccessKeyCredential|BearerTokenCredential|EcsRamRoleCredential|RamRoleArnCredential|RsaKeyPairCredential
+ */
+ protected $credential;
+
+ /**
+ * @var string
+ */
+ protected $type;
+
+ /**
+ * Credential constructor.
+ *
+ * @param array|Config $config
+ *
+ * @throws ReflectionException
+ */
+ public function __construct($config = [])
+ {
+ if ($config instanceof Config) {
+ $config = $this->parse($config);
+ }
+ if ($config !== []) {
+ $this->config = array_change_key_case($config);
+ $this->parseConfig();
+ } else {
+ $this->credential = Credentials::get()->getCredential();
+ }
+ }
+
+ /**
+ * @param Config $config
+ *
+ * @return array
+ */
+ private function parse($config)
+ {
+ $config = get_object_vars($config);
+ $res = [];
+ foreach ($config as $key => $value) {
+ $res[$this->toUnderScore($key)] = $value;
+ }
+ return $res;
+ }
+
+ private function toUnderScore($str)
+ {
+ $dstr = preg_replace_callback('/([A-Z]+)/', function ($matchs) {
+ return '_' . strtolower($matchs[0]);
+ }, $str);
+ return trim(preg_replace('/_{2,}/', '_', $dstr), '_');
+ }
+
+ /**
+ * @throws ReflectionException
+ */
+ private function parseConfig()
+ {
+ if (!isset($this->config['type'])) {
+ throw new InvalidArgumentException('Missing required type option');
+ }
+
+ $this->type = $this->config['type'];
+ if (!isset($this->types[$this->type])) {
+ throw new InvalidArgumentException(
+ 'Invalid type option, support: ' .
+ implode(', ', array_keys($this->types))
+ );
+ }
+
+ $class = new ReflectionClass($this->types[$this->type]);
+ $parameters = [];
+ /**
+ * @var $parameter ReflectionParameter
+ */
+ foreach ($class->getConstructor()->getParameters() as $parameter) {
+ $parameters[] = $this->getValue($parameter);
+ }
+
+ $this->credential = $class->newInstance(...$parameters);
+ }
+
+ /**
+ * @param ReflectionParameter $parameter
+ *
+ * @return string|array
+ * @throws ReflectionException
+ */
+ protected function getValue(ReflectionParameter $parameter)
+ {
+ if ($parameter->name === 'config' || $parameter->name === 'credential') {
+ return $this->config;
+ }
+
+ foreach ($this->config as $key => $value) {
+ if (strtolower($parameter->name) === $key) {
+ return $value;
+ }
+ }
+
+ if ($parameter->isDefaultValueAvailable()) {
+ return $parameter->getDefaultValue();
+ }
+
+ throw new InvalidArgumentException("Missing required {$parameter->name} option in config for {$this->type}");
+ }
+
+ /**
+ * @return AccessKeyCredential|BearerTokenCredential|EcsRamRoleCredential|RamRoleArnCredential|RsaKeyPairCredential
+ */
+ public function getCredential()
+ {
+ return $this->credential;
+ }
+
+ /**
+ * @return array
+ */
+ public function getConfig()
+ {
+ return $this->config;
+ }
+
+ /**
+ * @return string
+ */
+ public function getType()
+ {
+ return $this->type;
+ }
+
+
+ /**
+ * @param string $name
+ * @param array $arguments
+ *
+ * @return mixed
+ */
+ public function __call($name, $arguments)
+ {
+ return $this->credential->$name($arguments);
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Credential/Config.php b/vendor/alibabacloud/credentials/src/Credential/Config.php
new file mode 100644
index 000000000..3fa1608da
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Credential/Config.php
@@ -0,0 +1,50 @@
+ $v) {
+ $this->{$k} = $v;
+ }
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Credentials.php b/vendor/alibabacloud/credentials/src/Credentials.php
new file mode 100644
index 000000000..11e68abff
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Credentials.php
@@ -0,0 +1,102 @@
+roleName = $role_name;
+ }
+
+ /**
+ * @return string
+ * @throws GuzzleException
+ * @throws Exception
+ */
+ public function getRoleName()
+ {
+ if ($this->roleName !== null) {
+ return $this->roleName;
+ }
+
+ $this->roleName = $this->getRoleNameFromMeta();
+
+ return $this->roleName;
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ */
+ public function getRoleNameFromMeta()
+ {
+ $options = [
+ 'http_errors' => false,
+ 'timeout' => 1,
+ 'connect_timeout' => 1,
+ ];
+
+ $result = Request::createClient()->request(
+ 'GET',
+ 'http://100.100.100.200/latest/meta-data/ram/security-credentials/',
+ $options
+ );
+
+ if ($result->getStatusCode() === 404) {
+ throw new InvalidArgumentException('The role name was not found in the instance');
+ }
+
+ if ($result->getStatusCode() !== 200) {
+ throw new RuntimeException('Error retrieving credentials from result: ' . $result->getBody());
+ }
+
+ $role_name = (string)$result;
+ if (!$role_name) {
+ throw new RuntimeException('Error retrieving credentials from result is empty');
+ }
+
+ return $role_name;
+ }
+
+ /**
+ * @return string
+ */
+ public function __toString()
+ {
+ return "roleName#$this->roleName";
+ }
+
+ /**
+ * @return ShaHmac1Signature
+ */
+ public function getSignature()
+ {
+ return new ShaHmac1Signature();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getAccessKeyId()
+ {
+ return $this->getSessionCredential()->getAccessKeyId();
+ }
+
+ /**
+ * @return StsCredential
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ protected function getSessionCredential()
+ {
+ return (new EcsRamRoleProvider($this))->get();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getAccessKeySecret()
+ {
+ return $this->getSessionCredential()->getAccessKeySecret();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getSecurityToken()
+ {
+ return $this->getSessionCredential()->getSecurityToken();
+ }
+
+ /**
+ * @return int
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getExpiration()
+ {
+ return $this->getSessionCredential()->getExpiration();
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Filter.php b/vendor/alibabacloud/credentials/src/Filter.php
new file mode 100644
index 000000000..61b39e0ad
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Filter.php
@@ -0,0 +1,134 @@
+ $value) {
+ if (is_int($key)) {
+ $result[] = $value;
+ continue;
+ }
+
+ if (isset($result[$key]) && is_array($result[$key])) {
+ $result[$key] = self::merge(
+ [$result[$key], $value]
+ );
+ continue;
+ }
+
+ $result[$key] = $value;
+ }
+ }
+
+ return $result;
+ }
+
+ /**
+ * @param $filename
+ *
+ * @return bool
+ */
+ public static function inOpenBasedir($filename)
+ {
+ $open_basedir = ini_get('open_basedir');
+ if (!$open_basedir) {
+ return true;
+ }
+
+ $dirs = explode(PATH_SEPARATOR, $open_basedir);
+
+ return empty($dirs) || self::inDir($filename, $dirs);
+ }
+
+ /**
+ * @param string $filename
+ * @param array $dirs
+ *
+ * @return bool
+ */
+ public static function inDir($filename, array $dirs)
+ {
+ foreach ($dirs as $dir) {
+ if ($dir[strlen($dir) - 1] !== DIRECTORY_SEPARATOR) {
+ $dir .= DIRECTORY_SEPARATOR;
+ }
+
+ if (0 === strpos($filename, $dir)) {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * @return bool
+ */
+ public static function isWindows()
+ {
+ return PATH_SEPARATOR === ';';
+ }
+
+ /**
+ * @param $key
+ *
+ * @return bool|mixed
+ */
+ public static function envNotEmpty($key)
+ {
+ $value = self::env($key, false);
+ if ($value) {
+ return $value;
+ }
+
+ return false;
+ }
+
+ /**
+ * Gets the value of an environment variable.
+ *
+ * @param string $key
+ * @param mixed $default
+ *
+ * @return mixed
+ */
+ public static function env($key, $default = null)
+ {
+ $value = getenv($key);
+
+ if ($value === false) {
+ return self::value($default);
+ }
+
+ if (self::envSubstr($value)) {
+ return substr($value, 1, -1);
+ }
+
+ return self::envConversion($value);
+ }
+
+ /**
+ * Return the default value of the given value.
+ *
+ * @param mixed $value
+ *
+ * @return mixed
+ */
+ public static function value($value)
+ {
+ return $value instanceof Closure ? $value() : $value;
+ }
+
+ /**
+ * @param $value
+ *
+ * @return bool
+ */
+ public static function envSubstr($value)
+ {
+ return ($valueLength = strlen($value)) > 1
+ && strpos($value, '"') === 0
+ && $value[$valueLength - 1] === '"';
+ }
+
+ /**
+ * @param $value
+ *
+ * @return bool|string|null
+ */
+ public static function envConversion($value)
+ {
+ $key = strtolower($value);
+
+ if ($key === 'null' || $key === '(null)') {
+ return null;
+ }
+
+ $list = [
+ 'true' => true,
+ '(true)' => true,
+ 'false' => false,
+ '(false)' => false,
+ 'empty' => '',
+ '(empty)' => '',
+ ];
+
+ return isset($list[$key]) ? $list[$key] : $value;
+ }
+
+ /**
+ * Gets the environment's HOME directory.
+ *
+ * @return null|string
+ */
+ public static function getHomeDirectory()
+ {
+ if (getenv('HOME')) {
+ return getenv('HOME');
+ }
+
+ return (getenv('HOMEDRIVE') && getenv('HOMEPATH'))
+ ? getenv('HOMEDRIVE') . getenv('HOMEPATH')
+ : null;
+ }
+
+ /**
+ * @param mixed ...$parameters
+ *
+ * @codeCoverageIgnore
+ */
+ public static function dd(...$parameters)
+ {
+ dump(...$parameters);
+ exit;
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/MockTrait.php b/vendor/alibabacloud/credentials/src/MockTrait.php
new file mode 100644
index 000000000..a590ac78a
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/MockTrait.php
@@ -0,0 +1,98 @@
+ 'access_key',
+ 'access_key_id' => $accessKeyId,
+ 'access_key_secret' => $accessKeySecret,
+ ]
+ );
+ }
+ };
+ }
+
+ /**
+ * @return string
+ */
+ public static function getDefaultName()
+ {
+ $name = Helper::envNotEmpty('ALIBABA_CLOUD_PROFILE');
+
+ if ($name) {
+ return $name;
+ }
+
+ return 'default';
+ }
+
+ /**
+ * @return Closure
+ */
+ public static function ini()
+ {
+ return static function () {
+ $filename = Helper::envNotEmpty('ALIBABA_CLOUD_CREDENTIALS_FILE');
+ if (!$filename) {
+ $filename = self::getDefaultFile();
+ }
+
+ if (!Helper::inOpenBasedir($filename)) {
+ return;
+ }
+
+ if ($filename !== self::getDefaultFile() && (!\is_readable($filename) || !\is_file($filename))) {
+ throw new RuntimeException(
+ 'Credentials file is not readable: ' . $filename
+ );
+ }
+
+ $file_array = \parse_ini_file($filename, true);
+
+ if (\is_array($file_array) && !empty($file_array)) {
+ foreach (\array_change_key_case($file_array) as $name => $configures) {
+ Credentials::set($name, $configures);
+ }
+ }
+ };
+ }
+
+ /**
+ * Get the default credential file.
+ *
+ * @return string
+ */
+ public static function getDefaultFile()
+ {
+ return Helper::getHomeDirectory() .
+ DIRECTORY_SEPARATOR .
+ '.alibabacloud' .
+ DIRECTORY_SEPARATOR .
+ 'credentials';
+ }
+
+ /**
+ * @return Closure
+ */
+ public static function instance()
+ {
+ return static function () {
+ $instance = Helper::envNotEmpty('ALIBABA_CLOUD_ECS_METADATA');
+ if ($instance) {
+ Credentials::set(
+ self::getDefaultName(),
+ [
+ 'type' => 'ecs_ram_role',
+ 'role_name' => $instance,
+ ]
+ );
+ }
+ };
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleProvider.php b/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleProvider.php
new file mode 100644
index 000000000..828bdadef
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleProvider.php
@@ -0,0 +1,94 @@
+getCredentialsInCache();
+
+ if ($result === null) {
+ $result = $this->request();
+
+ if (!isset($result['AccessKeyId'], $result['AccessKeySecret'], $result['SecurityToken'])) {
+ throw new RuntimeException($this->error);
+ }
+
+ $this->cache($result->toArray());
+ }
+
+ return new StsCredential(
+ $result['AccessKeyId'],
+ $result['AccessKeySecret'],
+ strtotime($result['Expiration']),
+ $result['SecurityToken']
+ );
+ }
+
+ /**
+ * Get credentials by request.
+ *
+ * @return ResponseInterface
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function request()
+ {
+ $credential = $this->credential;
+ $url = $this->uri . $credential->getRoleName();
+
+ $options = [
+ 'http_errors' => false,
+ 'timeout' => 1,
+ 'connect_timeout' => 1,
+ ];
+
+ $result = Request::createClient()->request('GET', $url, $options);
+
+ if ($result->getStatusCode() === 404) {
+ $message = 'The role was not found in the instance';
+ throw new InvalidArgumentException($message);
+ }
+
+ if ($result->getStatusCode() !== 200) {
+ throw new RuntimeException('Error retrieving credentials from result: ' . $result->toJson());
+ }
+
+ return $result;
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Providers/Provider.php b/vendor/alibabacloud/credentials/src/Providers/Provider.php
new file mode 100644
index 000000000..e1e869d54
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Providers/Provider.php
@@ -0,0 +1,82 @@
+credential = $credential;
+ $this->config = $config;
+ }
+
+ /**
+ * Get the credentials from the cache in the validity period.
+ *
+ * @return array|null
+ */
+ public function getCredentialsInCache()
+ {
+ if (isset(self::$credentialsCache[(string)$this->credential])) {
+ $result = self::$credentialsCache[(string)$this->credential];
+ if (\strtotime($result['Expiration']) - \time() >= $this->expirationSlot) {
+ return $result;
+ }
+ }
+
+ return null;
+ }
+
+ /**
+ * Cache credentials.
+ *
+ * @param array $credential
+ */
+ protected function cache(array $credential)
+ {
+ self::$credentialsCache[(string)$this->credential] = $credential;
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Providers/RamRoleArnProvider.php b/vendor/alibabacloud/credentials/src/Providers/RamRoleArnProvider.php
new file mode 100644
index 000000000..c6a872939
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Providers/RamRoleArnProvider.php
@@ -0,0 +1,49 @@
+getCredentialsInCache();
+
+ if (null === $credential) {
+ $result = (new AssumeRole($this->credential))->request();
+
+ if ($result->getStatusCode() !== 200) {
+ throw new RuntimeException(isset($result['Message']) ? $result['Message'] : (string)$result->getBody());
+ }
+
+ if (!isset($result['Credentials']['AccessKeyId'],
+ $result['Credentials']['AccessKeySecret'],
+ $result['Credentials']['SecurityToken'])) {
+ throw new RuntimeException($this->error);
+ }
+
+ $credential = $result['Credentials'];
+ $this->cache($credential);
+ }
+
+ return new StsCredential(
+ $credential['AccessKeyId'],
+ $credential['AccessKeySecret'],
+ strtotime($credential['Expiration']),
+ $credential['SecurityToken']
+ );
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairProvider.php b/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairProvider.php
new file mode 100644
index 000000000..c2d03fc2d
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairProvider.php
@@ -0,0 +1,53 @@
+getCredentialsInCache();
+
+ if ($credential === null) {
+ $result = (new GenerateSessionAccessKey($this->credential))->request();
+
+ if ($result->getStatusCode() !== 200) {
+ throw new RuntimeException(isset($result['Message']) ? $result['Message'] : (string)$result->getBody());
+ }
+
+ if (!isset($result['SessionAccessKey']['SessionAccessKeyId'],
+ $result['SessionAccessKey']['SessionAccessKeySecret'])) {
+ throw new RuntimeException($this->error);
+ }
+
+ $credential = $result['SessionAccessKey'];
+ $this->cache($credential);
+ }
+
+ return new StsCredential(
+ $credential['SessionAccessKeyId'],
+ $credential['SessionAccessKeySecret'],
+ strtotime($credential['Expiration'])
+ );
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php b/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php
new file mode 100644
index 000000000..b82c608fb
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php
@@ -0,0 +1,218 @@
+filterParameters($credential);
+ $this->filterPolicy($credential);
+
+ Filter::accessKey($credential['access_key_id'], $credential['access_key_secret']);
+
+ $this->config = $config;
+ $this->accessKeyId = $credential['access_key_id'];
+ $this->accessKeySecret = $credential['access_key_secret'];
+ $this->roleArn = $credential['role_arn'];
+ $this->roleSessionName = $credential['role_session_name'];
+ }
+
+ /**
+ * @param array $credential
+ */
+ private function filterParameters(array $credential)
+ {
+ if (!isset($credential['access_key_id'])) {
+ throw new InvalidArgumentException('Missing required access_key_id option in config for ram_role_arn');
+ }
+
+ if (!isset($credential['access_key_secret'])) {
+ throw new InvalidArgumentException('Missing required access_key_secret option in config for ram_role_arn');
+ }
+
+ if (!isset($credential['role_arn'])) {
+ throw new InvalidArgumentException('Missing required role_arn option in config for ram_role_arn');
+ }
+
+ if (!isset($credential['role_session_name'])) {
+ throw new InvalidArgumentException('Missing required role_session_name option in config for ram_role_arn');
+ }
+ }
+
+ /**
+ * @param array $credential
+ */
+ private function filterPolicy(array $credential)
+ {
+ if (isset($credential['policy'])) {
+ if (is_string($credential['policy'])) {
+ $this->policy = $credential['policy'];
+ }
+
+ if (is_array($credential['policy'])) {
+ $this->policy = json_encode($credential['policy']);
+ }
+ }
+ }
+
+ /**
+ * @return array
+ */
+ public function getConfig()
+ {
+ return $this->config;
+ }
+
+ /**
+ * @return string
+ */
+ public function getRoleArn()
+ {
+ return $this->roleArn;
+ }
+
+ /**
+ * @return string
+ */
+ public function getRoleSessionName()
+ {
+ return $this->roleSessionName;
+ }
+
+ /**
+ * @return string
+ */
+ public function getPolicy()
+ {
+ return $this->policy;
+ }
+
+ /**
+ * @return string
+ */
+ public function __toString()
+ {
+ return "$this->accessKeyId#$this->accessKeySecret#$this->roleArn#$this->roleSessionName";
+ }
+
+ /**
+ * @return ShaHmac1Signature
+ */
+ public function getSignature()
+ {
+ return new ShaHmac1Signature();
+ }
+
+ /**
+ * @return string
+ */
+ public function getOriginalAccessKeyId()
+ {
+ return $this->accessKeyId;
+ }
+
+ /**
+ * @return string
+ */
+ public function getOriginalAccessKeySecret()
+ {
+ return $this->accessKeySecret;
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getAccessKeyId()
+ {
+ return $this->getSessionCredential()->getAccessKeyId();
+ }
+
+ /**
+ * @return StsCredential
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ protected function getSessionCredential()
+ {
+ return (new RamRoleArnProvider($this))->get();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getAccessKeySecret()
+ {
+ return $this->getSessionCredential()->getAccessKeySecret();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getSecurityToken()
+ {
+ return $this->getSessionCredential()->getSecurityToken();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getExpiration()
+ {
+ return $this->getSessionCredential()->getExpiration();
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Request/AssumeRole.php b/vendor/alibabacloud/credentials/src/Request/AssumeRole.php
new file mode 100644
index 000000000..962a7334f
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Request/AssumeRole.php
@@ -0,0 +1,37 @@
+signature = new ShaHmac1Signature();
+ $this->credential = $arnCredential;
+ $this->uri = $this->uri->withHost('sts.aliyuncs.com');
+ $this->options['verify'] = false;
+ $this->options['query']['RoleArn'] = $arnCredential->getRoleArn();
+ $this->options['query']['RoleSessionName'] = $arnCredential->getRoleSessionName();
+ $this->options['query']['DurationSeconds'] = Provider::DURATION_SECONDS;
+ $this->options['query']['AccessKeyId'] = $this->credential->getOriginalAccessKeyId();
+ $this->options['query']['Version'] = '2015-04-01';
+ $this->options['query']['Action'] = 'AssumeRole';
+ $this->options['query']['RegionId'] = 'cn-hangzhou';
+ if ($arnCredential->getPolicy()) {
+ $this->options['query']['Policy'] = $arnCredential->getPolicy();
+ }
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Request/GenerateSessionAccessKey.php b/vendor/alibabacloud/credentials/src/Request/GenerateSessionAccessKey.php
new file mode 100644
index 000000000..35db58597
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Request/GenerateSessionAccessKey.php
@@ -0,0 +1,33 @@
+signature = new ShaHmac256WithRsaSignature();
+ $this->credential = $credential;
+ $this->uri = $this->uri->withHost('sts.ap-northeast-1.aliyuncs.com');
+ $this->options['verify'] = false;
+ $this->options['query']['Version'] = '2015-04-01';
+ $this->options['query']['Action'] = 'GenerateSessionAccessKey';
+ $this->options['query']['RegionId'] = 'cn-hangzhou';
+ $this->options['query']['AccessKeyId'] = $credential->getPublicKeyId();
+ $this->options['query']['PublicKeyId'] = $credential->getPublicKeyId();
+ $this->options['query']['DurationSeconds'] = Provider::DURATION_SECONDS;
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Request/Request.php b/vendor/alibabacloud/credentials/src/Request/Request.php
new file mode 100644
index 000000000..1bf1418ff
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Request/Request.php
@@ -0,0 +1,155 @@
+uri = (new Uri())->withScheme('https');
+ $this->options['http_errors'] = false;
+ $this->options['connect_timeout'] = self::CONNECT_TIMEOUT;
+ $this->options['timeout'] = self::TIMEOUT;
+
+ // Turn on debug mode based on environment variable.
+ if (strtolower(Helper::env('DEBUG')) === 'sdk') {
+ $this->options['debug'] = true;
+ }
+ }
+
+ /**
+ * @return ResponseInterface
+ * @throws Exception
+ */
+ public function request()
+ {
+ $this->options['query']['Format'] = 'JSON';
+ $this->options['query']['SignatureMethod'] = $this->signature->getMethod();
+ $this->options['query']['SignatureVersion'] = $this->signature->getVersion();
+ $this->options['query']['SignatureNonce'] = self::uuid(json_encode($this->options['query']));
+ $this->options['query']['Timestamp'] = gmdate('Y-m-d\TH:i:s\Z');
+ $this->options['query']['Signature'] = $this->signature->sign(
+ self::signString('GET', $this->options['query']),
+ $this->credential->getOriginalAccessKeySecret() . '&'
+ );
+ return self::createClient()->request('GET', (string)$this->uri, $this->options);
+ }
+
+ /**
+ * @param string $salt
+ *
+ * @return string
+ */
+ public static function uuid($salt)
+ {
+ return md5($salt . uniqid(md5(microtime(true)), true));
+ }
+
+ /**
+ * @param string $method
+ * @param array $parameters
+ *
+ * @return string
+ */
+ public static function signString($method, array $parameters)
+ {
+ ksort($parameters);
+ $canonicalized = '';
+ foreach ($parameters as $key => $value) {
+ $canonicalized .= '&' . self::percentEncode($key) . '=' . self::percentEncode($value);
+ }
+
+ return $method . '&%2F&' . self::percentEncode(substr($canonicalized, 1));
+ }
+
+ /**
+ * @param string $string
+ *
+ * @return null|string|string[]
+ */
+ private static function percentEncode($string)
+ {
+ $result = rawurlencode($string);
+ $result = str_replace(['+', '*'], ['%20', '%2A'], $result);
+ $result = preg_replace('/%7E/', '~', $result);
+
+ return $result;
+ }
+
+ /**
+ * @return Client
+ * @throws Exception
+ */
+ public static function createClient()
+ {
+ if (Credentials::hasMock()) {
+ $stack = HandlerStack::create(Credentials::getMock());
+ } else {
+ $stack = HandlerStack::create();
+ }
+
+ $stack->push(Middleware::mapResponse(static function (ResponseInterface $response) {
+ return new Response($response);
+ }));
+
+ self::$config['handler'] = $stack;
+
+ return new Client(self::$config);
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php b/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php
new file mode 100644
index 000000000..bb47f6b46
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php
@@ -0,0 +1,158 @@
+publicKeyId = $public_key_id;
+ $this->config = $config;
+ try {
+ $this->privateKey = file_get_contents($private_key_file);
+ } catch (Exception $exception) {
+ throw new InvalidArgumentException($exception->getMessage());
+ }
+ }
+
+ /**
+ * @return array
+ */
+ public function getConfig()
+ {
+ return $this->config;
+ }
+
+ /**
+ * @return string
+ */
+ public function getOriginalAccessKeyId()
+ {
+ return $this->getPublicKeyId();
+ }
+
+ /**
+ * @return string
+ */
+ public function getPublicKeyId()
+ {
+ return $this->publicKeyId;
+ }
+
+ /**
+ * @return string
+ */
+ public function getOriginalAccessKeySecret()
+ {
+ return $this->getPrivateKey();
+ }
+
+ /**
+ * @return mixed
+ */
+ public function getPrivateKey()
+ {
+ return $this->privateKey;
+ }
+
+ /**
+ * @return string
+ */
+ public function __toString()
+ {
+ return "publicKeyId#$this->publicKeyId";
+ }
+
+ /**
+ * @return ShaHmac1Signature
+ */
+ public function getSignature()
+ {
+ return new ShaHmac1Signature();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getAccessKeyId()
+ {
+ return $this->getSessionCredential()->getAccessKeyId();
+ }
+
+ /**
+ * @return StsCredential
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ protected function getSessionCredential()
+ {
+ return (new RsaKeyPairProvider($this))->get();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getAccessKeySecret()
+ {
+ return $this->getSessionCredential()->getAccessKeySecret();
+ }
+
+ /**
+ * @return string
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getSecurityToken()
+ {
+ return $this->getSessionCredential()->getSecurityToken();
+ }
+
+ /**
+ * @return int
+ * @throws Exception
+ * @throws GuzzleException
+ */
+ public function getExpiration()
+ {
+ return $this->getSessionCredential()->getExpiration();
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php b/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php
new file mode 100644
index 000000000..1d67a803b
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php
@@ -0,0 +1,47 @@
+getMessage()
+ );
+ }
+
+ return base64_encode($binarySignature);
+ }
+}
diff --git a/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php b/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php
new file mode 100644
index 000000000..9dfb73b2f
--- /dev/null
+++ b/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php
@@ -0,0 +1,34 @@
+accessKeyId = $access_key_id;
+ $this->accessKeySecret = $access_key_secret;
+ $this->expiration = $expiration;
+ $this->securityToken = $security_token;
+ }
+
+ /**
+ * @return int
+ */
+ public function getExpiration()
+ {
+ return $this->expiration;
+ }
+
+ /**
+ * @return string
+ */
+ public function getAccessKeyId()
+ {
+ return $this->accessKeyId;
+ }
+
+ /**
+ * @return string
+ */
+ public function getAccessKeySecret()
+ {
+ return $this->accessKeySecret;
+ }
+
+ /**
+ * @return string
+ */
+ public function getSecurityToken()
+ {
+ return $this->securityToken;
+ }
+
+ /**
+ * @return string
+ */
+ public function __toString()
+ {
+ return "$this->accessKeyId#$this->accessKeySecret#$this->securityToken";
+ }
+
+ /**
+ * @return ShaHmac1Signature
+ */
+ public function getSignature()
+ {
+ return new ShaHmac1Signature();
+ }
+}
diff --git a/vendor/alibabacloud/darabonba-openapi/.gitignore b/vendor/alibabacloud/darabonba-openapi/.gitignore
new file mode 100644
index 000000000..89c7aa58e
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/.gitignore
@@ -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
diff --git a/vendor/alibabacloud/darabonba-openapi/.php_cs.dist b/vendor/alibabacloud/darabonba-openapi/.php_cs.dist
new file mode 100644
index 000000000..8617ec2fa
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/.php_cs.dist
@@ -0,0 +1,65 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/darabonba-openapi/README-CN.md b/vendor/alibabacloud/darabonba-openapi/README-CN.md
new file mode 100644
index 000000000..b70255c3d
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/README-CN.md
@@ -0,0 +1,31 @@
+[English](README.md) | 简体中文
+
+
+
+## Alibaba Cloud OpenApi Client
+
+## 安装
+
+### Composer
+
+```bash
+composer require alibabacloud/darabonba-openapi
+```
+
+## 问题
+
+[提交 Issue](https://github.com/aliyun/darabonba-openapi/issues/new),不符合指南的问题可能会立即关闭。
+
+## 发行说明
+
+每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
+
+## 相关
+
+* [最新源码](https://github.com/aliyun/darabonba-openapi)
+
+## 许可证
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/darabonba-openapi/README.md b/vendor/alibabacloud/darabonba-openapi/README.md
new file mode 100644
index 000000000..97706274a
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/README.md
@@ -0,0 +1,31 @@
+English | [简体中文](README-CN.md)
+
+
+
+## Alibaba Cloud OpenApi Client
+
+## Installation
+
+### Composer
+
+```bash
+composer require alibabacloud/darabonba-openapi
+```
+
+## Issues
+
+[Opening an Issue](https://github.com/aliyun/darabonba-openapi/issues/new), Issues not conforming to the guidelines may be closed immediately.
+
+## Changelog
+
+Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
+
+## References
+
+* [Latest Release](https://github.com/aliyun/darabonba-openapi)
+
+## License
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/darabonba-openapi/autoload.php b/vendor/alibabacloud/darabonba-openapi/autoload.php
new file mode 100644
index 000000000..526c18825
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/autoload.php
@@ -0,0 +1,15 @@
+5.5",
+ "alibabacloud/tea-utils": "^0.2.17",
+ "alibabacloud/credentials": "^1.1",
+ "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
+ "alibabacloud/gateway-spi": "^1",
+ "alibabacloud/tea-xml": "^0.2"
+ },
+ "autoload": {
+ "psr-4": {
+ "Darabonba\\OpenApi\\": "src"
+ }
+ },
+ "scripts": {
+ "fixer": "php-cs-fixer fix ./"
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true
+}
\ No newline at end of file
diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/Config.php b/vendor/alibabacloud/darabonba-openapi/src/Models/Config.php
new file mode 100644
index 000000000..7dc6dae2e
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/src/Models/Config.php
@@ -0,0 +1,424 @@
+ '',
+ 'accessKeySecret' => '',
+ 'securityToken' => '',
+ 'protocol' => 'http',
+ 'method' => '',
+ 'regionId' => '',
+ 'readTimeout' => '',
+ 'connectTimeout' => '',
+ 'httpProxy' => '',
+ 'httpsProxy' => '',
+ 'credential' => '',
+ 'endpoint' => '',
+ 'noProxy' => '',
+ 'maxIdleConns' => '',
+ 'network' => '',
+ 'userAgent' => '',
+ 'suffix' => '',
+ 'socks5Proxy' => '',
+ 'socks5NetWork' => '',
+ 'endpointType' => '',
+ 'openPlatformEndpoint' => '',
+ 'type' => '',
+ 'signatureVersion' => '',
+ 'signatureAlgorithm' => '',
+ 'key' => '',
+ 'cert' => '',
+ 'ca' => '',
+ ];
+ public function validate()
+ {
+ }
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->accessKeyId) {
+ $res['accessKeyId'] = $this->accessKeyId;
+ }
+ if (null !== $this->accessKeySecret) {
+ $res['accessKeySecret'] = $this->accessKeySecret;
+ }
+ if (null !== $this->securityToken) {
+ $res['securityToken'] = $this->securityToken;
+ }
+ if (null !== $this->protocol) {
+ $res['protocol'] = $this->protocol;
+ }
+ if (null !== $this->method) {
+ $res['method'] = $this->method;
+ }
+ if (null !== $this->regionId) {
+ $res['regionId'] = $this->regionId;
+ }
+ if (null !== $this->readTimeout) {
+ $res['readTimeout'] = $this->readTimeout;
+ }
+ if (null !== $this->connectTimeout) {
+ $res['connectTimeout'] = $this->connectTimeout;
+ }
+ if (null !== $this->httpProxy) {
+ $res['httpProxy'] = $this->httpProxy;
+ }
+ if (null !== $this->httpsProxy) {
+ $res['httpsProxy'] = $this->httpsProxy;
+ }
+ if (null !== $this->credential) {
+ $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null;
+ }
+ if (null !== $this->endpoint) {
+ $res['endpoint'] = $this->endpoint;
+ }
+ if (null !== $this->noProxy) {
+ $res['noProxy'] = $this->noProxy;
+ }
+ if (null !== $this->maxIdleConns) {
+ $res['maxIdleConns'] = $this->maxIdleConns;
+ }
+ if (null !== $this->network) {
+ $res['network'] = $this->network;
+ }
+ if (null !== $this->userAgent) {
+ $res['userAgent'] = $this->userAgent;
+ }
+ if (null !== $this->suffix) {
+ $res['suffix'] = $this->suffix;
+ }
+ if (null !== $this->socks5Proxy) {
+ $res['socks5Proxy'] = $this->socks5Proxy;
+ }
+ if (null !== $this->socks5NetWork) {
+ $res['socks5NetWork'] = $this->socks5NetWork;
+ }
+ if (null !== $this->endpointType) {
+ $res['endpointType'] = $this->endpointType;
+ }
+ if (null !== $this->openPlatformEndpoint) {
+ $res['openPlatformEndpoint'] = $this->openPlatformEndpoint;
+ }
+ if (null !== $this->type) {
+ $res['type'] = $this->type;
+ }
+ if (null !== $this->signatureVersion) {
+ $res['signatureVersion'] = $this->signatureVersion;
+ }
+ if (null !== $this->signatureAlgorithm) {
+ $res['signatureAlgorithm'] = $this->signatureAlgorithm;
+ }
+ if (null !== $this->globalParameters) {
+ $res['globalParameters'] = null !== $this->globalParameters ? $this->globalParameters->toMap() : null;
+ }
+ if (null !== $this->key) {
+ $res['key'] = $this->key;
+ }
+ if (null !== $this->cert) {
+ $res['cert'] = $this->cert;
+ }
+ if (null !== $this->ca) {
+ $res['ca'] = $this->ca;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return Config
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['accessKeyId'])) {
+ $model->accessKeyId = $map['accessKeyId'];
+ }
+ if (isset($map['accessKeySecret'])) {
+ $model->accessKeySecret = $map['accessKeySecret'];
+ }
+ if (isset($map['securityToken'])) {
+ $model->securityToken = $map['securityToken'];
+ }
+ if (isset($map['protocol'])) {
+ $model->protocol = $map['protocol'];
+ }
+ if (isset($map['method'])) {
+ $model->method = $map['method'];
+ }
+ if (isset($map['regionId'])) {
+ $model->regionId = $map['regionId'];
+ }
+ if (isset($map['readTimeout'])) {
+ $model->readTimeout = $map['readTimeout'];
+ }
+ if (isset($map['connectTimeout'])) {
+ $model->connectTimeout = $map['connectTimeout'];
+ }
+ if (isset($map['httpProxy'])) {
+ $model->httpProxy = $map['httpProxy'];
+ }
+ if (isset($map['httpsProxy'])) {
+ $model->httpsProxy = $map['httpsProxy'];
+ }
+ if (isset($map['credential'])) {
+ $model->credential = Credential::fromMap($map['credential']);
+ }
+ if (isset($map['endpoint'])) {
+ $model->endpoint = $map['endpoint'];
+ }
+ if (isset($map['noProxy'])) {
+ $model->noProxy = $map['noProxy'];
+ }
+ if (isset($map['maxIdleConns'])) {
+ $model->maxIdleConns = $map['maxIdleConns'];
+ }
+ if (isset($map['network'])) {
+ $model->network = $map['network'];
+ }
+ if (isset($map['userAgent'])) {
+ $model->userAgent = $map['userAgent'];
+ }
+ if (isset($map['suffix'])) {
+ $model->suffix = $map['suffix'];
+ }
+ if (isset($map['socks5Proxy'])) {
+ $model->socks5Proxy = $map['socks5Proxy'];
+ }
+ if (isset($map['socks5NetWork'])) {
+ $model->socks5NetWork = $map['socks5NetWork'];
+ }
+ if (isset($map['endpointType'])) {
+ $model->endpointType = $map['endpointType'];
+ }
+ if (isset($map['openPlatformEndpoint'])) {
+ $model->openPlatformEndpoint = $map['openPlatformEndpoint'];
+ }
+ if (isset($map['type'])) {
+ $model->type = $map['type'];
+ }
+ if (isset($map['signatureVersion'])) {
+ $model->signatureVersion = $map['signatureVersion'];
+ }
+ if (isset($map['signatureAlgorithm'])) {
+ $model->signatureAlgorithm = $map['signatureAlgorithm'];
+ }
+ if (isset($map['globalParameters'])) {
+ $model->globalParameters = GlobalParameters::fromMap($map['globalParameters']);
+ }
+ if (isset($map['key'])) {
+ $model->key = $map['key'];
+ }
+ if (isset($map['cert'])) {
+ $model->cert = $map['cert'];
+ }
+ if (isset($map['ca'])) {
+ $model->ca = $map['ca'];
+ }
+ return $model;
+ }
+ /**
+ * @description accesskey id
+ * @var string
+ */
+ public $accessKeyId;
+
+ /**
+ * @description accesskey secret
+ * @var string
+ */
+ public $accessKeySecret;
+
+ /**
+ * @description security token
+ * @example a.txt
+ * @var string
+ */
+ public $securityToken;
+
+ /**
+ * @description http protocol
+ * @example http
+ * @var string
+ */
+ public $protocol;
+
+ /**
+ * @description http method
+ * @example GET
+ * @var string
+ */
+ public $method;
+
+ /**
+ * @description region id
+ * @example cn-hangzhou
+ * @var string
+ */
+ public $regionId;
+
+ /**
+ * @description read timeout
+ * @example 10
+ * @var int
+ */
+ public $readTimeout;
+
+ /**
+ * @description connect timeout
+ * @example 10
+ * @var int
+ */
+ public $connectTimeout;
+
+ /**
+ * @description http proxy
+ * @example http://localhost
+ * @var string
+ */
+ public $httpProxy;
+
+ /**
+ * @description https proxy
+ * @example https://localhost
+ * @var string
+ */
+ public $httpsProxy;
+
+ /**
+ * @description credential
+ * @example
+ * @var Credential
+ */
+ public $credential;
+
+ /**
+ * @description endpoint
+ * @example cs.aliyuncs.com
+ * @var string
+ */
+ public $endpoint;
+
+ /**
+ * @description proxy white list
+ * @example http://localhost
+ * @var string
+ */
+ public $noProxy;
+
+ /**
+ * @description max idle conns
+ * @example 3
+ * @var int
+ */
+ public $maxIdleConns;
+
+ /**
+ * @description network for endpoint
+ * @example public
+ * @var string
+ */
+ public $network;
+
+ /**
+ * @description user agent
+ * @example Alibabacloud/1
+ * @var string
+ */
+ public $userAgent;
+
+ /**
+ * @description suffix for endpoint
+ * @example aliyun
+ * @var string
+ */
+ public $suffix;
+
+ /**
+ * @description socks5 proxy
+ * @var string
+ */
+ public $socks5Proxy;
+
+ /**
+ * @description socks5 network
+ * @example TCP
+ * @var string
+ */
+ public $socks5NetWork;
+
+ /**
+ * @description endpoint type
+ * @example internal
+ * @var string
+ */
+ public $endpointType;
+
+ /**
+ * @description OpenPlatform endpoint
+ * @example openplatform.aliyuncs.com
+ * @var string
+ */
+ public $openPlatformEndpoint;
+
+ /**
+ * @description credential type
+ * @example access_key
+ * @deprecated
+ * @var string
+ */
+ public $type;
+
+ /**
+ * @description Signature Version
+ * @example v1
+ * @var string
+ */
+ public $signatureVersion;
+
+ /**
+ * @description Signature Algorithm
+ * @example ACS3-HMAC-SHA256
+ * @var string
+ */
+ public $signatureAlgorithm;
+
+ /**
+ * @description Global Parameters
+ * @var GlobalParameters
+ */
+ public $globalParameters;
+
+ /**
+ * @description privite key for client certificate
+ * @example MIIEvQ
+ * @var string
+ */
+ public $key;
+
+ /**
+ * @description client certificate
+ * @example -----BEGIN CERTIFICATE-----
+xxx-----END CERTIFICATE-----
+ * @var string
+ */
+ public $cert;
+
+ /**
+ * @description server certificate
+ * @example -----BEGIN CERTIFICATE-----
+xxx-----END CERTIFICATE-----
+ * @var string
+ */
+ public $ca;
+}
diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/GlobalParameters.php b/vendor/alibabacloud/darabonba-openapi/src/Models/GlobalParameters.php
new file mode 100644
index 000000000..37505de14
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/src/Models/GlobalParameters.php
@@ -0,0 +1,42 @@
+headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->queries) {
+ $res['queries'] = $this->queries;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return GlobalParameters
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['queries'])) {
+ $model->queries = $map['queries'];
+ }
+ return $model;
+ }
+ public $headers;
+
+ public $queries;
+}
diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php b/vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php
new file mode 100644
index 000000000..2796eca32
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php
@@ -0,0 +1,74 @@
+headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->query) {
+ $res['query'] = $this->query;
+ }
+ if (null !== $this->body) {
+ $res['body'] = $this->body;
+ }
+ if (null !== $this->stream) {
+ $res['stream'] = $this->stream;
+ }
+ if (null !== $this->hostMap) {
+ $res['hostMap'] = $this->hostMap;
+ }
+ if (null !== $this->endpointOverride) {
+ $res['endpointOverride'] = $this->endpointOverride;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return OpenApiRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['query'])) {
+ $model->query = $map['query'];
+ }
+ if (isset($map['body'])) {
+ $model->body = $map['body'];
+ }
+ if (isset($map['stream'])) {
+ $model->stream = $map['stream'];
+ }
+ if (isset($map['hostMap'])) {
+ $model->hostMap = $map['hostMap'];
+ }
+ if (isset($map['endpointOverride'])) {
+ $model->endpointOverride = $map['endpointOverride'];
+ }
+ return $model;
+ }
+ public $headers;
+
+ public $query;
+
+ public $body;
+
+ public $stream;
+
+ public $hostMap;
+
+ public $endpointOverride;
+}
diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/Params.php b/vendor/alibabacloud/darabonba-openapi/src/Models/Params.php
new file mode 100644
index 000000000..3838659f2
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/src/Models/Params.php
@@ -0,0 +1,130 @@
+action, true);
+ Model::validateRequired('version', $this->version, true);
+ Model::validateRequired('protocol', $this->protocol, true);
+ Model::validateRequired('pathname', $this->pathname, true);
+ Model::validateRequired('method', $this->method, true);
+ Model::validateRequired('authType', $this->authType, true);
+ Model::validateRequired('bodyType', $this->bodyType, true);
+ Model::validateRequired('reqBodyType', $this->reqBodyType, true);
+ }
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->action) {
+ $res['action'] = $this->action;
+ }
+ if (null !== $this->version) {
+ $res['version'] = $this->version;
+ }
+ if (null !== $this->protocol) {
+ $res['protocol'] = $this->protocol;
+ }
+ if (null !== $this->pathname) {
+ $res['pathname'] = $this->pathname;
+ }
+ if (null !== $this->method) {
+ $res['method'] = $this->method;
+ }
+ if (null !== $this->authType) {
+ $res['authType'] = $this->authType;
+ }
+ if (null !== $this->bodyType) {
+ $res['bodyType'] = $this->bodyType;
+ }
+ if (null !== $this->reqBodyType) {
+ $res['reqBodyType'] = $this->reqBodyType;
+ }
+ if (null !== $this->style) {
+ $res['style'] = $this->style;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return Params
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['action'])) {
+ $model->action = $map['action'];
+ }
+ if (isset($map['version'])) {
+ $model->version = $map['version'];
+ }
+ if (isset($map['protocol'])) {
+ $model->protocol = $map['protocol'];
+ }
+ if (isset($map['pathname'])) {
+ $model->pathname = $map['pathname'];
+ }
+ if (isset($map['method'])) {
+ $model->method = $map['method'];
+ }
+ if (isset($map['authType'])) {
+ $model->authType = $map['authType'];
+ }
+ if (isset($map['bodyType'])) {
+ $model->bodyType = $map['bodyType'];
+ }
+ if (isset($map['reqBodyType'])) {
+ $model->reqBodyType = $map['reqBodyType'];
+ }
+ if (isset($map['style'])) {
+ $model->style = $map['style'];
+ }
+ return $model;
+ }
+ /**
+ * @var string
+ */
+ public $action;
+
+ /**
+ * @var string
+ */
+ public $version;
+
+ /**
+ * @var string
+ */
+ public $protocol;
+
+ /**
+ * @var string
+ */
+ public $pathname;
+
+ /**
+ * @var string
+ */
+ public $method;
+
+ /**
+ * @var string
+ */
+ public $authType;
+
+ /**
+ * @var string
+ */
+ public $bodyType;
+
+ /**
+ * @var string
+ */
+ public $reqBodyType;
+
+ public $style;
+}
diff --git a/vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php b/vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php
new file mode 100644
index 000000000..24eb57ee3
--- /dev/null
+++ b/vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php
@@ -0,0 +1,1177 @@
+ "ParameterMissing",
+ "message" => "'config' can not be unset"
+ ]);
+ }
+ if (!Utils::empty_($config->accessKeyId) && !Utils::empty_($config->accessKeySecret)) {
+ if (!Utils::empty_($config->securityToken)) {
+ $config->type = "sts";
+ } else {
+ $config->type = "access_key";
+ }
+ $credentialConfig = new Config([
+ "accessKeyId" => $config->accessKeyId,
+ "type" => $config->type,
+ "accessKeySecret" => $config->accessKeySecret
+ ]);
+ $credentialConfig->securityToken = $config->securityToken;
+ $this->_credential = new Credential($credentialConfig);
+ } else if (!Utils::isUnset($config->credential)) {
+ $this->_credential = $config->credential;
+ }
+ $this->_endpoint = $config->endpoint;
+ $this->_endpointType = $config->endpointType;
+ $this->_network = $config->network;
+ $this->_suffix = $config->suffix;
+ $this->_protocol = $config->protocol;
+ $this->_method = $config->method;
+ $this->_regionId = $config->regionId;
+ $this->_userAgent = $config->userAgent;
+ $this->_readTimeout = $config->readTimeout;
+ $this->_connectTimeout = $config->connectTimeout;
+ $this->_httpProxy = $config->httpProxy;
+ $this->_httpsProxy = $config->httpsProxy;
+ $this->_noProxy = $config->noProxy;
+ $this->_socks5Proxy = $config->socks5Proxy;
+ $this->_socks5NetWork = $config->socks5NetWork;
+ $this->_maxIdleConns = $config->maxIdleConns;
+ $this->_signatureVersion = $config->signatureVersion;
+ $this->_signatureAlgorithm = $config->signatureAlgorithm;
+ $this->_globalParameters = $config->globalParameters;
+ $this->_key = $config->key;
+ $this->_cert = $config->cert;
+ $this->_ca = $config->ca;
+ }
+
+ /**
+ * Encapsulate the request and invoke the network
+ * @param string $action api name
+ * @param string $version product version
+ * @param string $protocol http or https
+ * @param string $method e.g. GET
+ * @param string $authType authorization type e.g. AK
+ * @param string $bodyType response body type e.g. String
+ * @param OpenApiRequest $request object of OpenApiRequest
+ * @param RuntimeOptions $runtime which controls some details of call api, such as retry times
+ * @return array the response
+ * @throws TeaError
+ * @throws Exception
+ * @throws TeaUnableRetryError
+ */
+ public function doRPCRequest($action, $version, $protocol, $method, $authType, $bodyType, $request, $runtime)
+ {
+ $request->validate();
+ $runtime->validate();
+ $_runtime = [
+ "timeouted" => "retry",
+ "key" => Utils::defaultString($runtime->key, $this->_key),
+ "cert" => Utils::defaultString($runtime->cert, $this->_cert),
+ "ca" => Utils::defaultString($runtime->ca, $this->_ca),
+ "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout),
+ "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout),
+ "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy),
+ "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy),
+ "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy),
+ "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy),
+ "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork),
+ "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns),
+ "retry" => [
+ "retryable" => $runtime->autoretry,
+ "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3)
+ ],
+ "backoff" => [
+ "policy" => Utils::defaultString($runtime->backoffPolicy, "no"),
+ "period" => Utils::defaultNumber($runtime->backoffPeriod, 1)
+ ],
+ "ignoreSSL" => $runtime->ignoreSSL
+ ];
+ $_lastRequest = null;
+ $_lastException = null;
+ $_now = time();
+ $_retryTimes = 0;
+ while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) {
+ if ($_retryTimes > 0) {
+ $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes);
+ if ($_backoffTime > 0) {
+ Tea::sleep($_backoffTime);
+ }
+ }
+ $_retryTimes = $_retryTimes + 1;
+ try {
+ $_request = new Request();
+ $_request->protocol = Utils::defaultString($this->_protocol, $protocol);
+ $_request->method = $method;
+ $_request->pathname = "/";
+ $globalQueries = [];
+ $globalHeaders = [];
+ if (!Utils::isUnset($this->_globalParameters)) {
+ $globalParams = $this->_globalParameters;
+ if (!Utils::isUnset($globalParams->queries)) {
+ $globalQueries = $globalParams->queries;
+ }
+ if (!Utils::isUnset($globalParams->headers)) {
+ $globalHeaders = $globalParams->headers;
+ }
+ }
+ $_request->query = Tea::merge([
+ "Action" => $action,
+ "Format" => "json",
+ "Version" => $version,
+ "Timestamp" => OpenApiUtilClient::getTimestamp(),
+ "SignatureNonce" => Utils::getNonce()
+ ], $globalQueries, $request->query);
+ $headers = $this->getRpcHeaders();
+ if (Utils::isUnset($headers)) {
+ // endpoint is setted in product client
+ $_request->headers = Tea::merge([
+ "host" => $this->_endpoint,
+ "x-acs-version" => $version,
+ "x-acs-action" => $action,
+ "user-agent" => $this->getUserAgent()
+ ], $globalHeaders);
+ } else {
+ $_request->headers = Tea::merge([
+ "host" => $this->_endpoint,
+ "x-acs-version" => $version,
+ "x-acs-action" => $action,
+ "user-agent" => $this->getUserAgent()
+ ], $globalHeaders, $headers);
+ }
+ if (!Utils::isUnset($request->body)) {
+ $m = Utils::assertAsMap($request->body);
+ $tmp = Utils::anyifyMapValue(OpenApiUtilClient::query($m));
+ $_request->body = Utils::toFormString($tmp);
+ $_request->headers["content-type"] = "application/x-www-form-urlencoded";
+ }
+ if (!Utils::equalString($authType, "Anonymous")) {
+ $accessKeyId = $this->getAccessKeyId();
+ $accessKeySecret = $this->getAccessKeySecret();
+ $securityToken = $this->getSecurityToken();
+ if (!Utils::empty_($securityToken)) {
+ $_request->query["SecurityToken"] = $securityToken;
+ }
+ $_request->query["SignatureMethod"] = "HMAC-SHA1";
+ $_request->query["SignatureVersion"] = "1.0";
+ $_request->query["AccessKeyId"] = $accessKeyId;
+ $t = null;
+ if (!Utils::isUnset($request->body)) {
+ $t = Utils::assertAsMap($request->body);
+ }
+ $signedParam = Tea::merge($_request->query, OpenApiUtilClient::query($t));
+ $_request->query["Signature"] = OpenApiUtilClient::getRPCSignature($signedParam, $_request->method, $accessKeySecret);
+ }
+ $_lastRequest = $_request;
+ $_response = Tea::send($_request, $_runtime);
+ if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) {
+ $_res = Utils::readAsJSON($_response->body);
+ $err = Utils::assertAsMap($_res);
+ $requestId = self::defaultAny(@$err["RequestId"], @$err["requestId"]);
+ @$err["statusCode"] = $_response->statusCode;
+ throw new TeaError([
+ "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "",
+ "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) ($requestId) . "",
+ "data" => $err,
+ "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "",
+ "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"])
+ ]);
+ }
+ if (Utils::equalString($bodyType, "binary")) {
+ $resp = [
+ "body" => $_response->body,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ return $resp;
+ } else if (Utils::equalString($bodyType, "byte")) {
+ $byt = Utils::readAsBytes($_response->body);
+ return [
+ "body" => $byt,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "string")) {
+ $str = Utils::readAsString($_response->body);
+ return [
+ "body" => $str,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "json")) {
+ $obj = Utils::readAsJSON($_response->body);
+ $res = Utils::assertAsMap($obj);
+ return [
+ "body" => $res,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "array")) {
+ $arr = Utils::readAsJSON($_response->body);
+ return [
+ "body" => $arr,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else {
+ return [
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ }
+ } catch (Exception $e) {
+ if (!($e instanceof TeaError)) {
+ $e = new TeaError([], $e->getMessage(), $e->getCode(), $e);
+ }
+ if (Tea::isRetryable($e)) {
+ $_lastException = $e;
+ continue;
+ }
+ throw $e;
+ }
+ }
+ throw new TeaUnableRetryError($_lastRequest, $_lastException);
+ }
+
+ /**
+ * Encapsulate the request and invoke the network
+ * @param string $action api name
+ * @param string $version product version
+ * @param string $protocol http or https
+ * @param string $method e.g. GET
+ * @param string $authType authorization type e.g. AK
+ * @param string $pathname pathname of every api
+ * @param string $bodyType response body type e.g. String
+ * @param OpenApiRequest $request object of OpenApiRequest
+ * @param RuntimeOptions $runtime which controls some details of call api, such as retry times
+ * @return array the response
+ * @throws TeaError
+ * @throws Exception
+ * @throws TeaUnableRetryError
+ */
+ public function doROARequest($action, $version, $protocol, $method, $authType, $pathname, $bodyType, $request, $runtime)
+ {
+ $request->validate();
+ $runtime->validate();
+ $_runtime = [
+ "timeouted" => "retry",
+ "key" => Utils::defaultString($runtime->key, $this->_key),
+ "cert" => Utils::defaultString($runtime->cert, $this->_cert),
+ "ca" => Utils::defaultString($runtime->ca, $this->_ca),
+ "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout),
+ "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout),
+ "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy),
+ "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy),
+ "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy),
+ "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy),
+ "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork),
+ "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns),
+ "retry" => [
+ "retryable" => $runtime->autoretry,
+ "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3)
+ ],
+ "backoff" => [
+ "policy" => Utils::defaultString($runtime->backoffPolicy, "no"),
+ "period" => Utils::defaultNumber($runtime->backoffPeriod, 1)
+ ],
+ "ignoreSSL" => $runtime->ignoreSSL
+ ];
+ $_lastRequest = null;
+ $_lastException = null;
+ $_now = time();
+ $_retryTimes = 0;
+ while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) {
+ if ($_retryTimes > 0) {
+ $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes);
+ if ($_backoffTime > 0) {
+ Tea::sleep($_backoffTime);
+ }
+ }
+ $_retryTimes = $_retryTimes + 1;
+ try {
+ $_request = new Request();
+ $_request->protocol = Utils::defaultString($this->_protocol, $protocol);
+ $_request->method = $method;
+ $_request->pathname = $pathname;
+ $globalQueries = [];
+ $globalHeaders = [];
+ if (!Utils::isUnset($this->_globalParameters)) {
+ $globalParams = $this->_globalParameters;
+ if (!Utils::isUnset($globalParams->queries)) {
+ $globalQueries = $globalParams->queries;
+ }
+ if (!Utils::isUnset($globalParams->headers)) {
+ $globalHeaders = $globalParams->headers;
+ }
+ }
+ $_request->headers = Tea::merge([
+ "date" => Utils::getDateUTCString(),
+ "host" => $this->_endpoint,
+ "accept" => "application/json",
+ "x-acs-signature-nonce" => Utils::getNonce(),
+ "x-acs-signature-method" => "HMAC-SHA1",
+ "x-acs-signature-version" => "1.0",
+ "x-acs-version" => $version,
+ "x-acs-action" => $action,
+ "user-agent" => Utils::getUserAgent($this->_userAgent)
+ ], $globalHeaders, $request->headers);
+ if (!Utils::isUnset($request->body)) {
+ $_request->body = Utils::toJSONString($request->body);
+ $_request->headers["content-type"] = "application/json; charset=utf-8";
+ }
+ $_request->query = $globalQueries;
+ if (!Utils::isUnset($request->query)) {
+ $_request->query = Tea::merge($_request->query, $request->query);
+ }
+ if (!Utils::equalString($authType, "Anonymous")) {
+ $accessKeyId = $this->getAccessKeyId();
+ $accessKeySecret = $this->getAccessKeySecret();
+ $securityToken = $this->getSecurityToken();
+ if (!Utils::empty_($securityToken)) {
+ $_request->headers["x-acs-accesskey-id"] = $accessKeyId;
+ $_request->headers["x-acs-security-token"] = $securityToken;
+ }
+ $stringToSign = OpenApiUtilClient::getStringToSign($_request);
+ $_request->headers["authorization"] = "acs " . $accessKeyId . ":" . OpenApiUtilClient::getROASignature($stringToSign, $accessKeySecret) . "";
+ }
+ $_lastRequest = $_request;
+ $_response = Tea::send($_request, $_runtime);
+ if (Utils::equalNumber($_response->statusCode, 204)) {
+ return [
+ "headers" => $_response->headers
+ ];
+ }
+ if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) {
+ $_res = Utils::readAsJSON($_response->body);
+ $err = Utils::assertAsMap($_res);
+ $requestId = self::defaultAny(@$err["RequestId"], @$err["requestId"]);
+ $requestId = self::defaultAny($requestId, @$err["requestid"]);
+ @$err["statusCode"] = $_response->statusCode;
+ throw new TeaError([
+ "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "",
+ "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) ($requestId) . "",
+ "data" => $err,
+ "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "",
+ "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"])
+ ]);
+ }
+ if (Utils::equalString($bodyType, "binary")) {
+ $resp = [
+ "body" => $_response->body,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ return $resp;
+ } else if (Utils::equalString($bodyType, "byte")) {
+ $byt = Utils::readAsBytes($_response->body);
+ return [
+ "body" => $byt,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "string")) {
+ $str = Utils::readAsString($_response->body);
+ return [
+ "body" => $str,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "json")) {
+ $obj = Utils::readAsJSON($_response->body);
+ $res = Utils::assertAsMap($obj);
+ return [
+ "body" => $res,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "array")) {
+ $arr = Utils::readAsJSON($_response->body);
+ return [
+ "body" => $arr,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else {
+ return [
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ }
+ } catch (Exception $e) {
+ if (!($e instanceof TeaError)) {
+ $e = new TeaError([], $e->getMessage(), $e->getCode(), $e);
+ }
+ if (Tea::isRetryable($e)) {
+ $_lastException = $e;
+ continue;
+ }
+ throw $e;
+ }
+ }
+ throw new TeaUnableRetryError($_lastRequest, $_lastException);
+ }
+
+ /**
+ * Encapsulate the request and invoke the network with form body
+ * @param string $action api name
+ * @param string $version product version
+ * @param string $protocol http or https
+ * @param string $method e.g. GET
+ * @param string $authType authorization type e.g. AK
+ * @param string $pathname pathname of every api
+ * @param string $bodyType response body type e.g. String
+ * @param OpenApiRequest $request object of OpenApiRequest
+ * @param RuntimeOptions $runtime which controls some details of call api, such as retry times
+ * @return array the response
+ * @throws TeaError
+ * @throws Exception
+ * @throws TeaUnableRetryError
+ */
+ public function doROARequestWithForm($action, $version, $protocol, $method, $authType, $pathname, $bodyType, $request, $runtime)
+ {
+ $request->validate();
+ $runtime->validate();
+ $_runtime = [
+ "timeouted" => "retry",
+ "key" => Utils::defaultString($runtime->key, $this->_key),
+ "cert" => Utils::defaultString($runtime->cert, $this->_cert),
+ "ca" => Utils::defaultString($runtime->ca, $this->_ca),
+ "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout),
+ "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout),
+ "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy),
+ "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy),
+ "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy),
+ "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy),
+ "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork),
+ "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns),
+ "retry" => [
+ "retryable" => $runtime->autoretry,
+ "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3)
+ ],
+ "backoff" => [
+ "policy" => Utils::defaultString($runtime->backoffPolicy, "no"),
+ "period" => Utils::defaultNumber($runtime->backoffPeriod, 1)
+ ],
+ "ignoreSSL" => $runtime->ignoreSSL
+ ];
+ $_lastRequest = null;
+ $_lastException = null;
+ $_now = time();
+ $_retryTimes = 0;
+ while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) {
+ if ($_retryTimes > 0) {
+ $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes);
+ if ($_backoffTime > 0) {
+ Tea::sleep($_backoffTime);
+ }
+ }
+ $_retryTimes = $_retryTimes + 1;
+ try {
+ $_request = new Request();
+ $_request->protocol = Utils::defaultString($this->_protocol, $protocol);
+ $_request->method = $method;
+ $_request->pathname = $pathname;
+ $globalQueries = [];
+ $globalHeaders = [];
+ if (!Utils::isUnset($this->_globalParameters)) {
+ $globalParams = $this->_globalParameters;
+ if (!Utils::isUnset($globalParams->queries)) {
+ $globalQueries = $globalParams->queries;
+ }
+ if (!Utils::isUnset($globalParams->headers)) {
+ $globalHeaders = $globalParams->headers;
+ }
+ }
+ $_request->headers = Tea::merge([
+ "date" => Utils::getDateUTCString(),
+ "host" => $this->_endpoint,
+ "accept" => "application/json",
+ "x-acs-signature-nonce" => Utils::getNonce(),
+ "x-acs-signature-method" => "HMAC-SHA1",
+ "x-acs-signature-version" => "1.0",
+ "x-acs-version" => $version,
+ "x-acs-action" => $action,
+ "user-agent" => Utils::getUserAgent($this->_userAgent)
+ ], $globalHeaders, $request->headers);
+ if (!Utils::isUnset($request->body)) {
+ $m = Utils::assertAsMap($request->body);
+ $_request->body = OpenApiUtilClient::toForm($m);
+ $_request->headers["content-type"] = "application/x-www-form-urlencoded";
+ }
+ $_request->query = $globalQueries;
+ if (!Utils::isUnset($request->query)) {
+ $_request->query = Tea::merge($_request->query, $request->query);
+ }
+ if (!Utils::equalString($authType, "Anonymous")) {
+ $accessKeyId = $this->getAccessKeyId();
+ $accessKeySecret = $this->getAccessKeySecret();
+ $securityToken = $this->getSecurityToken();
+ if (!Utils::empty_($securityToken)) {
+ $_request->headers["x-acs-accesskey-id"] = $accessKeyId;
+ $_request->headers["x-acs-security-token"] = $securityToken;
+ }
+ $stringToSign = OpenApiUtilClient::getStringToSign($_request);
+ $_request->headers["authorization"] = "acs " . $accessKeyId . ":" . OpenApiUtilClient::getROASignature($stringToSign, $accessKeySecret) . "";
+ }
+ $_lastRequest = $_request;
+ $_response = Tea::send($_request, $_runtime);
+ if (Utils::equalNumber($_response->statusCode, 204)) {
+ return [
+ "headers" => $_response->headers
+ ];
+ }
+ if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) {
+ $_res = Utils::readAsJSON($_response->body);
+ $err = Utils::assertAsMap($_res);
+ @$err["statusCode"] = $_response->statusCode;
+ throw new TeaError([
+ "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "",
+ "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) (self::defaultAny(@$err["RequestId"], @$err["requestId"])) . "",
+ "data" => $err,
+ "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "",
+ "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"])
+ ]);
+ }
+ if (Utils::equalString($bodyType, "binary")) {
+ $resp = [
+ "body" => $_response->body,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ return $resp;
+ } else if (Utils::equalString($bodyType, "byte")) {
+ $byt = Utils::readAsBytes($_response->body);
+ return [
+ "body" => $byt,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "string")) {
+ $str = Utils::readAsString($_response->body);
+ return [
+ "body" => $str,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "json")) {
+ $obj = Utils::readAsJSON($_response->body);
+ $res = Utils::assertAsMap($obj);
+ return [
+ "body" => $res,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($bodyType, "array")) {
+ $arr = Utils::readAsJSON($_response->body);
+ return [
+ "body" => $arr,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else {
+ return [
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ }
+ } catch (Exception $e) {
+ if (!($e instanceof TeaError)) {
+ $e = new TeaError([], $e->getMessage(), $e->getCode(), $e);
+ }
+ if (Tea::isRetryable($e)) {
+ $_lastException = $e;
+ continue;
+ }
+ throw $e;
+ }
+ }
+ throw new TeaUnableRetryError($_lastRequest, $_lastException);
+ }
+
+ /**
+ * Encapsulate the request and invoke the network
+ * @param Params $params
+ * @param OpenApiRequest $request object of OpenApiRequest
+ * @param RuntimeOptions $runtime which controls some details of call api, such as retry times
+ * @return array the response
+ * @throws TeaError
+ * @throws Exception
+ * @throws TeaUnableRetryError
+ */
+ public function doRequest($params, $request, $runtime)
+ {
+ $params->validate();
+ $request->validate();
+ $runtime->validate();
+ $_runtime = [
+ "timeouted" => "retry",
+ "key" => Utils::defaultString($runtime->key, $this->_key),
+ "cert" => Utils::defaultString($runtime->cert, $this->_cert),
+ "ca" => Utils::defaultString($runtime->ca, $this->_ca),
+ "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout),
+ "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout),
+ "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy),
+ "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy),
+ "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy),
+ "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy),
+ "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork),
+ "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns),
+ "retry" => [
+ "retryable" => $runtime->autoretry,
+ "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3)
+ ],
+ "backoff" => [
+ "policy" => Utils::defaultString($runtime->backoffPolicy, "no"),
+ "period" => Utils::defaultNumber($runtime->backoffPeriod, 1)
+ ],
+ "ignoreSSL" => $runtime->ignoreSSL
+ ];
+ $_lastRequest = null;
+ $_lastException = null;
+ $_now = time();
+ $_retryTimes = 0;
+ while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) {
+ if ($_retryTimes > 0) {
+ $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes);
+ if ($_backoffTime > 0) {
+ Tea::sleep($_backoffTime);
+ }
+ }
+ $_retryTimes = $_retryTimes + 1;
+ try {
+ $_request = new Request();
+ $_request->protocol = Utils::defaultString($this->_protocol, $params->protocol);
+ $_request->method = $params->method;
+ $_request->pathname = $params->pathname;
+ $globalQueries = [];
+ $globalHeaders = [];
+ if (!Utils::isUnset($this->_globalParameters)) {
+ $globalParams = $this->_globalParameters;
+ if (!Utils::isUnset($globalParams->queries)) {
+ $globalQueries = $globalParams->queries;
+ }
+ if (!Utils::isUnset($globalParams->headers)) {
+ $globalHeaders = $globalParams->headers;
+ }
+ }
+ $_request->query = Tea::merge($globalQueries, $request->query);
+ // endpoint is setted in product client
+ $_request->headers = Tea::merge([
+ "host" => $this->_endpoint,
+ "x-acs-version" => $params->version,
+ "x-acs-action" => $params->action,
+ "user-agent" => $this->getUserAgent(),
+ "x-acs-date" => OpenApiUtilClient::getTimestamp(),
+ "x-acs-signature-nonce" => Utils::getNonce(),
+ "accept" => "application/json"
+ ], $globalHeaders, $request->headers);
+ if (Utils::equalString($params->style, "RPC")) {
+ $headers = $this->getRpcHeaders();
+ if (!Utils::isUnset($headers)) {
+ $_request->headers = Tea::merge($_request->headers, $headers);
+ }
+ }
+ $signatureAlgorithm = Utils::defaultString($this->_signatureAlgorithm, "ACS3-HMAC-SHA256");
+ $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash(Utils::toBytes(""), $signatureAlgorithm));
+ if (!Utils::isUnset($request->stream)) {
+ $tmp = Utils::readAsBytes($request->stream);
+ $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash($tmp, $signatureAlgorithm));
+ $_request->body = $tmp;
+ $_request->headers["content-type"] = "application/octet-stream";
+ } else {
+ if (!Utils::isUnset($request->body)) {
+ if (Utils::equalString($params->reqBodyType, "json")) {
+ $jsonObj = Utils::toJSONString($request->body);
+ $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash(Utils::toBytes($jsonObj), $signatureAlgorithm));
+ $_request->body = $jsonObj;
+ $_request->headers["content-type"] = "application/json; charset=utf-8";
+ } else {
+ $m = Utils::assertAsMap($request->body);
+ $formObj = OpenApiUtilClient::toForm($m);
+ $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash(Utils::toBytes($formObj), $signatureAlgorithm));
+ $_request->body = $formObj;
+ $_request->headers["content-type"] = "application/x-www-form-urlencoded";
+ }
+ }
+ }
+ $_request->headers["x-acs-content-sha256"] = $hashedRequestPayload;
+ if (!Utils::equalString($params->authType, "Anonymous")) {
+ $authType = $this->getType();
+ if (Utils::equalString($authType, "bearer")) {
+ $bearerToken = $this->getBearerToken();
+ $_request->headers["x-acs-bearer-token"] = $bearerToken;
+ } else {
+ $accessKeyId = $this->getAccessKeyId();
+ $accessKeySecret = $this->getAccessKeySecret();
+ $securityToken = $this->getSecurityToken();
+ if (!Utils::empty_($securityToken)) {
+ $_request->headers["x-acs-accesskey-id"] = $accessKeyId;
+ $_request->headers["x-acs-security-token"] = $securityToken;
+ }
+ $_request->headers["Authorization"] = OpenApiUtilClient::getAuthorization($_request, $signatureAlgorithm, $hashedRequestPayload, $accessKeyId, $accessKeySecret);
+ }
+ }
+ $_lastRequest = $_request;
+ $_response = Tea::send($_request, $_runtime);
+ if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) {
+ $_res = Utils::readAsJSON($_response->body);
+ $err = Utils::assertAsMap($_res);
+ @$err["statusCode"] = $_response->statusCode;
+ throw new TeaError([
+ "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "",
+ "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) (self::defaultAny(@$err["RequestId"], @$err["requestId"])) . "",
+ "data" => $err,
+ "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "",
+ "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"])
+ ]);
+ }
+ if (Utils::equalString($params->bodyType, "binary")) {
+ $resp = [
+ "body" => $_response->body,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ return $resp;
+ } else if (Utils::equalString($params->bodyType, "byte")) {
+ $byt = Utils::readAsBytes($_response->body);
+ return [
+ "body" => $byt,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($params->bodyType, "string")) {
+ $str = Utils::readAsString($_response->body);
+ return [
+ "body" => $str,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($params->bodyType, "json")) {
+ $obj = Utils::readAsJSON($_response->body);
+ $res = Utils::assertAsMap($obj);
+ return [
+ "body" => $res,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else if (Utils::equalString($params->bodyType, "array")) {
+ $arr = Utils::readAsJSON($_response->body);
+ return [
+ "body" => $arr,
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ } else {
+ return [
+ "headers" => $_response->headers,
+ "statusCode" => $_response->statusCode
+ ];
+ }
+ } catch (Exception $e) {
+ if (!($e instanceof TeaError)) {
+ $e = new TeaError([], $e->getMessage(), $e->getCode(), $e);
+ }
+ if (Tea::isRetryable($e)) {
+ $_lastException = $e;
+ continue;
+ }
+ throw $e;
+ }
+ }
+ throw new TeaUnableRetryError($_lastRequest, $_lastException);
+ }
+
+ /**
+ * Encapsulate the request and invoke the network
+ * @param Params $params
+ * @param OpenApiRequest $request object of OpenApiRequest
+ * @param RuntimeOptions $runtime which controls some details of call api, such as retry times
+ * @return array the response
+ * @throws TeaError
+ * @throws Exception
+ * @throws TeaUnableRetryError
+ */
+ public function execute($params, $request, $runtime)
+ {
+ $params->validate();
+ $request->validate();
+ $runtime->validate();
+ $_runtime = [
+ "timeouted" => "retry",
+ "key" => Utils::defaultString($runtime->key, $this->_key),
+ "cert" => Utils::defaultString($runtime->cert, $this->_cert),
+ "ca" => Utils::defaultString($runtime->ca, $this->_ca),
+ "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout),
+ "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout),
+ "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy),
+ "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy),
+ "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy),
+ "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy),
+ "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork),
+ "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns),
+ "retry" => [
+ "retryable" => $runtime->autoretry,
+ "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3)
+ ],
+ "backoff" => [
+ "policy" => Utils::defaultString($runtime->backoffPolicy, "no"),
+ "period" => Utils::defaultNumber($runtime->backoffPeriod, 1)
+ ],
+ "ignoreSSL" => $runtime->ignoreSSL
+ ];
+ $_lastRequest = null;
+ $_lastException = null;
+ $_now = time();
+ $_retryTimes = 0;
+ while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) {
+ if ($_retryTimes > 0) {
+ $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes);
+ if ($_backoffTime > 0) {
+ Tea::sleep($_backoffTime);
+ }
+ }
+ $_retryTimes = $_retryTimes + 1;
+ try {
+ $_request = new Request();
+ // spi = new Gateway();//Gateway implements SPI,这一步在产品 SDK 中实例化
+ $headers = $this->getRpcHeaders();
+ $globalQueries = [];
+ $globalHeaders = [];
+ if (!Utils::isUnset($this->_globalParameters)) {
+ $globalParams = $this->_globalParameters;
+ if (!Utils::isUnset($globalParams->queries)) {
+ $globalQueries = $globalParams->queries;
+ }
+ if (!Utils::isUnset($globalParams->headers)) {
+ $globalHeaders = $globalParams->headers;
+ }
+ }
+ $requestContext = new \Darabonba\GatewaySpi\Models\InterceptorContext\request([
+ "headers" => Tea::merge($globalHeaders, $request->headers, $headers),
+ "query" => Tea::merge($globalQueries, $request->query),
+ "body" => $request->body,
+ "stream" => $request->stream,
+ "hostMap" => $request->hostMap,
+ "pathname" => $params->pathname,
+ "productId" => $this->_productId,
+ "action" => $params->action,
+ "version" => $params->version,
+ "protocol" => Utils::defaultString($this->_protocol, $params->protocol),
+ "method" => Utils::defaultString($this->_method, $params->method),
+ "authType" => $params->authType,
+ "bodyType" => $params->bodyType,
+ "reqBodyType" => $params->reqBodyType,
+ "style" => $params->style,
+ "credential" => $this->_credential,
+ "signatureVersion" => $this->_signatureVersion,
+ "signatureAlgorithm" => $this->_signatureAlgorithm,
+ "userAgent" => $this->getUserAgent()
+ ]);
+ $configurationContext = new configuration([
+ "regionId" => $this->_regionId,
+ "endpoint" => Utils::defaultString($request->endpointOverride, $this->_endpoint),
+ "endpointRule" => $this->_endpointRule,
+ "endpointMap" => $this->_endpointMap,
+ "endpointType" => $this->_endpointType,
+ "network" => $this->_network,
+ "suffix" => $this->_suffix
+ ]);
+ $interceptorContext = new InterceptorContext([
+ "request" => $requestContext,
+ "configuration" => $configurationContext
+ ]);
+ $attributeMap = new AttributeMap([]);
+ // 1. spi.modifyConfiguration(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap);
+ $this->_spi->modifyConfiguration($interceptorContext, $attributeMap);
+ // 2. spi.modifyRequest(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap);
+ $this->_spi->modifyRequest($interceptorContext, $attributeMap);
+ $_request->protocol = $interceptorContext->request->protocol;
+ $_request->method = $interceptorContext->request->method;
+ $_request->pathname = $interceptorContext->request->pathname;
+ $_request->query = $interceptorContext->request->query;
+ $_request->body = $interceptorContext->request->stream;
+ $_request->headers = $interceptorContext->request->headers;
+ $_lastRequest = $_request;
+ $_response = Tea::send($_request, $_runtime);
+ $responseContext = new response([
+ "statusCode" => $_response->statusCode,
+ "headers" => $_response->headers,
+ "body" => $_response->body
+ ]);
+ $interceptorContext->response = $responseContext;
+ // 3. spi.modifyResponse(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap);
+ $this->_spi->modifyResponse($interceptorContext, $attributeMap);
+ return [
+ "headers" => $interceptorContext->response->headers,
+ "statusCode" => $interceptorContext->response->statusCode,
+ "body" => $interceptorContext->response->deserializedBody
+ ];
+ } catch (Exception $e) {
+ if (!($e instanceof TeaError)) {
+ $e = new TeaError([], $e->getMessage(), $e->getCode(), $e);
+ }
+ if (Tea::isRetryable($e)) {
+ $_lastException = $e;
+ continue;
+ }
+ throw $e;
+ }
+ }
+ throw new TeaUnableRetryError($_lastRequest, $_lastException);
+ }
+
+ /**
+ * @param Params $params
+ * @param OpenApiRequest $request
+ * @param RuntimeOptions $runtime
+ * @return array
+ * @throws TeaError
+ */
+ public function callApi($params, $request, $runtime)
+ {
+ if (Utils::isUnset($params)) {
+ throw new TeaError([
+ "code" => "ParameterMissing",
+ "message" => "'params' can not be unset"
+ ]);
+ }
+ if (Utils::isUnset($this->_signatureAlgorithm) || !Utils::equalString($this->_signatureAlgorithm, "v2")) {
+ return $this->doRequest($params, $request, $runtime);
+ } else if (Utils::equalString($params->style, "ROA") && Utils::equalString($params->reqBodyType, "json")) {
+ return $this->doROARequest($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->pathname, $params->bodyType, $request, $runtime);
+ } else if (Utils::equalString($params->style, "ROA")) {
+ return $this->doROARequestWithForm($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->pathname, $params->bodyType, $request, $runtime);
+ } else {
+ return $this->doRPCRequest($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->bodyType, $request, $runtime);
+ }
+ }
+
+ /**
+ * Get user agent
+ * @return string user agent
+ */
+ public function getUserAgent()
+ {
+ $userAgent = Utils::getUserAgent($this->_userAgent);
+ return $userAgent;
+ }
+
+ /**
+ * Get accesskey id by using credential
+ * @return string accesskey id
+ */
+ public function getAccessKeyId()
+ {
+ if (Utils::isUnset($this->_credential)) {
+ return '';
+ }
+ $accessKeyId = $this->_credential->getAccessKeyId();
+ return $accessKeyId;
+ }
+
+ /**
+ * Get accesskey secret by using credential
+ * @return string accesskey secret
+ */
+ public function getAccessKeySecret()
+ {
+ if (Utils::isUnset($this->_credential)) {
+ return '';
+ }
+ $secret = $this->_credential->getAccessKeySecret();
+ return $secret;
+ }
+
+ /**
+ * Get security token by using credential
+ * @return string security token
+ */
+ public function getSecurityToken()
+ {
+ if (Utils::isUnset($this->_credential)) {
+ return '';
+ }
+ $token = $this->_credential->getSecurityToken();
+ return $token;
+ }
+
+ /**
+ * Get bearer token by credential
+ * @return string bearer token
+ */
+ public function getBearerToken()
+ {
+ if (Utils::isUnset($this->_credential)) {
+ return '';
+ }
+ $token = $this->_credential->getBearerToken();
+ return $token;
+ }
+
+ /**
+ * Get credential type by credential
+ * @return string credential type e.g. access_key
+ */
+ public function getType()
+ {
+ if (Utils::isUnset($this->_credential)) {
+ return '';
+ }
+ $authType = $this->_credential->getType();
+ return $authType;
+ }
+
+ /**
+ * If inputValue is not null, return it or return defaultValue
+ * @param mixed $inputValue users input value
+ * @param mixed $defaultValue default value
+ * @return any the final result
+ */
+ public static function defaultAny($inputValue, $defaultValue)
+ {
+ if (Utils::isUnset($inputValue)) {
+ return $defaultValue;
+ }
+ return $inputValue;
+ }
+
+ /**
+ * If the endpointRule and config.endpoint are empty, throw error
+ * @param \Darabonba\OpenApi\Models\Config $config config contains the necessary information to create a client
+ * @return void
+ * @throws TeaError
+ */
+ public function checkConfig($config)
+ {
+ if (Utils::empty_($this->_endpointRule) && Utils::empty_($config->endpoint)) {
+ throw new TeaError([
+ "code" => "ParameterMissing",
+ "message" => "'config.endpoint' can not be empty"
+ ]);
+ }
+ }
+
+ /**
+ * set gateway client
+ * @param Client $spi
+ * @return void
+ */
+ public function setGatewayClient($spi)
+ {
+ $this->_spi = $spi;
+ }
+
+ /**
+ * set RPC header for debug
+ * @param string[] $headers headers for debug, this header can be used only once.
+ * @return void
+ */
+ public function setRpcHeaders($headers)
+ {
+ $this->_headers = $headers;
+ }
+
+ /**
+ * get RPC header for debug
+ * @return array
+ */
+ public function getRpcHeaders()
+ {
+ $headers = $this->_headers;
+ $this->_headers = null;
+ return $headers;
+ }
+}
diff --git a/vendor/alibabacloud/endpoint-util/.gitignore b/vendor/alibabacloud/endpoint-util/.gitignore
new file mode 100644
index 000000000..0ee6c2840
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/.gitignore
@@ -0,0 +1,13 @@
+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
+
+.idea
+.DS_Store
+
+cache/
+*.cache
+runtime/
diff --git a/vendor/alibabacloud/endpoint-util/.php_cs.dist b/vendor/alibabacloud/endpoint-util/.php_cs.dist
new file mode 100644
index 000000000..8617ec2fa
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/.php_cs.dist
@@ -0,0 +1,65 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/endpoint-util/LICENSE b/vendor/alibabacloud/endpoint-util/LICENSE
new file mode 100644
index 000000000..ec13fccd3
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/LICENSE
@@ -0,0 +1,13 @@
+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.
diff --git a/vendor/alibabacloud/endpoint-util/README-CN.md b/vendor/alibabacloud/endpoint-util/README-CN.md
new file mode 100644
index 000000000..80374a492
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/README-CN.md
@@ -0,0 +1,31 @@
+English | [简体中文](README-CN.md)
+
+
+
+## Alibaba Cloud Endpoint Library for PHP
+
+## Installation
+
+### Composer
+
+```bash
+composer require alibabacloud/endpoint-util
+```
+
+## Issues
+
+[Opening an Issue](https://github.com/aliyun/endpoint-util/issues/new), Issues not conforming to the guidelines may be closed immediately.
+
+## Changelog
+
+Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
+
+## References
+
+* [Latest Release](https://github.com/aliyun/endpoint-util)
+
+## License
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/endpoint-util/README.md b/vendor/alibabacloud/endpoint-util/README.md
new file mode 100644
index 000000000..3cd5898a2
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/README.md
@@ -0,0 +1,31 @@
+[English](README.md) | 简体中文
+
+
+
+## Alibaba Cloud Endpoint Library for PHP
+
+## 安装
+
+### Composer
+
+```bash
+composer require alibabacloud/endpoint-util
+```
+
+## 问题
+
+[提交 Issue](https://github.com/aliyun/endpoint-util/issues/new),不符合指南的问题可能会立即关闭。
+
+## 发行说明
+
+每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
+
+## 相关
+
+* [最新源码](https://github.com/aliyun/endpoint-util)
+
+## 许可证
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/endpoint-util/composer.json b/vendor/alibabacloud/endpoint-util/composer.json
new file mode 100644
index 000000000..d22ce335d
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "alibabacloud/endpoint-util",
+ "description": "Alibaba Cloud Endpoint Library for PHP",
+ "type": "library",
+ "license": "Apache-2.0",
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "require": {
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35|^5.4.3"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Endpoint\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "AlibabaCloud\\Endpoint\\Tests\\": "tests"
+ }
+ },
+ "scripts": {
+ "fixer": "php-cs-fixer fix ./",
+ "test": [
+ "@clearCache",
+ "./vendor/bin/phpunit --colors=always"
+ ],
+ "clearCache": "rm -rf cache/*"
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true
+}
\ No newline at end of file
diff --git a/vendor/alibabacloud/endpoint-util/phpunit.xml b/vendor/alibabacloud/endpoint-util/phpunit.xml
new file mode 100644
index 000000000..8306a799a
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/phpunit.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+ tests
+
+
+ ./tests/Unit
+
+
+
+
+
+ integration
+
+
+
+
+
+
+
+
+
+
+
+ ./src
+
+
+
diff --git a/vendor/alibabacloud/endpoint-util/src/Endpoint.php b/vendor/alibabacloud/endpoint-util/src/Endpoint.php
new file mode 100644
index 000000000..5afa676c5
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/src/Endpoint.php
@@ -0,0 +1,61 @@
+..aliyuncs.com';
+ const CENTRAL_RULES = '.aliyuncs.com';
+
+ /**
+ * @param string $product required
+ * @param string $regionId optional It will be required when endpoint type is 'regional'
+ * @param string $endpointType optional regional|central
+ * @param string $network optional
+ * @param string $suffix optional
+ *
+ * @throws \InvalidArgumentException
+ *
+ * @return string
+ */
+ public static function getEndpointRules($product, $regionId, $endpointType = '', $network = '', $suffix = '')
+ {
+ if (empty($product)) {
+ throw new \InvalidArgumentException('Product name cannot be empty.');
+ }
+ $endpoint = self::REGIONAL_RULES;
+ if (self::ENDPOINT_TYPE_REGIONAL === $endpointType) {
+ if (empty($regionId)) {
+ throw new \InvalidArgumentException('RegionId is empty, please set a valid RegionId');
+ }
+ $endpoint = self::render($endpoint, 'region_id', strtolower($regionId));
+ } elseif (self::ENDPOINT_TYPE_CENTRAL === $endpointType) {
+ $endpoint = self::CENTRAL_RULES;
+ } else {
+ throw new \InvalidArgumentException('Invalid EndpointType');
+ }
+ if (!empty($network) && 'public' !== $network) {
+ $endpoint = self::render($endpoint, 'network', '-' . $network);
+ } else {
+ $endpoint = self::render($endpoint, 'network', '');
+ }
+ if (!empty($suffix)) {
+ $endpoint = self::render($endpoint, 'suffix', '-' . $suffix);
+ } else {
+ $endpoint = self::render($endpoint, 'suffix', '');
+ }
+
+ return self::render($endpoint, 'product', strtolower($product));
+ }
+
+ private static function render($str, $tag, $replace)
+ {
+ return str_replace('<' . $tag . '>', $replace, $str);
+ }
+}
diff --git a/vendor/alibabacloud/endpoint-util/tests/EndpointTest.php b/vendor/alibabacloud/endpoint-util/tests/EndpointTest.php
new file mode 100644
index 000000000..e21dcd48a
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/tests/EndpointTest.php
@@ -0,0 +1,58 @@
+expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('Product name cannot be empty.');
+ Endpoint::getEndpointRules('', '', '', '');
+ }
+
+ public function testGetEndpointWhenInvalidEndpointType()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('Invalid EndpointType');
+ Endpoint::getEndpointRules('ecs', '', 'fake endpoint type', '');
+ }
+
+ public function testGetEndpointWhenInvalidRegionId()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('RegionId is empty, please set a valid RegionId');
+ Endpoint::getEndpointRules('ecs', '', Endpoint::ENDPOINT_TYPE_REGIONAL, '');
+ }
+
+ public function testGetEndpointCentral()
+ {
+ $endpoint = Endpoint::getEndpointRules('ecs', '', Endpoint::ENDPOINT_TYPE_CENTRAL);
+ $this->assertEquals('ecs.aliyuncs.com', $endpoint);
+ }
+
+ public function testGetEndpointRegional()
+ {
+ $endpoint = Endpoint::getEndpointRules('ecs', 'cn-hangzhou', Endpoint::ENDPOINT_TYPE_REGIONAL);
+ $this->assertEquals('ecs.cn-hangzhou.aliyuncs.com', $endpoint);
+ }
+
+ public function testGetEndpointRegionalWithNetwork()
+ {
+ $endpoint = Endpoint::getEndpointRules('ecs', 'cn-hangzhou', Endpoint::ENDPOINT_TYPE_REGIONAL, 'internal');
+ $this->assertEquals('ecs-internal.cn-hangzhou.aliyuncs.com', $endpoint);
+ }
+
+ public function testGetEndpointRegionalWithSuffix()
+ {
+ $endpoint = Endpoint::getEndpointRules('ecs', 'cn-hangzhou', Endpoint::ENDPOINT_TYPE_REGIONAL, 'internal', 'test');
+ $this->assertEquals('ecs-test-internal.cn-hangzhou.aliyuncs.com', $endpoint);
+ }
+}
diff --git a/vendor/alibabacloud/endpoint-util/tests/bootstrap.php b/vendor/alibabacloud/endpoint-util/tests/bootstrap.php
new file mode 100644
index 000000000..c62c4e81b
--- /dev/null
+++ b/vendor/alibabacloud/endpoint-util/tests/bootstrap.php
@@ -0,0 +1,3 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/gateway-spi/autoload.php b/vendor/alibabacloud/gateway-spi/autoload.php
new file mode 100644
index 000000000..f48d6cb6d
--- /dev/null
+++ b/vendor/alibabacloud/gateway-spi/autoload.php
@@ -0,0 +1,15 @@
+5.5",
+ "alibabacloud/credentials": "^1.1"
+ },
+ "autoload": {
+ "psr-4": {
+ "Darabonba\\GatewaySpi\\": "src"
+ }
+ },
+ "scripts": {
+ "fixer": "php-cs-fixer fix ./"
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true
+}
\ No newline at end of file
diff --git a/vendor/alibabacloud/gateway-spi/src/Client.php b/vendor/alibabacloud/gateway-spi/src/Client.php
new file mode 100644
index 000000000..7b7b13191
--- /dev/null
+++ b/vendor/alibabacloud/gateway-spi/src/Client.php
@@ -0,0 +1,35 @@
+attributes, true);
+ Model::validateRequired('key', $this->key, true);
+ }
+ public function toMap() {
+ $res = [];
+ if (null !== $this->attributes) {
+ $res['attributes'] = $this->attributes;
+ }
+ if (null !== $this->key) {
+ $res['key'] = $this->key;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return AttributeMap
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['attributes'])){
+ $model->attributes = $map['attributes'];
+ }
+ if(isset($map['key'])){
+ $model->key = $map['key'];
+ }
+ return $model;
+ }
+ /**
+ * @var mixed[]
+ */
+ public $attributes;
+
+ /**
+ * @var string[]
+ */
+ public $key;
+
+}
diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php
new file mode 100644
index 000000000..cc3a43650
--- /dev/null
+++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php
@@ -0,0 +1,63 @@
+request, true);
+ Model::validateRequired('configuration', $this->configuration, true);
+ Model::validateRequired('response', $this->response, true);
+ }
+ public function toMap() {
+ $res = [];
+ if (null !== $this->request) {
+ $res['request'] = null !== $this->request ? $this->request->toMap() : null;
+ }
+ if (null !== $this->configuration) {
+ $res['configuration'] = null !== $this->configuration ? $this->configuration->toMap() : null;
+ }
+ if (null !== $this->response) {
+ $res['response'] = null !== $this->response ? $this->response->toMap() : null;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return InterceptorContext
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['request'])){
+ $model->request = request::fromMap($map['request']);
+ }
+ if(isset($map['configuration'])){
+ $model->configuration = configuration::fromMap($map['configuration']);
+ }
+ if(isset($map['response'])){
+ $model->response = response::fromMap($map['response']);
+ }
+ return $model;
+ }
+ /**
+ * @var request
+ */
+ public $request;
+
+ /**
+ * @var configuration
+ */
+ public $configuration;
+
+ /**
+ * @var response
+ */
+ public $response;
+
+}
diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php
new file mode 100644
index 000000000..02e6f92b8
--- /dev/null
+++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php
@@ -0,0 +1,83 @@
+regionId, true);
+ }
+ public function toMap() {
+ $res = [];
+ if (null !== $this->regionId) {
+ $res['regionId'] = $this->regionId;
+ }
+ if (null !== $this->endpoint) {
+ $res['endpoint'] = $this->endpoint;
+ }
+ if (null !== $this->endpointRule) {
+ $res['endpointRule'] = $this->endpointRule;
+ }
+ if (null !== $this->endpointMap) {
+ $res['endpointMap'] = $this->endpointMap;
+ }
+ if (null !== $this->endpointType) {
+ $res['endpointType'] = $this->endpointType;
+ }
+ if (null !== $this->network) {
+ $res['network'] = $this->network;
+ }
+ if (null !== $this->suffix) {
+ $res['suffix'] = $this->suffix;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return configuration
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['regionId'])){
+ $model->regionId = $map['regionId'];
+ }
+ if(isset($map['endpoint'])){
+ $model->endpoint = $map['endpoint'];
+ }
+ if(isset($map['endpointRule'])){
+ $model->endpointRule = $map['endpointRule'];
+ }
+ if(isset($map['endpointMap'])){
+ $model->endpointMap = $map['endpointMap'];
+ }
+ if(isset($map['endpointType'])){
+ $model->endpointType = $map['endpointType'];
+ }
+ if(isset($map['network'])){
+ $model->network = $map['network'];
+ }
+ if(isset($map['suffix'])){
+ $model->suffix = $map['suffix'];
+ }
+ return $model;
+ }
+ /**
+ * @var string
+ */
+ public $regionId;
+
+ public $endpoint;
+
+ public $endpointRule;
+
+ public $endpointMap;
+
+ public $endpointType;
+
+ public $network;
+
+ public $suffix;
+
+}
diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php
new file mode 100644
index 000000000..878ca9525
--- /dev/null
+++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php
@@ -0,0 +1,220 @@
+pathname, true);
+ Model::validateRequired('productId', $this->productId, true);
+ Model::validateRequired('action', $this->action, true);
+ Model::validateRequired('version', $this->version, true);
+ Model::validateRequired('protocol', $this->protocol, true);
+ Model::validateRequired('method', $this->method, true);
+ Model::validateRequired('authType', $this->authType, true);
+ Model::validateRequired('bodyType', $this->bodyType, true);
+ Model::validateRequired('reqBodyType', $this->reqBodyType, true);
+ Model::validateRequired('credential', $this->credential, true);
+ Model::validateRequired('userAgent', $this->userAgent, true);
+ }
+ public function toMap() {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->query) {
+ $res['query'] = $this->query;
+ }
+ if (null !== $this->body) {
+ $res['body'] = $this->body;
+ }
+ if (null !== $this->stream) {
+ $res['stream'] = $this->stream;
+ }
+ if (null !== $this->hostMap) {
+ $res['hostMap'] = $this->hostMap;
+ }
+ if (null !== $this->pathname) {
+ $res['pathname'] = $this->pathname;
+ }
+ if (null !== $this->productId) {
+ $res['productId'] = $this->productId;
+ }
+ if (null !== $this->action) {
+ $res['action'] = $this->action;
+ }
+ if (null !== $this->version) {
+ $res['version'] = $this->version;
+ }
+ if (null !== $this->protocol) {
+ $res['protocol'] = $this->protocol;
+ }
+ if (null !== $this->method) {
+ $res['method'] = $this->method;
+ }
+ if (null !== $this->authType) {
+ $res['authType'] = $this->authType;
+ }
+ if (null !== $this->bodyType) {
+ $res['bodyType'] = $this->bodyType;
+ }
+ if (null !== $this->reqBodyType) {
+ $res['reqBodyType'] = $this->reqBodyType;
+ }
+ if (null !== $this->style) {
+ $res['style'] = $this->style;
+ }
+ if (null !== $this->credential) {
+ $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null;
+ }
+ if (null !== $this->signatureVersion) {
+ $res['signatureVersion'] = $this->signatureVersion;
+ }
+ if (null !== $this->signatureAlgorithm) {
+ $res['signatureAlgorithm'] = $this->signatureAlgorithm;
+ }
+ if (null !== $this->userAgent) {
+ $res['userAgent'] = $this->userAgent;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return request
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['headers'])){
+ $model->headers = $map['headers'];
+ }
+ if(isset($map['query'])){
+ $model->query = $map['query'];
+ }
+ if(isset($map['body'])){
+ $model->body = $map['body'];
+ }
+ if(isset($map['stream'])){
+ $model->stream = $map['stream'];
+ }
+ if(isset($map['hostMap'])){
+ $model->hostMap = $map['hostMap'];
+ }
+ if(isset($map['pathname'])){
+ $model->pathname = $map['pathname'];
+ }
+ if(isset($map['productId'])){
+ $model->productId = $map['productId'];
+ }
+ if(isset($map['action'])){
+ $model->action = $map['action'];
+ }
+ if(isset($map['version'])){
+ $model->version = $map['version'];
+ }
+ if(isset($map['protocol'])){
+ $model->protocol = $map['protocol'];
+ }
+ if(isset($map['method'])){
+ $model->method = $map['method'];
+ }
+ if(isset($map['authType'])){
+ $model->authType = $map['authType'];
+ }
+ if(isset($map['bodyType'])){
+ $model->bodyType = $map['bodyType'];
+ }
+ if(isset($map['reqBodyType'])){
+ $model->reqBodyType = $map['reqBodyType'];
+ }
+ if(isset($map['style'])){
+ $model->style = $map['style'];
+ }
+ if(isset($map['credential'])){
+ $model->credential = Credential::fromMap($map['credential']);
+ }
+ if(isset($map['signatureVersion'])){
+ $model->signatureVersion = $map['signatureVersion'];
+ }
+ if(isset($map['signatureAlgorithm'])){
+ $model->signatureAlgorithm = $map['signatureAlgorithm'];
+ }
+ if(isset($map['userAgent'])){
+ $model->userAgent = $map['userAgent'];
+ }
+ return $model;
+ }
+ public $headers;
+
+ public $query;
+
+ public $body;
+
+ public $stream;
+
+ public $hostMap;
+
+ /**
+ * @var string
+ */
+ public $pathname;
+
+ /**
+ * @var string
+ */
+ public $productId;
+
+ /**
+ * @var string
+ */
+ public $action;
+
+ /**
+ * @var string
+ */
+ public $version;
+
+ /**
+ * @var string
+ */
+ public $protocol;
+
+ /**
+ * @var string
+ */
+ public $method;
+
+ /**
+ * @var string
+ */
+ public $authType;
+
+ /**
+ * @var string
+ */
+ public $bodyType;
+
+ /**
+ * @var string
+ */
+ public $reqBodyType;
+
+ public $style;
+
+ /**
+ * @var Credential
+ */
+ public $credential;
+
+ public $signatureVersion;
+
+ public $signatureAlgorithm;
+
+ /**
+ * @var string
+ */
+ public $userAgent;
+
+}
diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php
new file mode 100644
index 000000000..d899e4d3b
--- /dev/null
+++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php
@@ -0,0 +1,54 @@
+statusCode) {
+ $res['statusCode'] = $this->statusCode;
+ }
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = $this->body;
+ }
+ if (null !== $this->deserializedBody) {
+ $res['deserializedBody'] = $this->deserializedBody;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return response
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['statusCode'])){
+ $model->statusCode = $map['statusCode'];
+ }
+ if(isset($map['headers'])){
+ $model->headers = $map['headers'];
+ }
+ if(isset($map['body'])){
+ $model->body = $map['body'];
+ }
+ if(isset($map['deserializedBody'])){
+ $model->deserializedBody = $map['deserializedBody'];
+ }
+ return $model;
+ }
+ public $statusCode;
+
+ public $headers;
+
+ public $body;
+
+ public $deserializedBody;
+
+}
diff --git a/vendor/alibabacloud/live-20161101/.gitignore b/vendor/alibabacloud/live-20161101/.gitignore
new file mode 100644
index 000000000..89c7aa58e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/.gitignore
@@ -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
diff --git a/vendor/alibabacloud/live-20161101/.php_cs.dist b/vendor/alibabacloud/live-20161101/.php_cs.dist
new file mode 100644
index 000000000..8617ec2fa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/.php_cs.dist
@@ -0,0 +1,65 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/live-20161101/ChangeLog.md b/vendor/alibabacloud/live-20161101/ChangeLog.md
new file mode 100644
index 000000000..f5f47afa0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/ChangeLog.md
@@ -0,0 +1,18 @@
+2022-12-05 Version: 1.1.1
+- Live sdk update.
+
+2022-12-05 Version: 1.1.0
+- Live sdk update.
+
+2022-10-31 Version: 1.0.2
+- Live pre sdk test.
+
+2021-04-23 Version: 1.0.1
+- Generated php 2016-11-01 for live.
+
+2021-01-10 Version: 1.0.0
+- Generated php 2016-11-01 for live.
+
+2020-11-16 Version: 0.0.1
+- Generated php 2016-11-01 for live.
+
diff --git a/vendor/alibabacloud/live-20161101/LICENSE b/vendor/alibabacloud/live-20161101/LICENSE
new file mode 100644
index 000000000..0c44dcefe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/LICENSE
@@ -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.
diff --git a/vendor/alibabacloud/live-20161101/README-CN.md b/vendor/alibabacloud/live-20161101/README-CN.md
new file mode 100644
index 000000000..de5c1eafb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/README-CN.md
@@ -0,0 +1,35 @@
+[English](README.md) | 简体中文
+
+
+
+# Alibaba Cloud live SDK for PHP
+
+## 安装
+
+### Composer
+
+```bash
+composer require alibabacloud/live-20161101
+```
+
+## 问题
+
+[提交 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.
diff --git a/vendor/alibabacloud/live-20161101/README.md b/vendor/alibabacloud/live-20161101/README.md
new file mode 100644
index 000000000..9f1ed99ac
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/README.md
@@ -0,0 +1,35 @@
+English | [简体中文](README-CN.md)
+
+
+
+# Alibaba Cloud live SDK for PHP
+
+## Installation
+
+### Composer
+
+```bash
+composer require alibabacloud/live-20161101
+```
+
+## 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.
diff --git a/vendor/alibabacloud/live-20161101/autoload.php b/vendor/alibabacloud/live-20161101/autoload.php
new file mode 100644
index 000000000..9789e5429
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/autoload.php
@@ -0,0 +1,17 @@
+5.5",
+ "alibabacloud/tea-utils": "^0.2.17",
+ "alibabacloud/darabonba-openapi": "^0.2.8",
+ "alibabacloud/openapi-util": "^0.1.10|^0.2.0",
+ "alibabacloud/endpoint-util": "^0.1.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\SDK\\Live\\V20161101\\": "src"
+ }
+ },
+ "scripts": {
+ "fixer": "php-cs-fixer fix ./"
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true
+}
\ No newline at end of file
diff --git a/vendor/alibabacloud/live-20161101/src/Live.php b/vendor/alibabacloud/live-20161101/src/Live.php
new file mode 100644
index 000000000..0f438c843
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Live.php
@@ -0,0 +1,16765 @@
+_endpointRule = 'regional';
+ $this->_endpointMap = [
+ 'cn-qingdao' => 'live.aliyuncs.com',
+ 'cn-beijing' => 'live.aliyuncs.com',
+ 'cn-hangzhou' => 'live.aliyuncs.com',
+ 'cn-shanghai' => 'live.aliyuncs.com',
+ 'cn-shenzhen' => 'live.aliyuncs.com',
+ 'ap-southeast-1' => 'live.aliyuncs.com',
+ 'ap-southeast-5' => 'live.aliyuncs.com',
+ 'ap-northeast-1' => 'live.aliyuncs.com',
+ 'eu-central-1' => 'live.aliyuncs.com',
+ 'ap-south-1' => 'live.aliyuncs.com',
+ 'ap-northeast-2-pop' => 'live.aliyuncs.com',
+ 'ap-southeast-2' => 'live.aliyuncs.com',
+ 'ap-southeast-3' => 'live.aliyuncs.com',
+ 'cn-beijing-finance-1' => 'live.aliyuncs.com',
+ 'cn-beijing-finance-pop' => 'live.aliyuncs.com',
+ 'cn-beijing-gov-1' => 'live.aliyuncs.com',
+ 'cn-beijing-nu16-b01' => 'live.aliyuncs.com',
+ 'cn-chengdu' => 'live.aliyuncs.com',
+ 'cn-edge-1' => 'live.aliyuncs.com',
+ 'cn-fujian' => 'live.aliyuncs.com',
+ 'cn-haidian-cm12-c01' => 'live.aliyuncs.com',
+ 'cn-hangzhou-bj-b01' => 'live.aliyuncs.com',
+ 'cn-hangzhou-finance' => 'live.aliyuncs.com',
+ 'cn-hangzhou-internal-prod-1' => 'live.aliyuncs.com',
+ 'cn-hangzhou-internal-test-1' => 'live.aliyuncs.com',
+ 'cn-hangzhou-internal-test-2' => 'live.aliyuncs.com',
+ 'cn-hangzhou-internal-test-3' => 'live.aliyuncs.com',
+ 'cn-hangzhou-test-306' => 'live.aliyuncs.com',
+ 'cn-hongkong' => 'live.aliyuncs.com',
+ 'cn-hongkong-finance-pop' => 'live.aliyuncs.com',
+ 'cn-huhehaote' => 'live.aliyuncs.com',
+ 'cn-huhehaote-nebula-1' => 'live.aliyuncs.com',
+ 'cn-north-2-gov-1' => 'live.aliyuncs.com',
+ 'cn-qingdao-nebula' => 'live.aliyuncs.com',
+ 'cn-shanghai-et15-b01' => 'live.aliyuncs.com',
+ 'cn-shanghai-et2-b01' => 'live.aliyuncs.com',
+ 'cn-shanghai-finance-1' => 'live.aliyuncs.com',
+ 'cn-shanghai-inner' => 'live.aliyuncs.com',
+ 'cn-shanghai-internal-test-1' => 'live.aliyuncs.com',
+ 'cn-shenzhen-finance-1' => 'live.aliyuncs.com',
+ 'cn-shenzhen-inner' => 'live.aliyuncs.com',
+ 'cn-shenzhen-st4-d01' => 'live.aliyuncs.com',
+ 'cn-shenzhen-su18-b01' => 'live.aliyuncs.com',
+ 'cn-wuhan' => 'live.aliyuncs.com',
+ 'cn-wulanchabu' => 'live.aliyuncs.com',
+ 'cn-yushanfang' => 'live.aliyuncs.com',
+ 'cn-zhangbei' => 'live.aliyuncs.com',
+ 'cn-zhangbei-na61-b01' => 'live.aliyuncs.com',
+ 'cn-zhangjiakou' => 'live.aliyuncs.com',
+ 'cn-zhangjiakou-na62-a01' => 'live.aliyuncs.com',
+ 'cn-zhengzhou-nebula-1' => 'live.aliyuncs.com',
+ 'eu-west-1' => 'live.aliyuncs.com',
+ 'eu-west-1-oxs' => 'live.aliyuncs.com',
+ 'me-east-1' => 'live.aliyuncs.com',
+ 'rus-west-1-pop' => 'live.aliyuncs.com',
+ 'us-east-1' => 'live.aliyuncs.com',
+ 'us-west-1' => 'live.aliyuncs.com',
+ ];
+ $this->checkConfig($config);
+ $this->_endpoint = $this->getEndpoint('live', $this->_regionId, $this->_endpointRule, $this->_network, $this->_suffix, $this->_endpointMap, $this->_endpoint);
+ }
+
+ /**
+ * @param string $productId
+ * @param string $regionId
+ * @param string $endpointRule
+ * @param string $network
+ * @param string $suffix
+ * @param string[] $endpointMap
+ * @param string $endpoint
+ *
+ * @return string
+ */
+ public function getEndpoint($productId, $regionId, $endpointRule, $network, $suffix, $endpointMap, $endpoint)
+ {
+ if (!Utils::empty_($endpoint)) {
+ return $endpoint;
+ }
+ if (!Utils::isUnset($endpointMap) && !Utils::empty_(@$endpointMap[$regionId])) {
+ return @$endpointMap[$regionId];
+ }
+
+ return Endpoint::getEndpointRules($productId, $regionId, $endpointRule, $network, $suffix);
+ }
+
+ /**
+ * @param AddCasterComponentRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCasterComponentResponse
+ */
+ public function addCasterComponentWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->captionLayerContent)) {
+ $query['CaptionLayerContent'] = $request->captionLayerContent;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentLayer)) {
+ $query['ComponentLayer'] = $request->componentLayer;
+ }
+ if (!Utils::isUnset($request->componentName)) {
+ $query['ComponentName'] = $request->componentName;
+ }
+ if (!Utils::isUnset($request->componentType)) {
+ $query['ComponentType'] = $request->componentType;
+ }
+ if (!Utils::isUnset($request->effect)) {
+ $query['Effect'] = $request->effect;
+ }
+ if (!Utils::isUnset($request->htmlLayerContent)) {
+ $query['HtmlLayerContent'] = $request->htmlLayerContent;
+ }
+ if (!Utils::isUnset($request->imageLayerContent)) {
+ $query['ImageLayerContent'] = $request->imageLayerContent;
+ }
+ if (!Utils::isUnset($request->layerOrder)) {
+ $query['LayerOrder'] = $request->layerOrder;
+ }
+ if (!Utils::isUnset($request->locationId)) {
+ $query['LocationId'] = $request->locationId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->textLayerContent)) {
+ $query['TextLayerContent'] = $request->textLayerContent;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCasterComponent',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCasterComponentResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCasterComponentRequest $request
+ *
+ * @return AddCasterComponentResponse
+ */
+ public function addCasterComponent($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCasterComponentWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddCasterEpisodeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCasterEpisodeResponse
+ */
+ public function addCasterEpisodeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentId)) {
+ $query['ComponentId'] = $request->componentId;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->episodeName)) {
+ $query['EpisodeName'] = $request->episodeName;
+ }
+ if (!Utils::isUnset($request->episodeType)) {
+ $query['EpisodeType'] = $request->episodeType;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->switchType)) {
+ $query['SwitchType'] = $request->switchType;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCasterEpisode',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCasterEpisodeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCasterEpisodeRequest $request
+ *
+ * @return AddCasterEpisodeResponse
+ */
+ public function addCasterEpisode($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCasterEpisodeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddCasterEpisodeGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCasterEpisodeGroupResponse
+ */
+ public function addCasterEpisodeGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->callbackUrl)) {
+ $query['CallbackUrl'] = $request->callbackUrl;
+ }
+ if (!Utils::isUnset($request->clientToken)) {
+ $query['ClientToken'] = $request->clientToken;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->item)) {
+ $query['Item'] = $request->item;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->repeatNum)) {
+ $query['RepeatNum'] = $request->repeatNum;
+ }
+ if (!Utils::isUnset($request->sideOutputUrl)) {
+ $query['SideOutputUrl'] = $request->sideOutputUrl;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCasterEpisodeGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCasterEpisodeGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCasterEpisodeGroupRequest $request
+ *
+ * @return AddCasterEpisodeGroupResponse
+ */
+ public function addCasterEpisodeGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCasterEpisodeGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddCasterEpisodeGroupContentRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCasterEpisodeGroupContentResponse
+ */
+ public function addCasterEpisodeGroupContentWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->clientToken)) {
+ $query['ClientToken'] = $request->clientToken;
+ }
+ if (!Utils::isUnset($request->content)) {
+ $query['Content'] = $request->content;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCasterEpisodeGroupContent',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCasterEpisodeGroupContentResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCasterEpisodeGroupContentRequest $request
+ *
+ * @return AddCasterEpisodeGroupContentResponse
+ */
+ public function addCasterEpisodeGroupContent($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCasterEpisodeGroupContentWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddCasterLayoutRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCasterLayoutResponse
+ */
+ public function addCasterLayoutWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->audioLayer)) {
+ $query['AudioLayer'] = $request->audioLayer;
+ }
+ if (!Utils::isUnset($request->blendList)) {
+ $query['BlendList'] = $request->blendList;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->mixList)) {
+ $query['MixList'] = $request->mixList;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->videoLayer)) {
+ $query['VideoLayer'] = $request->videoLayer;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCasterLayout',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCasterLayoutResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCasterLayoutRequest $request
+ *
+ * @return AddCasterLayoutResponse
+ */
+ public function addCasterLayout($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCasterLayoutWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddCasterProgramRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCasterProgramResponse
+ */
+ public function addCasterProgramWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->episode)) {
+ $query['Episode'] = $request->episode;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCasterProgram',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCasterProgramRequest $request
+ *
+ * @return AddCasterProgramResponse
+ */
+ public function addCasterProgram($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCasterProgramWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddCasterVideoResourceRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCasterVideoResourceResponse
+ */
+ public function addCasterVideoResourceWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->beginOffset)) {
+ $query['BeginOffset'] = $request->beginOffset;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->endOffset)) {
+ $query['EndOffset'] = $request->endOffset;
+ }
+ if (!Utils::isUnset($request->fixedDelayDuration)) {
+ $query['FixedDelayDuration'] = $request->fixedDelayDuration;
+ }
+ if (!Utils::isUnset($request->liveStreamUrl)) {
+ $query['LiveStreamUrl'] = $request->liveStreamUrl;
+ }
+ if (!Utils::isUnset($request->locationId)) {
+ $query['LocationId'] = $request->locationId;
+ }
+ if (!Utils::isUnset($request->materialId)) {
+ $query['MaterialId'] = $request->materialId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->ptsCallbackInterval)) {
+ $query['PtsCallbackInterval'] = $request->ptsCallbackInterval;
+ }
+ if (!Utils::isUnset($request->repeatNum)) {
+ $query['RepeatNum'] = $request->repeatNum;
+ }
+ if (!Utils::isUnset($request->resourceName)) {
+ $query['ResourceName'] = $request->resourceName;
+ }
+ if (!Utils::isUnset($request->streamId)) {
+ $query['StreamId'] = $request->streamId;
+ }
+ if (!Utils::isUnset($request->vodUrl)) {
+ $query['VodUrl'] = $request->vodUrl;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCasterVideoResource',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCasterVideoResourceRequest $request
+ *
+ * @return AddCasterVideoResourceResponse
+ */
+ public function addCasterVideoResource($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCasterVideoResourceWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddCustomLiveStreamTranscodeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddCustomLiveStreamTranscodeResponse
+ */
+ public function addCustomLiveStreamTranscodeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->audioBitrate)) {
+ $query['AudioBitrate'] = $request->audioBitrate;
+ }
+ if (!Utils::isUnset($request->audioChannelNum)) {
+ $query['AudioChannelNum'] = $request->audioChannelNum;
+ }
+ if (!Utils::isUnset($request->audioCodec)) {
+ $query['AudioCodec'] = $request->audioCodec;
+ }
+ if (!Utils::isUnset($request->audioProfile)) {
+ $query['AudioProfile'] = $request->audioProfile;
+ }
+ if (!Utils::isUnset($request->audioRate)) {
+ $query['AudioRate'] = $request->audioRate;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->encryptParameters)) {
+ $query['EncryptParameters'] = $request->encryptParameters;
+ }
+ if (!Utils::isUnset($request->FPS)) {
+ $query['FPS'] = $request->FPS;
+ }
+ if (!Utils::isUnset($request->gop)) {
+ $query['Gop'] = $request->gop;
+ }
+ if (!Utils::isUnset($request->height)) {
+ $query['Height'] = $request->height;
+ }
+ if (!Utils::isUnset($request->kmsKeyExpireInterval)) {
+ $query['KmsKeyExpireInterval'] = $request->kmsKeyExpireInterval;
+ }
+ if (!Utils::isUnset($request->kmsKeyID)) {
+ $query['KmsKeyID'] = $request->kmsKeyID;
+ }
+ if (!Utils::isUnset($request->kmsUID)) {
+ $query['KmsUID'] = $request->kmsUID;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->profile)) {
+ $query['Profile'] = $request->profile;
+ }
+ if (!Utils::isUnset($request->template)) {
+ $query['Template'] = $request->template;
+ }
+ if (!Utils::isUnset($request->templateType)) {
+ $query['TemplateType'] = $request->templateType;
+ }
+ if (!Utils::isUnset($request->videoBitrate)) {
+ $query['VideoBitrate'] = $request->videoBitrate;
+ }
+ if (!Utils::isUnset($request->width)) {
+ $query['Width'] = $request->width;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddCustomLiveStreamTranscode',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddCustomLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddCustomLiveStreamTranscodeRequest $request
+ *
+ * @return AddCustomLiveStreamTranscodeResponse
+ */
+ public function addCustomLiveStreamTranscode($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addCustomLiveStreamTranscodeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveAppRecordConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveAppRecordConfigResponse
+ */
+ public function addLiveAppRecordConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->onDemand)) {
+ $query['OnDemand'] = $request->onDemand;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->recordFormat)) {
+ $query['RecordFormat'] = $request->recordFormat;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->transcodeRecordFormat)) {
+ $query['TranscodeRecordFormat'] = $request->transcodeRecordFormat;
+ }
+ if (!Utils::isUnset($request->transcodeTemplates)) {
+ $query['TranscodeTemplates'] = $request->transcodeTemplates;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveAppRecordConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveAppRecordConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveAppRecordConfigRequest $request
+ *
+ * @return AddLiveAppRecordConfigResponse
+ */
+ public function addLiveAppRecordConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveAppRecordConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveAppSnapshotConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveAppSnapshotConfigResponse
+ */
+ public function addLiveAppSnapshotConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->callback)) {
+ $query['Callback'] = $request->callback;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->overwriteOssObject)) {
+ $query['OverwriteOssObject'] = $request->overwriteOssObject;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->sequenceOssObject)) {
+ $query['SequenceOssObject'] = $request->sequenceOssObject;
+ }
+ if (!Utils::isUnset($request->timeInterval)) {
+ $query['TimeInterval'] = $request->timeInterval;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveAppSnapshotConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveAppSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveAppSnapshotConfigRequest $request
+ *
+ * @return AddLiveAppSnapshotConfigResponse
+ */
+ public function addLiveAppSnapshotConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveAppSnapshotConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveAudioAuditConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveAudioAuditConfigResponse
+ */
+ public function addLiveAudioAuditConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->bizType)) {
+ $query['BizType'] = $request->bizType;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->ossObject)) {
+ $query['OssObject'] = $request->ossObject;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveAudioAuditConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveAudioAuditConfigRequest $request
+ *
+ * @return AddLiveAudioAuditConfigResponse
+ */
+ public function addLiveAudioAuditConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveAudioAuditConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveAudioAuditNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveAudioAuditNotifyConfigResponse
+ */
+ public function addLiveAudioAuditNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->callback)) {
+ $query['Callback'] = $request->callback;
+ }
+ if (!Utils::isUnset($request->callbackTemplate)) {
+ $query['CallbackTemplate'] = $request->callbackTemplate;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveAudioAuditNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveAudioAuditNotifyConfigRequest $request
+ *
+ * @return AddLiveAudioAuditNotifyConfigResponse
+ */
+ public function addLiveAudioAuditNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveAudioAuditNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveDetectNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveDetectNotifyConfigResponse
+ */
+ public function addLiveDetectNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->notifyUrl)) {
+ $query['NotifyUrl'] = $request->notifyUrl;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveDetectNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveDetectNotifyConfigRequest $request
+ *
+ * @return AddLiveDetectNotifyConfigResponse
+ */
+ public function addLiveDetectNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveDetectNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveDomainRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveDomainResponse
+ */
+ public function addLiveDomainWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->checkUrl)) {
+ $query['CheckUrl'] = $request->checkUrl;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->liveDomainType)) {
+ $query['LiveDomainType'] = $request->liveDomainType;
+ }
+ if (!Utils::isUnset($request->ownerAccount)) {
+ $query['OwnerAccount'] = $request->ownerAccount;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->region)) {
+ $query['Region'] = $request->region;
+ }
+ if (!Utils::isUnset($request->scope)) {
+ $query['Scope'] = $request->scope;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->topLevelDomain)) {
+ $query['TopLevelDomain'] = $request->topLevelDomain;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveDomain',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveDomainRequest $request
+ *
+ * @return AddLiveDomainResponse
+ */
+ public function addLiveDomain($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveDomainWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveDomainMappingRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveDomainMappingResponse
+ */
+ public function addLiveDomainMappingWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pullDomain)) {
+ $query['PullDomain'] = $request->pullDomain;
+ }
+ if (!Utils::isUnset($request->pushDomain)) {
+ $query['PushDomain'] = $request->pushDomain;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveDomainMapping',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveDomainMappingResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveDomainMappingRequest $request
+ *
+ * @return AddLiveDomainMappingResponse
+ */
+ public function addLiveDomainMapping($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveDomainMappingWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveDomainPlayMappingRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveDomainPlayMappingResponse
+ */
+ public function addLiveDomainPlayMappingWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->playDomain)) {
+ $query['PlayDomain'] = $request->playDomain;
+ }
+ if (!Utils::isUnset($request->pullDomain)) {
+ $query['PullDomain'] = $request->pullDomain;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveDomainPlayMapping',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveDomainPlayMappingResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveDomainPlayMappingRequest $request
+ *
+ * @return AddLiveDomainPlayMappingResponse
+ */
+ public function addLiveDomainPlayMapping($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveDomainPlayMappingWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLivePullStreamInfoConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLivePullStreamInfoConfigResponse
+ */
+ public function addLivePullStreamInfoConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sourceUrl)) {
+ $query['SourceUrl'] = $request->sourceUrl;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLivePullStreamInfoConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLivePullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLivePullStreamInfoConfigRequest $request
+ *
+ * @return AddLivePullStreamInfoConfigResponse
+ */
+ public function addLivePullStreamInfoConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLivePullStreamInfoConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveRecordNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveRecordNotifyConfigResponse
+ */
+ public function addLiveRecordNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->needStatusNotify)) {
+ $query['NeedStatusNotify'] = $request->needStatusNotify;
+ }
+ if (!Utils::isUnset($request->notifyUrl)) {
+ $query['NotifyUrl'] = $request->notifyUrl;
+ }
+ if (!Utils::isUnset($request->onDemandUrl)) {
+ $query['OnDemandUrl'] = $request->onDemandUrl;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveRecordNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveRecordNotifyConfigRequest $request
+ *
+ * @return AddLiveRecordNotifyConfigResponse
+ */
+ public function addLiveRecordNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveRecordNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveRecordVodConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveRecordVodConfigResponse
+ */
+ public function addLiveRecordVodConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->autoCompose)) {
+ $query['AutoCompose'] = $request->autoCompose;
+ }
+ if (!Utils::isUnset($request->composeVodTranscodeGroupId)) {
+ $query['ComposeVodTranscodeGroupId'] = $request->composeVodTranscodeGroupId;
+ }
+ if (!Utils::isUnset($request->cycleDuration)) {
+ $query['CycleDuration'] = $request->cycleDuration;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->storageLocation)) {
+ $query['StorageLocation'] = $request->storageLocation;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->vodTranscodeGroupId)) {
+ $query['VodTranscodeGroupId'] = $request->vodTranscodeGroupId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveRecordVodConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveRecordVodConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveRecordVodConfigRequest $request
+ *
+ * @return AddLiveRecordVodConfigResponse
+ */
+ public function addLiveRecordVodConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveRecordVodConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveSnapshotDetectPornConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveSnapshotDetectPornConfigResponse
+ */
+ public function addLiveSnapshotDetectPornConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->ossObject)) {
+ $query['OssObject'] = $request->ossObject;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->scene)) {
+ $query['Scene'] = $request->scene;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveSnapshotDetectPornConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveSnapshotDetectPornConfigRequest $request
+ *
+ * @return AddLiveSnapshotDetectPornConfigResponse
+ */
+ public function addLiveSnapshotDetectPornConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveSnapshotDetectPornConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveSnapshotNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveSnapshotNotifyConfigResponse
+ */
+ public function addLiveSnapshotNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->notifyAuthKey)) {
+ $query['NotifyAuthKey'] = $request->notifyAuthKey;
+ }
+ if (!Utils::isUnset($request->notifyReqAuth)) {
+ $query['NotifyReqAuth'] = $request->notifyReqAuth;
+ }
+ if (!Utils::isUnset($request->notifyUrl)) {
+ $query['NotifyUrl'] = $request->notifyUrl;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveSnapshotNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveSnapshotNotifyConfigRequest $request
+ *
+ * @return AddLiveSnapshotNotifyConfigResponse
+ */
+ public function addLiveSnapshotNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveSnapshotNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveStreamTranscodeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveStreamTranscodeResponse
+ */
+ public function addLiveStreamTranscodeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->encryptParameters)) {
+ $query['EncryptParameters'] = $request->encryptParameters;
+ }
+ if (!Utils::isUnset($request->lazy)) {
+ $query['Lazy'] = $request->lazy;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->template)) {
+ $query['Template'] = $request->template;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveStreamTranscode',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveStreamTranscodeRequest $request
+ *
+ * @return AddLiveStreamTranscodeResponse
+ */
+ public function addLiveStreamTranscode($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveStreamTranscodeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveStreamWatermarkRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveStreamWatermarkResponse
+ */
+ public function addLiveStreamWatermarkWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->description)) {
+ $query['Description'] = $request->description;
+ }
+ if (!Utils::isUnset($request->height)) {
+ $query['Height'] = $request->height;
+ }
+ if (!Utils::isUnset($request->name)) {
+ $query['Name'] = $request->name;
+ }
+ if (!Utils::isUnset($request->offsetCorner)) {
+ $query['OffsetCorner'] = $request->offsetCorner;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pictureUrl)) {
+ $query['PictureUrl'] = $request->pictureUrl;
+ }
+ if (!Utils::isUnset($request->refHeight)) {
+ $query['RefHeight'] = $request->refHeight;
+ }
+ if (!Utils::isUnset($request->refWidth)) {
+ $query['RefWidth'] = $request->refWidth;
+ }
+ if (!Utils::isUnset($request->transparency)) {
+ $query['Transparency'] = $request->transparency;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $query['Type'] = $request->type;
+ }
+ if (!Utils::isUnset($request->XOffset)) {
+ $query['XOffset'] = $request->XOffset;
+ }
+ if (!Utils::isUnset($request->YOffset)) {
+ $query['YOffset'] = $request->YOffset;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveStreamWatermark',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveStreamWatermarkResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveStreamWatermarkRequest $request
+ *
+ * @return AddLiveStreamWatermarkResponse
+ */
+ public function addLiveStreamWatermark($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveStreamWatermarkWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddLiveStreamWatermarkRuleRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddLiveStreamWatermarkRuleResponse
+ */
+ public function addLiveStreamWatermarkRuleWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->description)) {
+ $query['Description'] = $request->description;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->name)) {
+ $query['Name'] = $request->name;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ if (!Utils::isUnset($request->templateId)) {
+ $query['TemplateId'] = $request->templateId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddLiveStreamWatermarkRule',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddLiveStreamWatermarkRuleResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddLiveStreamWatermarkRuleRequest $request
+ *
+ * @return AddLiveStreamWatermarkRuleResponse
+ */
+ public function addLiveStreamWatermarkRule($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addLiveStreamWatermarkRuleWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddMultiRateConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddMultiRateConfigResponse
+ */
+ public function addMultiRateConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->avFormat)) {
+ $query['AvFormat'] = $request->avFormat;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $query['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->isLazy)) {
+ $query['IsLazy'] = $request->isLazy;
+ }
+ if (!Utils::isUnset($request->isTimeAlign)) {
+ $query['IsTimeAlign'] = $request->isTimeAlign;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->templates)) {
+ $query['Templates'] = $request->templates;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddMultiRateConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddMultiRateConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddMultiRateConfigRequest $request
+ *
+ * @return AddMultiRateConfigResponse
+ */
+ public function addMultiRateConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addMultiRateConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddPlaylistItemsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddPlaylistItemsResponse
+ */
+ public function addPlaylistItemsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programConfig)) {
+ $query['ProgramConfig'] = $request->programConfig;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ if (!Utils::isUnset($request->programItems)) {
+ $query['ProgramItems'] = $request->programItems;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddPlaylistItems',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddPlaylistItemsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddPlaylistItemsRequest $request
+ *
+ * @return AddPlaylistItemsResponse
+ */
+ public function addPlaylistItems($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addPlaylistItemsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddRtsLiveStreamTranscodeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddRtsLiveStreamTranscodeResponse
+ */
+ public function addRtsLiveStreamTranscodeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->audioBitrate)) {
+ $query['AudioBitrate'] = $request->audioBitrate;
+ }
+ if (!Utils::isUnset($request->audioChannelNum)) {
+ $query['AudioChannelNum'] = $request->audioChannelNum;
+ }
+ if (!Utils::isUnset($request->audioCodec)) {
+ $query['AudioCodec'] = $request->audioCodec;
+ }
+ if (!Utils::isUnset($request->audioProfile)) {
+ $query['AudioProfile'] = $request->audioProfile;
+ }
+ if (!Utils::isUnset($request->audioRate)) {
+ $query['AudioRate'] = $request->audioRate;
+ }
+ if (!Utils::isUnset($request->deleteBframes)) {
+ $query['DeleteBframes'] = $request->deleteBframes;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->FPS)) {
+ $query['FPS'] = $request->FPS;
+ }
+ if (!Utils::isUnset($request->gop)) {
+ $query['Gop'] = $request->gop;
+ }
+ if (!Utils::isUnset($request->height)) {
+ $query['Height'] = $request->height;
+ }
+ if (!Utils::isUnset($request->lazy)) {
+ $query['Lazy'] = $request->lazy;
+ }
+ if (!Utils::isUnset($request->opus)) {
+ $query['Opus'] = $request->opus;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->profile)) {
+ $query['Profile'] = $request->profile;
+ }
+ if (!Utils::isUnset($request->template)) {
+ $query['Template'] = $request->template;
+ }
+ if (!Utils::isUnset($request->templateType)) {
+ $query['TemplateType'] = $request->templateType;
+ }
+ if (!Utils::isUnset($request->videoBitrate)) {
+ $query['VideoBitrate'] = $request->videoBitrate;
+ }
+ if (!Utils::isUnset($request->width)) {
+ $query['Width'] = $request->width;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddRtsLiveStreamTranscode',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddRtsLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddRtsLiveStreamTranscodeRequest $request
+ *
+ * @return AddRtsLiveStreamTranscodeResponse
+ */
+ public function addRtsLiveStreamTranscode($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addRtsLiveStreamTranscodeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddShowIntoShowListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddShowIntoShowListResponse
+ */
+ public function addShowIntoShowListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->duration)) {
+ $query['Duration'] = $request->duration;
+ }
+ if (!Utils::isUnset($request->liveInputType)) {
+ $query['LiveInputType'] = $request->liveInputType;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->repeatTimes)) {
+ $query['RepeatTimes'] = $request->repeatTimes;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->resourceType)) {
+ $query['ResourceType'] = $request->resourceType;
+ }
+ if (!Utils::isUnset($request->resourceUrl)) {
+ $query['ResourceUrl'] = $request->resourceUrl;
+ }
+ if (!Utils::isUnset($request->showName)) {
+ $query['ShowName'] = $request->showName;
+ }
+ if (!Utils::isUnset($request->spot)) {
+ $query['Spot'] = $request->spot;
+ }
+ if (!Utils::isUnset($request->isBatchMode)) {
+ $query['isBatchMode'] = $request->isBatchMode;
+ }
+ if (!Utils::isUnset($request->showList)) {
+ $query['showList'] = $request->showList;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddShowIntoShowList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddShowIntoShowListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddShowIntoShowListRequest $request
+ *
+ * @return AddShowIntoShowListResponse
+ */
+ public function addShowIntoShowList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addShowIntoShowListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddStudioLayoutRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddStudioLayoutResponse
+ */
+ public function addStudioLayoutWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->bgImageConfig)) {
+ $query['BgImageConfig'] = $request->bgImageConfig;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->commonConfig)) {
+ $query['CommonConfig'] = $request->commonConfig;
+ }
+ if (!Utils::isUnset($request->layerOrderConfigList)) {
+ $query['LayerOrderConfigList'] = $request->layerOrderConfigList;
+ }
+ if (!Utils::isUnset($request->layoutName)) {
+ $query['LayoutName'] = $request->layoutName;
+ }
+ if (!Utils::isUnset($request->layoutType)) {
+ $query['LayoutType'] = $request->layoutType;
+ }
+ if (!Utils::isUnset($request->mediaInputConfigList)) {
+ $query['MediaInputConfigList'] = $request->mediaInputConfigList;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->screenInputConfigList)) {
+ $query['ScreenInputConfigList'] = $request->screenInputConfigList;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddStudioLayout',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddStudioLayoutResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddStudioLayoutRequest $request
+ *
+ * @return AddStudioLayoutResponse
+ */
+ public function addStudioLayout($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addStudioLayoutWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AddTrancodeSEIRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AddTrancodeSEIResponse
+ */
+ public function addTrancodeSEIWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->delay)) {
+ $query['Delay'] = $request->delay;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pattern)) {
+ $query['Pattern'] = $request->pattern;
+ }
+ if (!Utils::isUnset($request->repeat)) {
+ $query['Repeat'] = $request->repeat;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->text)) {
+ $query['Text'] = $request->text;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AddTrancodeSEI',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AddTrancodeSEIResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AddTrancodeSEIRequest $request
+ *
+ * @return AddTrancodeSEIResponse
+ */
+ public function addTrancodeSEI($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->addTrancodeSEIWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param AllowPushStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return AllowPushStreamResponse
+ */
+ public function allowPushStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'AllowPushStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return AllowPushStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param AllowPushStreamRequest $request
+ *
+ * @return AllowPushStreamResponse
+ */
+ public function allowPushStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->allowPushStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param BatchDeleteLiveDomainConfigsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return BatchDeleteLiveDomainConfigsResponse
+ */
+ public function batchDeleteLiveDomainConfigsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainNames)) {
+ $query['DomainNames'] = $request->domainNames;
+ }
+ if (!Utils::isUnset($request->functionNames)) {
+ $query['FunctionNames'] = $request->functionNames;
+ }
+ if (!Utils::isUnset($request->ownerAccount)) {
+ $query['OwnerAccount'] = $request->ownerAccount;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'BatchDeleteLiveDomainConfigs',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return BatchDeleteLiveDomainConfigsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param BatchDeleteLiveDomainConfigsRequest $request
+ *
+ * @return BatchDeleteLiveDomainConfigsResponse
+ */
+ public function batchDeleteLiveDomainConfigs($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->batchDeleteLiveDomainConfigsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param BatchSetLiveDomainConfigsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return BatchSetLiveDomainConfigsResponse
+ */
+ public function batchSetLiveDomainConfigsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainNames)) {
+ $query['DomainNames'] = $request->domainNames;
+ }
+ if (!Utils::isUnset($request->functions)) {
+ $query['Functions'] = $request->functions;
+ }
+ if (!Utils::isUnset($request->ownerAccount)) {
+ $query['OwnerAccount'] = $request->ownerAccount;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'BatchSetLiveDomainConfigs',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return BatchSetLiveDomainConfigsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param BatchSetLiveDomainConfigsRequest $request
+ *
+ * @return BatchSetLiveDomainConfigsResponse
+ */
+ public function batchSetLiveDomainConfigs($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->batchSetLiveDomainConfigsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CancelMuteAllGroupUserRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CancelMuteAllGroupUserResponse
+ */
+ public function cancelMuteAllGroupUserWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->operatorUserId)) {
+ $body['OperatorUserId'] = $request->operatorUserId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'CancelMuteAllGroupUser',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CancelMuteAllGroupUserResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CancelMuteAllGroupUserRequest $request
+ *
+ * @return CancelMuteAllGroupUserResponse
+ */
+ public function cancelMuteAllGroupUser($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->cancelMuteAllGroupUserWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CloseLiveShiftRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CloseLiveShiftResponse
+ */
+ public function closeLiveShiftWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CloseLiveShift',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CloseLiveShiftResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CloseLiveShiftRequest $request
+ *
+ * @return CloseLiveShiftResponse
+ */
+ public function closeLiveShift($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->closeLiveShiftWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CopyCasterRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CopyCasterResponse
+ */
+ public function copyCasterWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterName)) {
+ $query['CasterName'] = $request->casterName;
+ }
+ if (!Utils::isUnset($request->clientToken)) {
+ $query['ClientToken'] = $request->clientToken;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->srcCasterId)) {
+ $query['SrcCasterId'] = $request->srcCasterId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CopyCaster',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CopyCasterResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CopyCasterRequest $request
+ *
+ * @return CopyCasterResponse
+ */
+ public function copyCaster($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->copyCasterWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CopyCasterSceneConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CopyCasterSceneConfigResponse
+ */
+ public function copyCasterSceneConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->fromSceneId)) {
+ $query['FromSceneId'] = $request->fromSceneId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->toSceneId)) {
+ $query['ToSceneId'] = $request->toSceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CopyCasterSceneConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CopyCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CopyCasterSceneConfigRequest $request
+ *
+ * @return CopyCasterSceneConfigResponse
+ */
+ public function copyCasterSceneConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->copyCasterSceneConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateCasterRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateCasterResponse
+ */
+ public function createCasterWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterName)) {
+ $query['CasterName'] = $request->casterName;
+ }
+ if (!Utils::isUnset($request->casterTemplate)) {
+ $query['CasterTemplate'] = $request->casterTemplate;
+ }
+ if (!Utils::isUnset($request->chargeType)) {
+ $query['ChargeType'] = $request->chargeType;
+ }
+ if (!Utils::isUnset($request->clientToken)) {
+ $query['ClientToken'] = $request->clientToken;
+ }
+ if (!Utils::isUnset($request->expireTime)) {
+ $query['ExpireTime'] = $request->expireTime;
+ }
+ if (!Utils::isUnset($request->normType)) {
+ $query['NormType'] = $request->normType;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->purchaseTime)) {
+ $query['PurchaseTime'] = $request->purchaseTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateCaster',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateCasterResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateCasterRequest $request
+ *
+ * @return CreateCasterResponse
+ */
+ public function createCaster($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createCasterWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateCustomTemplateRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateCustomTemplateResponse
+ */
+ public function createCustomTemplateWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->customTemplate)) {
+ $query['CustomTemplate'] = $request->customTemplate;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->template)) {
+ $query['Template'] = $request->template;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateCustomTemplate',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateCustomTemplateResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateCustomTemplateRequest $request
+ *
+ * @return CreateCustomTemplateResponse
+ */
+ public function createCustomTemplate($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createCustomTemplateWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateLiveRealTimeLogDeliveryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateLiveRealTimeLogDeliveryResponse
+ */
+ public function createLiveRealTimeLogDeliveryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateLiveRealTimeLogDelivery',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateLiveRealTimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateLiveRealTimeLogDeliveryRequest $request
+ *
+ * @return CreateLiveRealTimeLogDeliveryResponse
+ */
+ public function createLiveRealTimeLogDelivery($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createLiveRealTimeLogDeliveryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateLiveStreamMonitorRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateLiveStreamMonitorResponse
+ */
+ public function createLiveStreamMonitorWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->inputList)) {
+ $query['InputList'] = $request->inputList;
+ }
+ if (!Utils::isUnset($request->monitorName)) {
+ $query['MonitorName'] = $request->monitorName;
+ }
+ if (!Utils::isUnset($request->outputTemplate)) {
+ $query['OutputTemplate'] = $request->outputTemplate;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateLiveStreamMonitor',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateLiveStreamMonitorRequest $request
+ *
+ * @return CreateLiveStreamMonitorResponse
+ */
+ public function createLiveStreamMonitor($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createLiveStreamMonitorWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateLiveStreamRecordIndexFilesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateLiveStreamRecordIndexFilesResponse
+ */
+ public function createLiveStreamRecordIndexFilesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->ossObject)) {
+ $query['OssObject'] = $request->ossObject;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateLiveStreamRecordIndexFiles',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateLiveStreamRecordIndexFilesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateLiveStreamRecordIndexFilesRequest $request
+ *
+ * @return CreateLiveStreamRecordIndexFilesResponse
+ */
+ public function createLiveStreamRecordIndexFiles($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createLiveStreamRecordIndexFilesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateLiveTranscodeTemplateRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateLiveTranscodeTemplateResponse
+ */
+ public function createLiveTranscodeTemplateWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->templateConfig)) {
+ $query['TemplateConfig'] = $request->templateConfig;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $query['Type'] = $request->type;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateLiveTranscodeTemplate',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateLiveTranscodeTemplateResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateLiveTranscodeTemplateRequest $request
+ *
+ * @return CreateLiveTranscodeTemplateResponse
+ */
+ public function createLiveTranscodeTemplate($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createLiveTranscodeTemplateWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateMessageAppRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateMessageAppResponse
+ */
+ public function createMessageAppWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new CreateMessageAppShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->appConfig)) {
+ $request->appConfigShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->appConfig, 'AppConfig', 'json');
+ }
+ if (!Utils::isUnset($tmpReq->extension)) {
+ $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json');
+ }
+ $body = [];
+ if (!Utils::isUnset($request->appConfigShrink)) {
+ $body['AppConfig'] = $request->appConfigShrink;
+ }
+ if (!Utils::isUnset($request->appName)) {
+ $body['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->extensionShrink)) {
+ $body['Extension'] = $request->extensionShrink;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateMessageApp',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateMessageAppResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateMessageAppRequest $request
+ *
+ * @return CreateMessageAppResponse
+ */
+ public function createMessageApp($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createMessageAppWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateMessageGroupRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateMessageGroupResponse
+ */
+ public function createMessageGroupWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new CreateMessageGroupShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->extension)) {
+ $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json');
+ }
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->creatorId)) {
+ $body['CreatorId'] = $request->creatorId;
+ }
+ if (!Utils::isUnset($request->extensionShrink)) {
+ $body['Extension'] = $request->extensionShrink;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateMessageGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateMessageGroupRequest $request
+ *
+ * @return CreateMessageGroupResponse
+ */
+ public function createMessageGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createMessageGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param CreateMixStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return CreateMixStreamResponse
+ */
+ public function createMixStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->callbackConfig)) {
+ $query['CallbackConfig'] = $request->callbackConfig;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->inputStreamList)) {
+ $query['InputStreamList'] = $request->inputStreamList;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->outputConfig)) {
+ $query['OutputConfig'] = $request->outputConfig;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'CreateMixStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return CreateMixStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param CreateMixStreamRequest $request
+ *
+ * @return CreateMixStreamResponse
+ */
+ public function createMixStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->createMixStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterResponse
+ */
+ public function deleteCasterWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCaster',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterRequest $request
+ *
+ * @return DeleteCasterResponse
+ */
+ public function deleteCaster($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterComponentRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterComponentResponse
+ */
+ public function deleteCasterComponentWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentId)) {
+ $query['ComponentId'] = $request->componentId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCasterComponent',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterComponentResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterComponentRequest $request
+ *
+ * @return DeleteCasterComponentResponse
+ */
+ public function deleteCasterComponent($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterComponentWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterEpisodeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterEpisodeResponse
+ */
+ public function deleteCasterEpisodeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->episodeId)) {
+ $query['EpisodeId'] = $request->episodeId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCasterEpisode',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterEpisodeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterEpisodeRequest $request
+ *
+ * @return DeleteCasterEpisodeResponse
+ */
+ public function deleteCasterEpisode($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterEpisodeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterEpisodeGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterEpisodeGroupResponse
+ */
+ public function deleteCasterEpisodeGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCasterEpisodeGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterEpisodeGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterEpisodeGroupRequest $request
+ *
+ * @return DeleteCasterEpisodeGroupResponse
+ */
+ public function deleteCasterEpisodeGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterEpisodeGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterLayoutRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterLayoutResponse
+ */
+ public function deleteCasterLayoutWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCasterLayout',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterLayoutResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterLayoutRequest $request
+ *
+ * @return DeleteCasterLayoutResponse
+ */
+ public function deleteCasterLayout($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterLayoutWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterProgramRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterProgramResponse
+ */
+ public function deleteCasterProgramWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCasterProgram',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterProgramRequest $request
+ *
+ * @return DeleteCasterProgramResponse
+ */
+ public function deleteCasterProgram($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterProgramWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterSceneConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterSceneConfigResponse
+ */
+ public function deleteCasterSceneConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $query['Type'] = $request->type;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCasterSceneConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterSceneConfigRequest $request
+ *
+ * @return DeleteCasterSceneConfigResponse
+ */
+ public function deleteCasterSceneConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterSceneConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCasterVideoResourceRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCasterVideoResourceResponse
+ */
+ public function deleteCasterVideoResourceWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCasterVideoResource',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCasterVideoResourceRequest $request
+ *
+ * @return DeleteCasterVideoResourceResponse
+ */
+ public function deleteCasterVideoResource($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCasterVideoResourceWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteCustomTemplateRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteCustomTemplateResponse
+ */
+ public function deleteCustomTemplateWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->template)) {
+ $query['Template'] = $request->template;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteCustomTemplate',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteCustomTemplateResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteCustomTemplateRequest $request
+ *
+ * @return DeleteCustomTemplateResponse
+ */
+ public function deleteCustomTemplate($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteCustomTemplateWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveAppRecordConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveAppRecordConfigResponse
+ */
+ public function deleteLiveAppRecordConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveAppRecordConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveAppRecordConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveAppRecordConfigRequest $request
+ *
+ * @return DeleteLiveAppRecordConfigResponse
+ */
+ public function deleteLiveAppRecordConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveAppRecordConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveAppSnapshotConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveAppSnapshotConfigResponse
+ */
+ public function deleteLiveAppSnapshotConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveAppSnapshotConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveAppSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveAppSnapshotConfigRequest $request
+ *
+ * @return DeleteLiveAppSnapshotConfigResponse
+ */
+ public function deleteLiveAppSnapshotConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveAppSnapshotConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveAudioAuditConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveAudioAuditConfigResponse
+ */
+ public function deleteLiveAudioAuditConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveAudioAuditConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveAudioAuditConfigRequest $request
+ *
+ * @return DeleteLiveAudioAuditConfigResponse
+ */
+ public function deleteLiveAudioAuditConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveAudioAuditConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveAudioAuditNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveAudioAuditNotifyConfigResponse
+ */
+ public function deleteLiveAudioAuditNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveAudioAuditNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveAudioAuditNotifyConfigRequest $request
+ *
+ * @return DeleteLiveAudioAuditNotifyConfigResponse
+ */
+ public function deleteLiveAudioAuditNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveAudioAuditNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveDetectNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveDetectNotifyConfigResponse
+ */
+ public function deleteLiveDetectNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveDetectNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveDetectNotifyConfigRequest $request
+ *
+ * @return DeleteLiveDetectNotifyConfigResponse
+ */
+ public function deleteLiveDetectNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveDetectNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveDomainRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveDomainResponse
+ */
+ public function deleteLiveDomainWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerAccount)) {
+ $query['OwnerAccount'] = $request->ownerAccount;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveDomain',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveDomainRequest $request
+ *
+ * @return DeleteLiveDomainResponse
+ */
+ public function deleteLiveDomain($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveDomainWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveDomainMappingRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveDomainMappingResponse
+ */
+ public function deleteLiveDomainMappingWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pullDomain)) {
+ $query['PullDomain'] = $request->pullDomain;
+ }
+ if (!Utils::isUnset($request->pushDomain)) {
+ $query['PushDomain'] = $request->pushDomain;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveDomainMapping',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveDomainMappingResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveDomainMappingRequest $request
+ *
+ * @return DeleteLiveDomainMappingResponse
+ */
+ public function deleteLiveDomainMapping($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveDomainMappingWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveDomainPlayMappingRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveDomainPlayMappingResponse
+ */
+ public function deleteLiveDomainPlayMappingWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->playDomain)) {
+ $query['PlayDomain'] = $request->playDomain;
+ }
+ if (!Utils::isUnset($request->pullDomain)) {
+ $query['PullDomain'] = $request->pullDomain;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveDomainPlayMapping',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveDomainPlayMappingResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveDomainPlayMappingRequest $request
+ *
+ * @return DeleteLiveDomainPlayMappingResponse
+ */
+ public function deleteLiveDomainPlayMapping($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveDomainPlayMappingWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveEdgeTransferRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveEdgeTransferResponse
+ */
+ public function deleteLiveEdgeTransferWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveEdgeTransfer',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveEdgeTransferResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveEdgeTransferRequest $request
+ *
+ * @return DeleteLiveEdgeTransferResponse
+ */
+ public function deleteLiveEdgeTransfer($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveEdgeTransferWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveLazyPullStreamInfoConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveLazyPullStreamInfoConfigResponse
+ */
+ public function deleteLiveLazyPullStreamInfoConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveLazyPullStreamInfoConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveLazyPullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveLazyPullStreamInfoConfigRequest $request
+ *
+ * @return DeleteLiveLazyPullStreamInfoConfigResponse
+ */
+ public function deleteLiveLazyPullStreamInfoConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveLazyPullStreamInfoConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLivePullStreamInfoConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLivePullStreamInfoConfigResponse
+ */
+ public function deleteLivePullStreamInfoConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLivePullStreamInfoConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLivePullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLivePullStreamInfoConfigRequest $request
+ *
+ * @return DeleteLivePullStreamInfoConfigResponse
+ */
+ public function deleteLivePullStreamInfoConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLivePullStreamInfoConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveRealTimeLogLogstoreRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveRealTimeLogLogstoreResponse
+ */
+ public function deleteLiveRealTimeLogLogstoreWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveRealTimeLogLogstore',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveRealTimeLogLogstoreResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveRealTimeLogLogstoreRequest $request
+ *
+ * @return DeleteLiveRealTimeLogLogstoreResponse
+ */
+ public function deleteLiveRealTimeLogLogstore($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveRealTimeLogLogstoreWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveRealtimeLogDeliveryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveRealtimeLogDeliveryResponse
+ */
+ public function deleteLiveRealtimeLogDeliveryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveRealtimeLogDelivery',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveRealtimeLogDeliveryRequest $request
+ *
+ * @return DeleteLiveRealtimeLogDeliveryResponse
+ */
+ public function deleteLiveRealtimeLogDelivery($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveRealtimeLogDeliveryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveRecordNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveRecordNotifyConfigResponse
+ */
+ public function deleteLiveRecordNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveRecordNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveRecordNotifyConfigRequest $request
+ *
+ * @return DeleteLiveRecordNotifyConfigResponse
+ */
+ public function deleteLiveRecordNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveRecordNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveRecordVodConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveRecordVodConfigResponse
+ */
+ public function deleteLiveRecordVodConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveRecordVodConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveRecordVodConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveRecordVodConfigRequest $request
+ *
+ * @return DeleteLiveRecordVodConfigResponse
+ */
+ public function deleteLiveRecordVodConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveRecordVodConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveSnapshotDetectPornConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveSnapshotDetectPornConfigResponse
+ */
+ public function deleteLiveSnapshotDetectPornConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveSnapshotDetectPornConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveSnapshotDetectPornConfigRequest $request
+ *
+ * @return DeleteLiveSnapshotDetectPornConfigResponse
+ */
+ public function deleteLiveSnapshotDetectPornConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveSnapshotDetectPornConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveSnapshotNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveSnapshotNotifyConfigResponse
+ */
+ public function deleteLiveSnapshotNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveSnapshotNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveSnapshotNotifyConfigRequest $request
+ *
+ * @return DeleteLiveSnapshotNotifyConfigResponse
+ */
+ public function deleteLiveSnapshotNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveSnapshotNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveSpecificStagingConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveSpecificStagingConfigResponse
+ */
+ public function deleteLiveSpecificStagingConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->configId)) {
+ $query['ConfigId'] = $request->configId;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveSpecificStagingConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveSpecificStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveSpecificStagingConfigRequest $request
+ *
+ * @return DeleteLiveSpecificStagingConfigResponse
+ */
+ public function deleteLiveSpecificStagingConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveSpecificStagingConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveStreamMonitorRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveStreamMonitorResponse
+ */
+ public function deleteLiveStreamMonitorWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->monitorId)) {
+ $query['MonitorId'] = $request->monitorId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveStreamMonitor',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveStreamMonitorRequest $request
+ *
+ * @return DeleteLiveStreamMonitorResponse
+ */
+ public function deleteLiveStreamMonitor($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveStreamMonitorWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveStreamRecordIndexFilesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveStreamRecordIndexFilesResponse
+ */
+ public function deleteLiveStreamRecordIndexFilesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->recordId)) {
+ $query['RecordId'] = $request->recordId;
+ }
+ if (!Utils::isUnset($request->removeFile)) {
+ $query['RemoveFile'] = $request->removeFile;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveStreamRecordIndexFiles',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveStreamRecordIndexFilesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveStreamRecordIndexFilesRequest $request
+ *
+ * @return DeleteLiveStreamRecordIndexFilesResponse
+ */
+ public function deleteLiveStreamRecordIndexFiles($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveStreamRecordIndexFilesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveStreamTranscodeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveStreamTranscodeResponse
+ */
+ public function deleteLiveStreamTranscodeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->template)) {
+ $query['Template'] = $request->template;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveStreamTranscode',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveStreamTranscodeRequest $request
+ *
+ * @return DeleteLiveStreamTranscodeResponse
+ */
+ public function deleteLiveStreamTranscode($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveStreamTranscodeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveStreamWatermarkRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveStreamWatermarkResponse
+ */
+ public function deleteLiveStreamWatermarkWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->templateId)) {
+ $query['TemplateId'] = $request->templateId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveStreamWatermark',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveStreamWatermarkResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveStreamWatermarkRequest $request
+ *
+ * @return DeleteLiveStreamWatermarkResponse
+ */
+ public function deleteLiveStreamWatermark($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveStreamWatermarkWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveStreamWatermarkRuleRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveStreamWatermarkRuleResponse
+ */
+ public function deleteLiveStreamWatermarkRuleWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->ruleId)) {
+ $query['RuleId'] = $request->ruleId;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveStreamWatermarkRule',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveStreamWatermarkRuleResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveStreamWatermarkRuleRequest $request
+ *
+ * @return DeleteLiveStreamWatermarkRuleResponse
+ */
+ public function deleteLiveStreamWatermarkRule($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveStreamWatermarkRuleWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteLiveStreamsNotifyUrlConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteLiveStreamsNotifyUrlConfigResponse
+ */
+ public function deleteLiveStreamsNotifyUrlConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteLiveStreamsNotifyUrlConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteLiveStreamsNotifyUrlConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteLiveStreamsNotifyUrlConfigRequest $request
+ *
+ * @return DeleteLiveStreamsNotifyUrlConfigResponse
+ */
+ public function deleteLiveStreamsNotifyUrlConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteLiveStreamsNotifyUrlConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteMessageAppRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteMessageAppResponse
+ */
+ public function deleteMessageAppWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteMessageApp',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteMessageAppResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteMessageAppRequest $request
+ *
+ * @return DeleteMessageAppResponse
+ */
+ public function deleteMessageApp($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteMessageAppWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteMixStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteMixStreamResponse
+ */
+ public function deleteMixStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->mixStreamId)) {
+ $query['MixStreamId'] = $request->mixStreamId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteMixStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteMixStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteMixStreamRequest $request
+ *
+ * @return DeleteMixStreamResponse
+ */
+ public function deleteMixStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteMixStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteMultiRateConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteMultiRateConfigResponse
+ */
+ public function deleteMultiRateConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->deleteAll)) {
+ $query['DeleteAll'] = $request->deleteAll;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $query['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->templates)) {
+ $query['Templates'] = $request->templates;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteMultiRateConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteMultiRateConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteMultiRateConfigRequest $request
+ *
+ * @return DeleteMultiRateConfigResponse
+ */
+ public function deleteMultiRateConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteMultiRateConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeletePlaylistRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeletePlaylistResponse
+ */
+ public function deletePlaylistWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeletePlaylist',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeletePlaylistResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeletePlaylistRequest $request
+ *
+ * @return DeletePlaylistResponse
+ */
+ public function deletePlaylist($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deletePlaylistWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeletePlaylistItemsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeletePlaylistItemsResponse
+ */
+ public function deletePlaylistItemsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ if (!Utils::isUnset($request->programItemIds)) {
+ $query['ProgramItemIds'] = $request->programItemIds;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeletePlaylistItems',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeletePlaylistItemsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeletePlaylistItemsRequest $request
+ *
+ * @return DeletePlaylistItemsResponse
+ */
+ public function deletePlaylistItems($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deletePlaylistItemsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteRoomRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteRoomResponse
+ */
+ public function deleteRoomWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteRoom',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteRoomResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteRoomRequest $request
+ *
+ * @return DeleteRoomResponse
+ */
+ public function deleteRoom($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteRoomWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteSnapshotCallbackAuthRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteSnapshotCallbackAuthResponse
+ */
+ public function deleteSnapshotCallbackAuthWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteSnapshotCallbackAuth',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteSnapshotCallbackAuthResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteSnapshotCallbackAuthRequest $request
+ *
+ * @return DeleteSnapshotCallbackAuthResponse
+ */
+ public function deleteSnapshotCallbackAuth($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteSnapshotCallbackAuthWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteSnapshotFilesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteSnapshotFilesResponse
+ */
+ public function deleteSnapshotFilesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->createTimestampList)) {
+ $query['CreateTimestampList'] = $request->createTimestampList;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->removeFile)) {
+ $query['RemoveFile'] = $request->removeFile;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteSnapshotFiles',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteSnapshotFilesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteSnapshotFilesRequest $request
+ *
+ * @return DeleteSnapshotFilesResponse
+ */
+ public function deleteSnapshotFiles($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteSnapshotFilesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DeleteStudioLayoutRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DeleteStudioLayoutResponse
+ */
+ public function deleteStudioLayoutWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DeleteStudioLayout',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DeleteStudioLayoutResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DeleteStudioLayoutRequest $request
+ *
+ * @return DeleteStudioLayoutResponse
+ */
+ public function deleteStudioLayout($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->deleteStudioLayoutWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeAutoShowListTasksRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeAutoShowListTasksResponse
+ */
+ public function describeAutoShowListTasksWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeAutoShowListTasks',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeAutoShowListTasksResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeAutoShowListTasksRequest $request
+ *
+ * @return DescribeAutoShowListTasksResponse
+ */
+ public function describeAutoShowListTasks($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeAutoShowListTasksWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterChannelsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterChannelsResponse
+ */
+ public function describeCasterChannelsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterChannels',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterChannelsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterChannelsRequest $request
+ *
+ * @return DescribeCasterChannelsResponse
+ */
+ public function describeCasterChannels($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterChannelsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterComponentsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterComponentsResponse
+ */
+ public function describeCasterComponentsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentId)) {
+ $query['ComponentId'] = $request->componentId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterComponents',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterComponentsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterComponentsRequest $request
+ *
+ * @return DescribeCasterComponentsResponse
+ */
+ public function describeCasterComponents($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterComponentsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterConfigResponse
+ */
+ public function describeCasterConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterConfigRequest $request
+ *
+ * @return DescribeCasterConfigResponse
+ */
+ public function describeCasterConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterLayoutsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterLayoutsResponse
+ */
+ public function describeCasterLayoutsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterLayouts',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterLayoutsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterLayoutsRequest $request
+ *
+ * @return DescribeCasterLayoutsResponse
+ */
+ public function describeCasterLayouts($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterLayoutsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterProgramRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterProgramResponse
+ */
+ public function describeCasterProgramWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->episodeId)) {
+ $query['EpisodeId'] = $request->episodeId;
+ }
+ if (!Utils::isUnset($request->episodeType)) {
+ $query['EpisodeType'] = $request->episodeType;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->status)) {
+ $query['Status'] = $request->status;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterProgram',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterProgramRequest $request
+ *
+ * @return DescribeCasterProgramResponse
+ */
+ public function describeCasterProgram($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterProgramWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterSceneAudioRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterSceneAudioResponse
+ */
+ public function describeCasterSceneAudioWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterSceneAudio',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterSceneAudioResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterSceneAudioRequest $request
+ *
+ * @return DescribeCasterSceneAudioResponse
+ */
+ public function describeCasterSceneAudio($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterSceneAudioWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterScenesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterScenesResponse
+ */
+ public function describeCasterScenesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterScenes',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterScenesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterScenesRequest $request
+ *
+ * @return DescribeCasterScenesResponse
+ */
+ public function describeCasterScenes($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterScenesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterStreamUrlRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterStreamUrlResponse
+ */
+ public function describeCasterStreamUrlWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterStreamUrl',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterStreamUrlResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterStreamUrlRequest $request
+ *
+ * @return DescribeCasterStreamUrlResponse
+ */
+ public function describeCasterStreamUrl($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterStreamUrlWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterSyncGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterSyncGroupResponse
+ */
+ public function describeCasterSyncGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterSyncGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterSyncGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterSyncGroupRequest $request
+ *
+ * @return DescribeCasterSyncGroupResponse
+ */
+ public function describeCasterSyncGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterSyncGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCasterVideoResourcesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCasterVideoResourcesResponse
+ */
+ public function describeCasterVideoResourcesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasterVideoResources',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCasterVideoResourcesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCasterVideoResourcesRequest $request
+ *
+ * @return DescribeCasterVideoResourcesResponse
+ */
+ public function describeCasterVideoResources($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCasterVideoResourcesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeCastersRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeCastersResponse
+ */
+ public function describeCastersWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->casterName)) {
+ $query['CasterName'] = $request->casterName;
+ }
+ if (!Utils::isUnset($request->chargeType)) {
+ $query['ChargeType'] = $request->chargeType;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->normType)) {
+ $query['NormType'] = $request->normType;
+ }
+ if (!Utils::isUnset($request->orderByModifyAsc)) {
+ $query['OrderByModifyAsc'] = $request->orderByModifyAsc;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->status)) {
+ $query['Status'] = $request->status;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeCasters',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeCastersResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeCastersRequest $request
+ *
+ * @return DescribeCastersResponse
+ */
+ public function describeCasters($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeCastersWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeDomainUsageDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeDomainUsageDataResponse
+ */
+ public function describeDomainUsageDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->area)) {
+ $query['Area'] = $request->area;
+ }
+ if (!Utils::isUnset($request->dataProtocol)) {
+ $query['DataProtocol'] = $request->dataProtocol;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->field)) {
+ $query['Field'] = $request->field;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $query['Type'] = $request->type;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeDomainUsageData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeDomainUsageDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeDomainUsageDataRequest $request
+ *
+ * @return DescribeDomainUsageDataResponse
+ */
+ public function describeDomainUsageData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeDomainUsageDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeDomainWithIntegrityRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeDomainWithIntegrityResponse
+ */
+ public function describeDomainWithIntegrityWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeDomainWithIntegrity',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeDomainWithIntegrityResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeDomainWithIntegrityRequest $request
+ *
+ * @return DescribeDomainWithIntegrityResponse
+ */
+ public function describeDomainWithIntegrity($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeDomainWithIntegrityWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeForbidPushStreamRoomListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeForbidPushStreamRoomListResponse
+ */
+ public function describeForbidPushStreamRoomListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeForbidPushStreamRoomList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeForbidPushStreamRoomListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeForbidPushStreamRoomListRequest $request
+ *
+ * @return DescribeForbidPushStreamRoomListResponse
+ */
+ public function describeForbidPushStreamRoomList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeForbidPushStreamRoomListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeHlsLiveStreamRealTimeBpsDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeHlsLiveStreamRealTimeBpsDataResponse
+ */
+ public function describeHlsLiveStreamRealTimeBpsDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeHlsLiveStreamRealTimeBpsData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeHlsLiveStreamRealTimeBpsDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeHlsLiveStreamRealTimeBpsDataRequest $request
+ *
+ * @return DescribeHlsLiveStreamRealTimeBpsDataResponse
+ */
+ public function describeHlsLiveStreamRealTimeBpsData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeHlsLiveStreamRealTimeBpsDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveAudioAuditConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveAudioAuditConfigResponse
+ */
+ public function describeLiveAudioAuditConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveAudioAuditConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveAudioAuditConfigRequest $request
+ *
+ * @return DescribeLiveAudioAuditConfigResponse
+ */
+ public function describeLiveAudioAuditConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveAudioAuditConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveAudioAuditNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveAudioAuditNotifyConfigResponse
+ */
+ public function describeLiveAudioAuditNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveAudioAuditNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveAudioAuditNotifyConfigRequest $request
+ *
+ * @return DescribeLiveAudioAuditNotifyConfigResponse
+ */
+ public function describeLiveAudioAuditNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveAudioAuditNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveCertificateDetailRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveCertificateDetailResponse
+ */
+ public function describeLiveCertificateDetailWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->certName)) {
+ $query['CertName'] = $request->certName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveCertificateDetail',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveCertificateDetailResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveCertificateDetailRequest $request
+ *
+ * @return DescribeLiveCertificateDetailResponse
+ */
+ public function describeLiveCertificateDetail($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveCertificateDetailWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveCertificateListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveCertificateListResponse
+ */
+ public function describeLiveCertificateListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveCertificateList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveCertificateListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveCertificateListRequest $request
+ *
+ * @return DescribeLiveCertificateListResponse
+ */
+ public function describeLiveCertificateList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveCertificateListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDetectNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDetectNotifyConfigResponse
+ */
+ public function describeLiveDetectNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDetectNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDetectNotifyConfigRequest $request
+ *
+ * @return DescribeLiveDetectNotifyConfigResponse
+ */
+ public function describeLiveDetectNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDetectNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDetectPornDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDetectPornDataResponse
+ */
+ public function describeLiveDetectPornDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->fee)) {
+ $query['Fee'] = $request->fee;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->region)) {
+ $query['Region'] = $request->region;
+ }
+ if (!Utils::isUnset($request->scene)) {
+ $query['Scene'] = $request->scene;
+ }
+ if (!Utils::isUnset($request->splitBy)) {
+ $query['SplitBy'] = $request->splitBy;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDetectPornData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDetectPornDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDetectPornDataRequest $request
+ *
+ * @return DescribeLiveDetectPornDataResponse
+ */
+ public function describeLiveDetectPornData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDetectPornDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainBpsDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainBpsDataResponse
+ */
+ public function describeLiveDomainBpsDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ispNameEn)) {
+ $query['IspNameEn'] = $request->ispNameEn;
+ }
+ if (!Utils::isUnset($request->locationNameEn)) {
+ $query['LocationNameEn'] = $request->locationNameEn;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainBpsData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainBpsDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainBpsDataRequest $request
+ *
+ * @return DescribeLiveDomainBpsDataResponse
+ */
+ public function describeLiveDomainBpsData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainBpsDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainBpsDataByLayerRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainBpsDataByLayerResponse
+ */
+ public function describeLiveDomainBpsDataByLayerWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ispNameEn)) {
+ $query['IspNameEn'] = $request->ispNameEn;
+ }
+ if (!Utils::isUnset($request->layer)) {
+ $query['Layer'] = $request->layer;
+ }
+ if (!Utils::isUnset($request->locationNameEn)) {
+ $query['LocationNameEn'] = $request->locationNameEn;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainBpsDataByLayer',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainBpsDataByLayerResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainBpsDataByLayerRequest $request
+ *
+ * @return DescribeLiveDomainBpsDataByLayerResponse
+ */
+ public function describeLiveDomainBpsDataByLayer($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainBpsDataByLayerWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainBpsDataByTimeStampRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainBpsDataByTimeStampResponse
+ */
+ public function describeLiveDomainBpsDataByTimeStampWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ispNames)) {
+ $query['IspNames'] = $request->ispNames;
+ }
+ if (!Utils::isUnset($request->locationNames)) {
+ $query['LocationNames'] = $request->locationNames;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->timePoint)) {
+ $query['TimePoint'] = $request->timePoint;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainBpsDataByTimeStamp',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainBpsDataByTimeStampResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainBpsDataByTimeStampRequest $request
+ *
+ * @return DescribeLiveDomainBpsDataByTimeStampResponse
+ */
+ public function describeLiveDomainBpsDataByTimeStamp($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainBpsDataByTimeStampWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainCertificateInfoRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainCertificateInfoResponse
+ */
+ public function describeLiveDomainCertificateInfoWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainCertificateInfo',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainCertificateInfoResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainCertificateInfoRequest $request
+ *
+ * @return DescribeLiveDomainCertificateInfoResponse
+ */
+ public function describeLiveDomainCertificateInfo($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainCertificateInfoWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainConfigsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainConfigsResponse
+ */
+ public function describeLiveDomainConfigsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->functionNames)) {
+ $query['FunctionNames'] = $request->functionNames;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainConfigs',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainConfigsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainConfigsRequest $request
+ *
+ * @return DescribeLiveDomainConfigsResponse
+ */
+ public function describeLiveDomainConfigs($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainConfigsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainDetailRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainDetailResponse
+ */
+ public function describeLiveDomainDetailWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainDetail',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainDetailResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainDetailRequest $request
+ *
+ * @return DescribeLiveDomainDetailResponse
+ */
+ public function describeLiveDomainDetail($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainDetailWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainFrameRateAndBitRateDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainFrameRateAndBitRateDataResponse
+ */
+ public function describeLiveDomainFrameRateAndBitRateDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->queryTime)) {
+ $query['QueryTime'] = $request->queryTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainFrameRateAndBitRateData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainFrameRateAndBitRateDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainFrameRateAndBitRateDataRequest $request
+ *
+ * @return DescribeLiveDomainFrameRateAndBitRateDataResponse
+ */
+ public function describeLiveDomainFrameRateAndBitRateData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainFrameRateAndBitRateDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainLimitRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainLimitResponse
+ */
+ public function describeLiveDomainLimitWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainLimit',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainLimitResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainLimitRequest $request
+ *
+ * @return DescribeLiveDomainLimitResponse
+ */
+ public function describeLiveDomainLimit($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainLimitWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainLogRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainLogResponse
+ */
+ public function describeLiveDomainLogWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNumber)) {
+ $query['PageNumber'] = $request->pageNumber;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainLog',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainLogResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainLogRequest $request
+ *
+ * @return DescribeLiveDomainLogResponse
+ */
+ public function describeLiveDomainLog($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainLogWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainMappingRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainMappingResponse
+ */
+ public function describeLiveDomainMappingWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainMapping',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainMappingResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainMappingRequest $request
+ *
+ * @return DescribeLiveDomainMappingResponse
+ */
+ public function describeLiveDomainMapping($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainMappingWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainOnlineUserNumRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainOnlineUserNumResponse
+ */
+ public function describeLiveDomainOnlineUserNumWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->queryTime)) {
+ $query['QueryTime'] = $request->queryTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainOnlineUserNum',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainOnlineUserNumResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainOnlineUserNumRequest $request
+ *
+ * @return DescribeLiveDomainOnlineUserNumResponse
+ */
+ public function describeLiveDomainOnlineUserNum($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainOnlineUserNumWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainPushBpsDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainPushBpsDataResponse
+ */
+ public function describeLiveDomainPushBpsDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ispNameEn)) {
+ $query['IspNameEn'] = $request->ispNameEn;
+ }
+ if (!Utils::isUnset($request->locationNameEn)) {
+ $query['LocationNameEn'] = $request->locationNameEn;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainPushBpsData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainPushBpsDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainPushBpsDataRequest $request
+ *
+ * @return DescribeLiveDomainPushBpsDataResponse
+ */
+ public function describeLiveDomainPushBpsData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainPushBpsDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainPushTrafficDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainPushTrafficDataResponse
+ */
+ public function describeLiveDomainPushTrafficDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ispNameEn)) {
+ $query['IspNameEn'] = $request->ispNameEn;
+ }
+ if (!Utils::isUnset($request->locationNameEn)) {
+ $query['LocationNameEn'] = $request->locationNameEn;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainPushTrafficData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainPushTrafficDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainPushTrafficDataRequest $request
+ *
+ * @return DescribeLiveDomainPushTrafficDataResponse
+ */
+ public function describeLiveDomainPushTrafficData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainPushTrafficDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainPvUvDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainPvUvDataResponse
+ */
+ public function describeLiveDomainPvUvDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainPvUvData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainPvUvDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainPvUvDataRequest $request
+ *
+ * @return DescribeLiveDomainPvUvDataResponse
+ */
+ public function describeLiveDomainPvUvData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainPvUvDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainRealTimeBpsDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainRealTimeBpsDataResponse
+ */
+ public function describeLiveDomainRealTimeBpsDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainRealTimeBpsData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainRealTimeBpsDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainRealTimeBpsDataRequest $request
+ *
+ * @return DescribeLiveDomainRealTimeBpsDataResponse
+ */
+ public function describeLiveDomainRealTimeBpsData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainRealTimeBpsDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainRealTimeHttpCodeDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainRealTimeHttpCodeDataResponse
+ */
+ public function describeLiveDomainRealTimeHttpCodeDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ispNameEn)) {
+ $query['IspNameEn'] = $request->ispNameEn;
+ }
+ if (!Utils::isUnset($request->locationNameEn)) {
+ $query['LocationNameEn'] = $request->locationNameEn;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainRealTimeHttpCodeData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainRealTimeHttpCodeDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainRealTimeHttpCodeDataRequest $request
+ *
+ * @return DescribeLiveDomainRealTimeHttpCodeDataResponse
+ */
+ public function describeLiveDomainRealTimeHttpCodeData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainRealTimeHttpCodeDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainRealTimeTrafficDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainRealTimeTrafficDataResponse
+ */
+ public function describeLiveDomainRealTimeTrafficDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ispNameEn)) {
+ $query['IspNameEn'] = $request->ispNameEn;
+ }
+ if (!Utils::isUnset($request->locationNameEn)) {
+ $query['LocationNameEn'] = $request->locationNameEn;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainRealTimeTrafficData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainRealTimeTrafficDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainRealTimeTrafficDataRequest $request
+ *
+ * @return DescribeLiveDomainRealTimeTrafficDataResponse
+ */
+ public function describeLiveDomainRealTimeTrafficData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainRealTimeTrafficDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainRealtimeLogDeliveryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainRealtimeLogDeliveryResponse
+ */
+ public function describeLiveDomainRealtimeLogDeliveryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainRealtimeLogDelivery',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainRealtimeLogDeliveryRequest $request
+ *
+ * @return DescribeLiveDomainRealtimeLogDeliveryResponse
+ */
+ public function describeLiveDomainRealtimeLogDelivery($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainRealtimeLogDeliveryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainRecordDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainRecordDataResponse
+ */
+ public function describeLiveDomainRecordDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->recordType)) {
+ $query['RecordType'] = $request->recordType;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainRecordData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainRecordDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainRecordDataRequest $request
+ *
+ * @return DescribeLiveDomainRecordDataResponse
+ */
+ public function describeLiveDomainRecordData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainRecordDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainRecordUsageDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainRecordUsageDataResponse
+ */
+ public function describeLiveDomainRecordUsageDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->splitBy)) {
+ $query['SplitBy'] = $request->splitBy;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainRecordUsageData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainRecordUsageDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainRecordUsageDataRequest $request
+ *
+ * @return DescribeLiveDomainRecordUsageDataResponse
+ */
+ public function describeLiveDomainRecordUsageData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainRecordUsageDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainSnapshotDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainSnapshotDataResponse
+ */
+ public function describeLiveDomainSnapshotDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainSnapshotData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainSnapshotDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainSnapshotDataRequest $request
+ *
+ * @return DescribeLiveDomainSnapshotDataResponse
+ */
+ public function describeLiveDomainSnapshotData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainSnapshotDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainStagingConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainStagingConfigResponse
+ */
+ public function describeLiveDomainStagingConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->functionNames)) {
+ $query['FunctionNames'] = $request->functionNames;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainStagingConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainStagingConfigRequest $request
+ *
+ * @return DescribeLiveDomainStagingConfigResponse
+ */
+ public function describeLiveDomainStagingConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainStagingConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainStreamTranscodeDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainStreamTranscodeDataResponse
+ */
+ public function describeLiveDomainStreamTranscodeDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->split)) {
+ $query['Split'] = $request->split;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainStreamTranscodeData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainStreamTranscodeDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainStreamTranscodeDataRequest $request
+ *
+ * @return DescribeLiveDomainStreamTranscodeDataResponse
+ */
+ public function describeLiveDomainStreamTranscodeData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainStreamTranscodeDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainTimeShiftDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainTimeShiftDataResponse
+ */
+ public function describeLiveDomainTimeShiftDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainTimeShiftData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainTimeShiftDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainTimeShiftDataRequest $request
+ *
+ * @return DescribeLiveDomainTimeShiftDataResponse
+ */
+ public function describeLiveDomainTimeShiftData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainTimeShiftDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainTrafficDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainTrafficDataResponse
+ */
+ public function describeLiveDomainTrafficDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ispNameEn)) {
+ $query['IspNameEn'] = $request->ispNameEn;
+ }
+ if (!Utils::isUnset($request->locationNameEn)) {
+ $query['LocationNameEn'] = $request->locationNameEn;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainTrafficData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainTrafficDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainTrafficDataRequest $request
+ *
+ * @return DescribeLiveDomainTrafficDataResponse
+ */
+ public function describeLiveDomainTrafficData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainTrafficDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDomainTranscodeDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDomainTranscodeDataResponse
+ */
+ public function describeLiveDomainTranscodeDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDomainTranscodeData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDomainTranscodeDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDomainTranscodeDataRequest $request
+ *
+ * @return DescribeLiveDomainTranscodeDataResponse
+ */
+ public function describeLiveDomainTranscodeData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDomainTranscodeDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveDrmUsageDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveDrmUsageDataResponse
+ */
+ public function describeLiveDrmUsageDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->splitBy)) {
+ $query['SplitBy'] = $request->splitBy;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveDrmUsageData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveDrmUsageDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveDrmUsageDataRequest $request
+ *
+ * @return DescribeLiveDrmUsageDataResponse
+ */
+ public function describeLiveDrmUsageData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveDrmUsageDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveEdgeTransferRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveEdgeTransferResponse
+ */
+ public function describeLiveEdgeTransferWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveEdgeTransfer',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveEdgeTransferResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveEdgeTransferRequest $request
+ *
+ * @return DescribeLiveEdgeTransferResponse
+ */
+ public function describeLiveEdgeTransfer($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveEdgeTransferWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveLazyPullStreamConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveLazyPullStreamConfigResponse
+ */
+ public function describeLiveLazyPullStreamConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveLazyPullStreamConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveLazyPullStreamConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveLazyPullStreamConfigRequest $request
+ *
+ * @return DescribeLiveLazyPullStreamConfigResponse
+ */
+ public function describeLiveLazyPullStreamConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveLazyPullStreamConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveProducerUsageDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveProducerUsageDataResponse
+ */
+ public function describeLiveProducerUsageDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->instance)) {
+ $query['Instance'] = $request->instance;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->region)) {
+ $query['Region'] = $request->region;
+ }
+ if (!Utils::isUnset($request->splitBy)) {
+ $query['SplitBy'] = $request->splitBy;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $query['Type'] = $request->type;
+ }
+ if (!Utils::isUnset($request->app)) {
+ $query['app'] = $request->app;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveProducerUsageData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveProducerUsageDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveProducerUsageDataRequest $request
+ *
+ * @return DescribeLiveProducerUsageDataResponse
+ */
+ public function describeLiveProducerUsageData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveProducerUsageDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLivePullStreamConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLivePullStreamConfigResponse
+ */
+ public function describeLivePullStreamConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLivePullStreamConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLivePullStreamConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLivePullStreamConfigRequest $request
+ *
+ * @return DescribeLivePullStreamConfigResponse
+ */
+ public function describeLivePullStreamConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLivePullStreamConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveRealtimeDeliveryAccRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveRealtimeDeliveryAccResponse
+ */
+ public function describeLiveRealtimeDeliveryAccWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->logStore)) {
+ $query['LogStore'] = $request->logStore;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->project)) {
+ $query['Project'] = $request->project;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveRealtimeDeliveryAcc',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveRealtimeDeliveryAccResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveRealtimeDeliveryAccRequest $request
+ *
+ * @return DescribeLiveRealtimeDeliveryAccResponse
+ */
+ public function describeLiveRealtimeDeliveryAcc($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveRealtimeDeliveryAccWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveRealtimeLogAuthorizedRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveRealtimeLogAuthorizedResponse
+ */
+ public function describeLiveRealtimeLogAuthorizedWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveRealtimeLogAuthorized',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveRealtimeLogAuthorizedResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveRealtimeLogAuthorizedRequest $request
+ *
+ * @return DescribeLiveRealtimeLogAuthorizedResponse
+ */
+ public function describeLiveRealtimeLogAuthorized($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveRealtimeLogAuthorizedWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveRecordConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveRecordConfigResponse
+ */
+ public function describeLiveRecordConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveRecordConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveRecordConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveRecordConfigRequest $request
+ *
+ * @return DescribeLiveRecordConfigResponse
+ */
+ public function describeLiveRecordConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveRecordConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveRecordNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveRecordNotifyConfigResponse
+ */
+ public function describeLiveRecordNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveRecordNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveRecordNotifyConfigRequest $request
+ *
+ * @return DescribeLiveRecordNotifyConfigResponse
+ */
+ public function describeLiveRecordNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveRecordNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveRecordVodConfigsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveRecordVodConfigsResponse
+ */
+ public function describeLiveRecordVodConfigsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveRecordVodConfigs',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveRecordVodConfigsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveRecordVodConfigsRequest $request
+ *
+ * @return DescribeLiveRecordVodConfigsResponse
+ */
+ public function describeLiveRecordVodConfigs($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveRecordVodConfigsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveShiftConfigsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveShiftConfigsResponse
+ */
+ public function describeLiveShiftConfigsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveShiftConfigs',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveShiftConfigsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveShiftConfigsRequest $request
+ *
+ * @return DescribeLiveShiftConfigsResponse
+ */
+ public function describeLiveShiftConfigs($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveShiftConfigsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveSnapshotConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveSnapshotConfigResponse
+ */
+ public function describeLiveSnapshotConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveSnapshotConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveSnapshotConfigRequest $request
+ *
+ * @return DescribeLiveSnapshotConfigResponse
+ */
+ public function describeLiveSnapshotConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveSnapshotConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveSnapshotDetectPornConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveSnapshotDetectPornConfigResponse
+ */
+ public function describeLiveSnapshotDetectPornConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveSnapshotDetectPornConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveSnapshotDetectPornConfigRequest $request
+ *
+ * @return DescribeLiveSnapshotDetectPornConfigResponse
+ */
+ public function describeLiveSnapshotDetectPornConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveSnapshotDetectPornConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveSnapshotNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveSnapshotNotifyConfigResponse
+ */
+ public function describeLiveSnapshotNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveSnapshotNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveSnapshotNotifyConfigRequest $request
+ *
+ * @return DescribeLiveSnapshotNotifyConfigResponse
+ */
+ public function describeLiveSnapshotNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveSnapshotNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamAuthCheckingRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamAuthCheckingResponse
+ */
+ public function describeLiveStreamAuthCheckingWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->url)) {
+ $query['Url'] = $request->url;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamAuthChecking',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamAuthCheckingResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamAuthCheckingRequest $request
+ *
+ * @return DescribeLiveStreamAuthCheckingResponse
+ */
+ public function describeLiveStreamAuthChecking($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamAuthCheckingWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamBitRateDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamBitRateDataResponse
+ */
+ public function describeLiveStreamBitRateDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamBitRateData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamBitRateDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamBitRateDataRequest $request
+ *
+ * @return DescribeLiveStreamBitRateDataResponse
+ */
+ public function describeLiveStreamBitRateData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamBitRateDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamCountRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamCountResponse
+ */
+ public function describeLiveStreamCountWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamCount',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamCountResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamCountRequest $request
+ *
+ * @return DescribeLiveStreamCountResponse
+ */
+ public function describeLiveStreamCount($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamCountWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamDelayConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamDelayConfigResponse
+ */
+ public function describeLiveStreamDelayConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamDelayConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamDelayConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamDelayConfigRequest $request
+ *
+ * @return DescribeLiveStreamDelayConfigResponse
+ */
+ public function describeLiveStreamDelayConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamDelayConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamHistoryUserNumRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamHistoryUserNumResponse
+ */
+ public function describeLiveStreamHistoryUserNumWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamHistoryUserNum',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamHistoryUserNumResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamHistoryUserNumRequest $request
+ *
+ * @return DescribeLiveStreamHistoryUserNumResponse
+ */
+ public function describeLiveStreamHistoryUserNum($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamHistoryUserNumWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamMetricDetailDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamMetricDetailDataResponse
+ */
+ public function describeLiveStreamMetricDetailDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->nextPageToken)) {
+ $query['NextPageToken'] = $request->nextPageToken;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->protocol)) {
+ $query['Protocol'] = $request->protocol;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamMetricDetailData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamMetricDetailDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamMetricDetailDataRequest $request
+ *
+ * @return DescribeLiveStreamMetricDetailDataResponse
+ */
+ public function describeLiveStreamMetricDetailData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamMetricDetailDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamMonitorListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamMonitorListResponse
+ */
+ public function describeLiveStreamMonitorListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->monitorId)) {
+ $query['MonitorId'] = $request->monitorId;
+ }
+ if (!Utils::isUnset($request->orderRule)) {
+ $query['OrderRule'] = $request->orderRule;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->status)) {
+ $query['Status'] = $request->status;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamMonitorList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamMonitorListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamMonitorListRequest $request
+ *
+ * @return DescribeLiveStreamMonitorListResponse
+ */
+ public function describeLiveStreamMonitorList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamMonitorListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamOptimizedFeatureConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamOptimizedFeatureConfigResponse
+ */
+ public function describeLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->configName)) {
+ $query['ConfigName'] = $request->configName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamOptimizedFeatureConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamOptimizedFeatureConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamOptimizedFeatureConfigRequest $request
+ *
+ * @return DescribeLiveStreamOptimizedFeatureConfigResponse
+ */
+ public function describeLiveStreamOptimizedFeatureConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamRecordContentRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamRecordContentResponse
+ */
+ public function describeLiveStreamRecordContentWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamRecordContent',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamRecordContentResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamRecordContentRequest $request
+ *
+ * @return DescribeLiveStreamRecordContentResponse
+ */
+ public function describeLiveStreamRecordContent($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamRecordContentWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamRecordIndexFileRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamRecordIndexFileResponse
+ */
+ public function describeLiveStreamRecordIndexFileWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->recordId)) {
+ $query['RecordId'] = $request->recordId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamRecordIndexFile',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamRecordIndexFileResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamRecordIndexFileRequest $request
+ *
+ * @return DescribeLiveStreamRecordIndexFileResponse
+ */
+ public function describeLiveStreamRecordIndexFile($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamRecordIndexFileWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamRecordIndexFilesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamRecordIndexFilesResponse
+ */
+ public function describeLiveStreamRecordIndexFilesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamRecordIndexFiles',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamRecordIndexFilesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamRecordIndexFilesRequest $request
+ *
+ * @return DescribeLiveStreamRecordIndexFilesResponse
+ */
+ public function describeLiveStreamRecordIndexFiles($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamRecordIndexFilesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamSnapshotInfoRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamSnapshotInfoResponse
+ */
+ public function describeLiveStreamSnapshotInfoWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->limit)) {
+ $query['Limit'] = $request->limit;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamSnapshotInfo',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamSnapshotInfoResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamSnapshotInfoRequest $request
+ *
+ * @return DescribeLiveStreamSnapshotInfoResponse
+ */
+ public function describeLiveStreamSnapshotInfo($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamSnapshotInfoWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamStateRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamStateResponse
+ */
+ public function describeLiveStreamStateWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamState',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamStateResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamStateRequest $request
+ *
+ * @return DescribeLiveStreamStateResponse
+ */
+ public function describeLiveStreamState($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamStateWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamTranscodeInfoRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamTranscodeInfoResponse
+ */
+ public function describeLiveStreamTranscodeInfoWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainTranscodeName)) {
+ $query['DomainTranscodeName'] = $request->domainTranscodeName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamTranscodeInfo',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamTranscodeInfoResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamTranscodeInfoRequest $request
+ *
+ * @return DescribeLiveStreamTranscodeInfoResponse
+ */
+ public function describeLiveStreamTranscodeInfo($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamTranscodeInfoWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamTranscodeStreamNumRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamTranscodeStreamNumResponse
+ */
+ public function describeLiveStreamTranscodeStreamNumWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamTranscodeStreamNum',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamTranscodeStreamNumResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamTranscodeStreamNumRequest $request
+ *
+ * @return DescribeLiveStreamTranscodeStreamNumResponse
+ */
+ public function describeLiveStreamTranscodeStreamNum($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamTranscodeStreamNumWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamWatermarkRulesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamWatermarkRulesResponse
+ */
+ public function describeLiveStreamWatermarkRulesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNumber)) {
+ $query['PageNumber'] = $request->pageNumber;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamWatermarkRules',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamWatermarkRulesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamWatermarkRulesRequest $request
+ *
+ * @return DescribeLiveStreamWatermarkRulesResponse
+ */
+ public function describeLiveStreamWatermarkRules($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamWatermarkRulesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamWatermarksRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamWatermarksResponse
+ */
+ public function describeLiveStreamWatermarksWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNumber)) {
+ $query['PageNumber'] = $request->pageNumber;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamWatermarks',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamWatermarksResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamWatermarksRequest $request
+ *
+ * @return DescribeLiveStreamWatermarksResponse
+ */
+ public function describeLiveStreamWatermarks($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamWatermarksWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamsBlockListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamsBlockListResponse
+ */
+ public function describeLiveStreamsBlockListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamsBlockList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamsBlockListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamsBlockListRequest $request
+ *
+ * @return DescribeLiveStreamsBlockListResponse
+ */
+ public function describeLiveStreamsBlockList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamsBlockListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamsControlHistoryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamsControlHistoryResponse
+ */
+ public function describeLiveStreamsControlHistoryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamsControlHistory',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamsControlHistoryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamsControlHistoryRequest $request
+ *
+ * @return DescribeLiveStreamsControlHistoryResponse
+ */
+ public function describeLiveStreamsControlHistory($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamsControlHistoryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamsNotifyRecordsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamsNotifyRecordsResponse
+ */
+ public function describeLiveStreamsNotifyRecordsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNumber)) {
+ $query['PageNumber'] = $request->pageNumber;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->status)) {
+ $query['Status'] = $request->status;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamsNotifyRecords',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamsNotifyRecordsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamsNotifyRecordsRequest $request
+ *
+ * @return DescribeLiveStreamsNotifyRecordsResponse
+ */
+ public function describeLiveStreamsNotifyRecords($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamsNotifyRecordsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamsNotifyUrlConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamsNotifyUrlConfigResponse
+ */
+ public function describeLiveStreamsNotifyUrlConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamsNotifyUrlConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamsNotifyUrlConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamsNotifyUrlConfigRequest $request
+ *
+ * @return DescribeLiveStreamsNotifyUrlConfigResponse
+ */
+ public function describeLiveStreamsNotifyUrlConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamsNotifyUrlConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamsOnlineListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamsOnlineListResponse
+ */
+ public function describeLiveStreamsOnlineListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->onlyStream)) {
+ $query['OnlyStream'] = $request->onlyStream;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->queryType)) {
+ $query['QueryType'] = $request->queryType;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->streamType)) {
+ $query['StreamType'] = $request->streamType;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamsOnlineList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamsOnlineListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamsOnlineListRequest $request
+ *
+ * @return DescribeLiveStreamsOnlineListResponse
+ */
+ public function describeLiveStreamsOnlineList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamsOnlineListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveStreamsPublishListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveStreamsPublishListResponse
+ */
+ public function describeLiveStreamsPublishListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->orderBy)) {
+ $query['OrderBy'] = $request->orderBy;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNumber)) {
+ $query['PageNumber'] = $request->pageNumber;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->queryType)) {
+ $query['QueryType'] = $request->queryType;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->streamType)) {
+ $query['StreamType'] = $request->streamType;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveStreamsPublishList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveStreamsPublishListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveStreamsPublishListRequest $request
+ *
+ * @return DescribeLiveStreamsPublishListResponse
+ */
+ public function describeLiveStreamsPublishList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveStreamsPublishListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveTagResourcesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveTagResourcesResponse
+ */
+ public function describeLiveTagResourcesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->resourceType)) {
+ $query['ResourceType'] = $request->resourceType;
+ }
+ if (!Utils::isUnset($request->tag)) {
+ $query['Tag'] = $request->tag;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveTagResources',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveTagResourcesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveTagResourcesRequest $request
+ *
+ * @return DescribeLiveTagResourcesResponse
+ */
+ public function describeLiveTagResources($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveTagResourcesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveTopDomainsByFlowRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveTopDomainsByFlowResponse
+ */
+ public function describeLiveTopDomainsByFlowWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->limit)) {
+ $query['Limit'] = $request->limit;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveTopDomainsByFlow',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveTopDomainsByFlowResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveTopDomainsByFlowRequest $request
+ *
+ * @return DescribeLiveTopDomainsByFlowResponse
+ */
+ public function describeLiveTopDomainsByFlow($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveTopDomainsByFlowWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveUserBillPredictionRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveUserBillPredictionResponse
+ */
+ public function describeLiveUserBillPredictionWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->area)) {
+ $query['Area'] = $request->area;
+ }
+ if (!Utils::isUnset($request->dimension)) {
+ $query['Dimension'] = $request->dimension;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveUserBillPrediction',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveUserBillPredictionResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveUserBillPredictionRequest $request
+ *
+ * @return DescribeLiveUserBillPredictionResponse
+ */
+ public function describeLiveUserBillPrediction($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveUserBillPredictionWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveUserDomainsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveUserDomainsResponse
+ */
+ public function describeLiveUserDomainsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->domainSearchType)) {
+ $query['DomainSearchType'] = $request->domainSearchType;
+ }
+ if (!Utils::isUnset($request->domainStatus)) {
+ $query['DomainStatus'] = $request->domainStatus;
+ }
+ if (!Utils::isUnset($request->liveDomainType)) {
+ $query['LiveDomainType'] = $request->liveDomainType;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNumber)) {
+ $query['PageNumber'] = $request->pageNumber;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->regionName)) {
+ $query['RegionName'] = $request->regionName;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->tag)) {
+ $query['Tag'] = $request->tag;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveUserDomains',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveUserDomainsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveUserDomainsRequest $request
+ *
+ * @return DescribeLiveUserDomainsResponse
+ */
+ public function describeLiveUserDomains($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveUserDomainsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeLiveUserTagsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeLiveUserTagsResponse
+ */
+ public function describeLiveUserTagsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeLiveUserTags',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeLiveUserTagsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeLiveUserTagsRequest $request
+ *
+ * @return DescribeLiveUserTagsResponse
+ */
+ public function describeLiveUserTags($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeLiveUserTagsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeMeterLiveRtcDurationRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeMeterLiveRtcDurationResponse
+ */
+ public function describeMeterLiveRtcDurationWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->serviceArea)) {
+ $query['ServiceArea'] = $request->serviceArea;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->appId)) {
+ $query['appId'] = $request->appId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeMeterLiveRtcDuration',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeMeterLiveRtcDurationResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeMeterLiveRtcDurationRequest $request
+ *
+ * @return DescribeMeterLiveRtcDurationResponse
+ */
+ public function describeMeterLiveRtcDuration($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeMeterLiveRtcDurationWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeMixStreamListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeMixStreamListResponse
+ */
+ public function describeMixStreamListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->mixStreamId)) {
+ $query['MixStreamId'] = $request->mixStreamId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNo)) {
+ $query['PageNo'] = $request->pageNo;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeMixStreamList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeMixStreamListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeMixStreamListRequest $request
+ *
+ * @return DescribeMixStreamListResponse
+ */
+ public function describeMixStreamList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeMixStreamListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKFirstFrameCostRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRTSNativeSDKFirstFrameCostResponse
+ */
+ public function describeRTSNativeSDKFirstFrameCostWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new DescribeRTSNativeSDKFirstFrameCostShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->domainNameList)) {
+ $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json');
+ }
+ $query = [];
+ if (!Utils::isUnset($request->dataInterval)) {
+ $query['DataInterval'] = $request->dataInterval;
+ }
+ if (!Utils::isUnset($request->domainNameListShrink)) {
+ $query['DomainNameList'] = $request->domainNameListShrink;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRTSNativeSDKFirstFrameCost',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRTSNativeSDKFirstFrameCostResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKFirstFrameCostRequest $request
+ *
+ * @return DescribeRTSNativeSDKFirstFrameCostResponse
+ */
+ public function describeRTSNativeSDKFirstFrameCost($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRTSNativeSDKFirstFrameCostWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKFirstFrameDelayRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRTSNativeSDKFirstFrameDelayResponse
+ */
+ public function describeRTSNativeSDKFirstFrameDelayWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new DescribeRTSNativeSDKFirstFrameDelayShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->domainNameList)) {
+ $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json');
+ }
+ $query = [];
+ if (!Utils::isUnset($request->dataInterval)) {
+ $query['DataInterval'] = $request->dataInterval;
+ }
+ if (!Utils::isUnset($request->domainNameListShrink)) {
+ $query['DomainNameList'] = $request->domainNameListShrink;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRTSNativeSDKFirstFrameDelay',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRTSNativeSDKFirstFrameDelayResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKFirstFrameDelayRequest $request
+ *
+ * @return DescribeRTSNativeSDKFirstFrameDelayResponse
+ */
+ public function describeRTSNativeSDKFirstFrameDelay($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRTSNativeSDKFirstFrameDelayWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKPlayFailStatusRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRTSNativeSDKPlayFailStatusResponse
+ */
+ public function describeRTSNativeSDKPlayFailStatusWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new DescribeRTSNativeSDKPlayFailStatusShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->domainNameList)) {
+ $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json');
+ }
+ $query = [];
+ if (!Utils::isUnset($request->dataInterval)) {
+ $query['DataInterval'] = $request->dataInterval;
+ }
+ if (!Utils::isUnset($request->domainNameListShrink)) {
+ $query['DomainNameList'] = $request->domainNameListShrink;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRTSNativeSDKPlayFailStatus',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRTSNativeSDKPlayFailStatusResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKPlayFailStatusRequest $request
+ *
+ * @return DescribeRTSNativeSDKPlayFailStatusResponse
+ */
+ public function describeRTSNativeSDKPlayFailStatus($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRTSNativeSDKPlayFailStatusWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKPlayTimeRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRTSNativeSDKPlayTimeResponse
+ */
+ public function describeRTSNativeSDKPlayTimeWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new DescribeRTSNativeSDKPlayTimeShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->domainNameList)) {
+ $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json');
+ }
+ $query = [];
+ if (!Utils::isUnset($request->dataInterval)) {
+ $query['DataInterval'] = $request->dataInterval;
+ }
+ if (!Utils::isUnset($request->domainNameListShrink)) {
+ $query['DomainNameList'] = $request->domainNameListShrink;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRTSNativeSDKPlayTime',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRTSNativeSDKPlayTimeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKPlayTimeRequest $request
+ *
+ * @return DescribeRTSNativeSDKPlayTimeResponse
+ */
+ public function describeRTSNativeSDKPlayTime($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRTSNativeSDKPlayTimeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKVvDataRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRTSNativeSDKVvDataResponse
+ */
+ public function describeRTSNativeSDKVvDataWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new DescribeRTSNativeSDKVvDataShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->domainNameList)) {
+ $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json');
+ }
+ $query = [];
+ if (!Utils::isUnset($request->dataInterval)) {
+ $query['DataInterval'] = $request->dataInterval;
+ }
+ if (!Utils::isUnset($request->domainNameListShrink)) {
+ $query['DomainNameList'] = $request->domainNameListShrink;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRTSNativeSDKVvData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRTSNativeSDKVvDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRTSNativeSDKVvDataRequest $request
+ *
+ * @return DescribeRTSNativeSDKVvDataResponse
+ */
+ public function describeRTSNativeSDKVvData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRTSNativeSDKVvDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRoomKickoutUserListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRoomKickoutUserListResponse
+ */
+ public function describeRoomKickoutUserListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRoomKickoutUserList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRoomKickoutUserListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRoomKickoutUserListRequest $request
+ *
+ * @return DescribeRoomKickoutUserListResponse
+ */
+ public function describeRoomKickoutUserList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRoomKickoutUserListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRoomListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRoomListResponse
+ */
+ public function describeRoomListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->anchorId)) {
+ $query['AnchorId'] = $request->anchorId;
+ }
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->order)) {
+ $query['Order'] = $request->order;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $query['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ if (!Utils::isUnset($request->roomStatus)) {
+ $query['RoomStatus'] = $request->roomStatus;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRoomList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRoomListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRoomListRequest $request
+ *
+ * @return DescribeRoomListResponse
+ */
+ public function describeRoomList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRoomListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeRoomStatusRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeRoomStatusResponse
+ */
+ public function describeRoomStatusWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeRoomStatus',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeRoomStatusResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeRoomStatusRequest $request
+ *
+ * @return DescribeRoomStatusResponse
+ */
+ public function describeRoomStatus($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeRoomStatusWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeShowListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeShowListResponse
+ */
+ public function describeShowListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeShowList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeShowListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeShowListRequest $request
+ *
+ * @return DescribeShowListResponse
+ */
+ public function describeShowList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeShowListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeStudioLayoutsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeStudioLayoutsResponse
+ */
+ public function describeStudioLayoutsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeStudioLayouts',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeStudioLayoutsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeStudioLayoutsRequest $request
+ *
+ * @return DescribeStudioLayoutsResponse
+ */
+ public function describeStudioLayouts($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeStudioLayoutsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeToutiaoLivePlayRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeToutiaoLivePlayResponse
+ */
+ public function describeToutiaoLivePlayWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeToutiaoLivePlay',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeToutiaoLivePlayResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeToutiaoLivePlayRequest $request
+ *
+ * @return DescribeToutiaoLivePlayResponse
+ */
+ public function describeToutiaoLivePlay($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeToutiaoLivePlayWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeToutiaoLivePublishRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeToutiaoLivePublishResponse
+ */
+ public function describeToutiaoLivePublishWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeToutiaoLivePublish',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeToutiaoLivePublishResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeToutiaoLivePublishRequest $request
+ *
+ * @return DescribeToutiaoLivePublishResponse
+ */
+ public function describeToutiaoLivePublish($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeToutiaoLivePublishWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeUpBpsPeakDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeUpBpsPeakDataResponse
+ */
+ public function describeUpBpsPeakDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->domainSwitch)) {
+ $query['DomainSwitch'] = $request->domainSwitch;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeUpBpsPeakData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeUpBpsPeakDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeUpBpsPeakDataRequest $request
+ *
+ * @return DescribeUpBpsPeakDataResponse
+ */
+ public function describeUpBpsPeakData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeUpBpsPeakDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeUpBpsPeakOfLineRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeUpBpsPeakOfLineResponse
+ */
+ public function describeUpBpsPeakOfLineWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->domainSwitch)) {
+ $query['DomainSwitch'] = $request->domainSwitch;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->line)) {
+ $query['Line'] = $request->line;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeUpBpsPeakOfLine',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeUpBpsPeakOfLineResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeUpBpsPeakOfLineRequest $request
+ *
+ * @return DescribeUpBpsPeakOfLineResponse
+ */
+ public function describeUpBpsPeakOfLine($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeUpBpsPeakOfLineWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DescribeUpPeakPublishStreamDataRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DescribeUpPeakPublishStreamDataResponse
+ */
+ public function describeUpPeakPublishStreamDataWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->domainSwitch)) {
+ $query['DomainSwitch'] = $request->domainSwitch;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DescribeUpPeakPublishStreamData',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DescribeUpPeakPublishStreamDataResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DescribeUpPeakPublishStreamDataRequest $request
+ *
+ * @return DescribeUpPeakPublishStreamDataResponse
+ */
+ public function describeUpPeakPublishStreamData($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->describeUpPeakPublishStreamDataWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DisableLiveRealtimeLogDeliveryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DisableLiveRealtimeLogDeliveryResponse
+ */
+ public function disableLiveRealtimeLogDeliveryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DisableLiveRealtimeLogDelivery',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DisableLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DisableLiveRealtimeLogDeliveryRequest $request
+ *
+ * @return DisableLiveRealtimeLogDeliveryResponse
+ */
+ public function disableLiveRealtimeLogDelivery($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->disableLiveRealtimeLogDeliveryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param DynamicUpdateWaterMarkStreamRuleRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return DynamicUpdateWaterMarkStreamRuleResponse
+ */
+ public function dynamicUpdateWaterMarkStreamRuleWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ if (!Utils::isUnset($request->templateId)) {
+ $query['TemplateId'] = $request->templateId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'DynamicUpdateWaterMarkStreamRule',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return DynamicUpdateWaterMarkStreamRuleResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param DynamicUpdateWaterMarkStreamRuleRequest $request
+ *
+ * @return DynamicUpdateWaterMarkStreamRuleResponse
+ */
+ public function dynamicUpdateWaterMarkStreamRule($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->dynamicUpdateWaterMarkStreamRuleWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param EditPlaylistRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return EditPlaylistResponse
+ */
+ public function editPlaylistWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programConfig)) {
+ $query['ProgramConfig'] = $request->programConfig;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ if (!Utils::isUnset($request->programItems)) {
+ $query['ProgramItems'] = $request->programItems;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'EditPlaylist',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return EditPlaylistResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param EditPlaylistRequest $request
+ *
+ * @return EditPlaylistResponse
+ */
+ public function editPlaylist($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->editPlaylistWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param EditShowAndReplaceRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return EditShowAndReplaceResponse
+ */
+ public function editShowAndReplaceWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->showId)) {
+ $query['ShowId'] = $request->showId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->storageInfo)) {
+ $query['StorageInfo'] = $request->storageInfo;
+ }
+ if (!Utils::isUnset($request->userData)) {
+ $query['UserData'] = $request->userData;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'EditShowAndReplace',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return EditShowAndReplaceResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param EditShowAndReplaceRequest $request
+ *
+ * @return EditShowAndReplaceResponse
+ */
+ public function editShowAndReplace($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->editShowAndReplaceWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param EffectCasterUrgentRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return EffectCasterUrgentResponse
+ */
+ public function effectCasterUrgentWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'EffectCasterUrgent',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return EffectCasterUrgentResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param EffectCasterUrgentRequest $request
+ *
+ * @return EffectCasterUrgentResponse
+ */
+ public function effectCasterUrgent($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->effectCasterUrgentWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param EffectCasterVideoResourceRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return EffectCasterVideoResourceResponse
+ */
+ public function effectCasterVideoResourceWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'EffectCasterVideoResource',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return EffectCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param EffectCasterVideoResourceRequest $request
+ *
+ * @return EffectCasterVideoResourceResponse
+ */
+ public function effectCasterVideoResource($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->effectCasterVideoResourceWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param EnableLiveRealtimeLogDeliveryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return EnableLiveRealtimeLogDeliveryResponse
+ */
+ public function enableLiveRealtimeLogDeliveryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'EnableLiveRealtimeLogDelivery',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return EnableLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param EnableLiveRealtimeLogDeliveryRequest $request
+ *
+ * @return EnableLiveRealtimeLogDeliveryResponse
+ */
+ public function enableLiveRealtimeLogDelivery($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->enableLiveRealtimeLogDeliveryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ForbidLiveStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ForbidLiveStreamResponse
+ */
+ public function forbidLiveStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->liveStreamType)) {
+ $query['LiveStreamType'] = $request->liveStreamType;
+ }
+ if (!Utils::isUnset($request->oneshot)) {
+ $query['Oneshot'] = $request->oneshot;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resumeTime)) {
+ $query['ResumeTime'] = $request->resumeTime;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ForbidLiveStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ForbidLiveStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ForbidLiveStreamRequest $request
+ *
+ * @return ForbidLiveStreamResponse
+ */
+ public function forbidLiveStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->forbidLiveStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ForbidPushStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ForbidPushStreamResponse
+ */
+ public function forbidPushStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ if (!Utils::isUnset($request->userData)) {
+ $query['UserData'] = $request->userData;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ForbidPushStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ForbidPushStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ForbidPushStreamRequest $request
+ *
+ * @return ForbidPushStreamResponse
+ */
+ public function forbidPushStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->forbidPushStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetAllCustomTemplatesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetAllCustomTemplatesResponse
+ */
+ public function getAllCustomTemplatesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->userId)) {
+ $query['UserId'] = $request->userId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'GetAllCustomTemplates',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetAllCustomTemplatesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetAllCustomTemplatesRequest $request
+ *
+ * @return GetAllCustomTemplatesResponse
+ */
+ public function getAllCustomTemplates($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getAllCustomTemplatesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetCustomTemplateRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetCustomTemplateResponse
+ */
+ public function getCustomTemplateWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->template)) {
+ $query['Template'] = $request->template;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'GetCustomTemplate',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetCustomTemplateResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetCustomTemplateRequest $request
+ *
+ * @return GetCustomTemplateResponse
+ */
+ public function getCustomTemplate($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getCustomTemplateWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetEditingJobInfoRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetEditingJobInfoResponse
+ */
+ public function getEditingJobInfoWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->showId)) {
+ $query['ShowId'] = $request->showId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'GetEditingJobInfo',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetEditingJobInfoResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetEditingJobInfoRequest $request
+ *
+ * @return GetEditingJobInfoResponse
+ */
+ public function getEditingJobInfo($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getEditingJobInfoWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetMessageAppRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetMessageAppResponse
+ */
+ public function getMessageAppWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'GetMessageApp',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetMessageAppResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetMessageAppRequest $request
+ *
+ * @return GetMessageAppResponse
+ */
+ public function getMessageApp($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getMessageAppWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetMessageGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetMessageGroupResponse
+ */
+ public function getMessageGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'GetMessageGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetMessageGroupRequest $request
+ *
+ * @return GetMessageGroupResponse
+ */
+ public function getMessageGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getMessageGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetMessageTokenRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetMessageTokenResponse
+ */
+ public function getMessageTokenWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->deviceId)) {
+ $body['DeviceId'] = $request->deviceId;
+ }
+ if (!Utils::isUnset($request->deviceType)) {
+ $body['DeviceType'] = $request->deviceType;
+ }
+ if (!Utils::isUnset($request->userId)) {
+ $body['UserId'] = $request->userId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'GetMessageToken',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetMessageTokenResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetMessageTokenRequest $request
+ *
+ * @return GetMessageTokenResponse
+ */
+ public function getMessageToken($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getMessageTokenWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetMultiRateConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetMultiRateConfigResponse
+ */
+ public function getMultiRateConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $query['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'GetMultiRateConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetMultiRateConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetMultiRateConfigRequest $request
+ *
+ * @return GetMultiRateConfigResponse
+ */
+ public function getMultiRateConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getMultiRateConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param GetMultiRateConfigListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return GetMultiRateConfigListResponse
+ */
+ public function getMultiRateConfigListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'GetMultiRateConfigList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return GetMultiRateConfigListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param GetMultiRateConfigListRequest $request
+ *
+ * @return GetMultiRateConfigListResponse
+ */
+ public function getMultiRateConfigList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->getMultiRateConfigListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param HotLiveRtcStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return HotLiveRtcStreamResponse
+ */
+ public function hotLiveRtcStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->audioMsid)) {
+ $query['AudioMsid'] = $request->audioMsid;
+ }
+ if (!Utils::isUnset($request->connectionTimeout)) {
+ $query['ConnectionTimeout'] = $request->connectionTimeout;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->mediaTimeout)) {
+ $query['MediaTimeout'] = $request->mediaTimeout;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->regionCode)) {
+ $query['RegionCode'] = $request->regionCode;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->videoMsid)) {
+ $query['VideoMsid'] = $request->videoMsid;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'HotLiveRtcStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return HotLiveRtcStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param HotLiveRtcStreamRequest $request
+ *
+ * @return HotLiveRtcStreamResponse
+ */
+ public function hotLiveRtcStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->hotLiveRtcStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param InitializeAutoShowListTaskRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return InitializeAutoShowListTaskResponse
+ */
+ public function initializeAutoShowListTaskWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->callBackUrl)) {
+ $query['CallBackUrl'] = $request->callBackUrl;
+ }
+ if (!Utils::isUnset($request->casterConfig)) {
+ $query['CasterConfig'] = $request->casterConfig;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceIds)) {
+ $query['ResourceIds'] = $request->resourceIds;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'InitializeAutoShowListTask',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return InitializeAutoShowListTaskResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param InitializeAutoShowListTaskRequest $request
+ *
+ * @return InitializeAutoShowListTaskResponse
+ */
+ public function initializeAutoShowListTask($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->initializeAutoShowListTaskWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param JoinMessageGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return JoinMessageGroupResponse
+ */
+ public function joinMessageGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->broadCastStatistics)) {
+ $body['BroadCastStatistics'] = $request->broadCastStatistics;
+ }
+ if (!Utils::isUnset($request->broadCastType)) {
+ $body['BroadCastType'] = $request->broadCastType;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->userId)) {
+ $body['UserId'] = $request->userId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'JoinMessageGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return JoinMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param JoinMessageGroupRequest $request
+ *
+ * @return JoinMessageGroupResponse
+ */
+ public function joinMessageGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->joinMessageGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param LeaveMessageGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return LeaveMessageGroupResponse
+ */
+ public function leaveMessageGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->broadCastStatistics)) {
+ $body['BroadCastStatistics'] = $request->broadCastStatistics;
+ }
+ if (!Utils::isUnset($request->broadCastType)) {
+ $body['BroadCastType'] = $request->broadCastType;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->userId)) {
+ $body['UserId'] = $request->userId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'LeaveMessageGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return LeaveMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param LeaveMessageGroupRequest $request
+ *
+ * @return LeaveMessageGroupResponse
+ */
+ public function leaveMessageGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->leaveMessageGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListLiveRealtimeLogDeliveryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListLiveRealtimeLogDeliveryResponse
+ */
+ public function listLiveRealtimeLogDeliveryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ListLiveRealtimeLogDelivery',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListLiveRealtimeLogDeliveryRequest $request
+ *
+ * @return ListLiveRealtimeLogDeliveryResponse
+ */
+ public function listLiveRealtimeLogDelivery($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listLiveRealtimeLogDeliveryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListLiveRealtimeLogDeliveryDomainsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListLiveRealtimeLogDeliveryDomainsResponse
+ */
+ public function listLiveRealtimeLogDeliveryDomainsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ListLiveRealtimeLogDeliveryDomains',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListLiveRealtimeLogDeliveryDomainsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListLiveRealtimeLogDeliveryDomainsRequest $request
+ *
+ * @return ListLiveRealtimeLogDeliveryDomainsResponse
+ */
+ public function listLiveRealtimeLogDeliveryDomains($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listLiveRealtimeLogDeliveryDomainsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListLiveRealtimeLogDeliveryInfosRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListLiveRealtimeLogDeliveryInfosResponse
+ */
+ public function listLiveRealtimeLogDeliveryInfosWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ListLiveRealtimeLogDeliveryInfos',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListLiveRealtimeLogDeliveryInfosResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListLiveRealtimeLogDeliveryInfosRequest $request
+ *
+ * @return ListLiveRealtimeLogDeliveryInfosResponse
+ */
+ public function listLiveRealtimeLogDeliveryInfos($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listLiveRealtimeLogDeliveryInfosWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListMessageRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListMessageResponse
+ */
+ public function listMessageWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $body['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $body['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->sortType)) {
+ $body['SortType'] = $request->sortType;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $body['Type'] = $request->type;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'ListMessage',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListMessageResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListMessageRequest $request
+ *
+ * @return ListMessageResponse
+ */
+ public function listMessage($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listMessageWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListMessageAppRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListMessageAppResponse
+ */
+ public function listMessageAppWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->pageNum)) {
+ $body['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $body['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->sortType)) {
+ $body['SortType'] = $request->sortType;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'ListMessageApp',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListMessageAppResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListMessageAppRequest $request
+ *
+ * @return ListMessageAppResponse
+ */
+ public function listMessageApp($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listMessageAppWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListMessageGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListMessageGroupResponse
+ */
+ public function listMessageGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $body['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $body['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->sortType)) {
+ $body['SortType'] = $request->sortType;
+ }
+ if (!Utils::isUnset($request->userId)) {
+ $body['UserId'] = $request->userId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'ListMessageGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListMessageGroupRequest $request
+ *
+ * @return ListMessageGroupResponse
+ */
+ public function listMessageGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listMessageGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListMessageGroupUserRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListMessageGroupUserResponse
+ */
+ public function listMessageGroupUserWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $body['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $body['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->sortType)) {
+ $body['SortType'] = $request->sortType;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'ListMessageGroupUser',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListMessageGroupUserResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListMessageGroupUserRequest $request
+ *
+ * @return ListMessageGroupUserResponse
+ */
+ public function listMessageGroupUser($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listMessageGroupUserWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListMessageGroupUserByIdRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListMessageGroupUserByIdResponse
+ */
+ public function listMessageGroupUserByIdWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new ListMessageGroupUserByIdShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->userIdList)) {
+ $request->userIdListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->userIdList, 'UserIdList', 'simple');
+ }
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->userIdListShrink)) {
+ $body['UserIdList'] = $request->userIdListShrink;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'ListMessageGroupUserById',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListMessageGroupUserByIdResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListMessageGroupUserByIdRequest $request
+ *
+ * @return ListMessageGroupUserByIdResponse
+ */
+ public function listMessageGroupUserById($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listMessageGroupUserByIdWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListPlaylistRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListPlaylistResponse
+ */
+ public function listPlaylistWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->page)) {
+ $query['Page'] = $request->page;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $query['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ListPlaylist',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListPlaylistResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListPlaylistRequest $request
+ *
+ * @return ListPlaylistResponse
+ */
+ public function listPlaylist($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listPlaylistWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ListPlaylistItemsRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ListPlaylistItemsResponse
+ */
+ public function listPlaylistItemsWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ if (!Utils::isUnset($request->programItemIds)) {
+ $query['ProgramItemIds'] = $request->programItemIds;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ListPlaylistItems',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ListPlaylistItemsResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ListPlaylistItemsRequest $request
+ *
+ * @return ListPlaylistItemsResponse
+ */
+ public function listPlaylistItems($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->listPlaylistItemsWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyCasterComponentRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyCasterComponentResponse
+ */
+ public function modifyCasterComponentWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->captionLayerContent)) {
+ $query['CaptionLayerContent'] = $request->captionLayerContent;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentId)) {
+ $query['ComponentId'] = $request->componentId;
+ }
+ if (!Utils::isUnset($request->componentLayer)) {
+ $query['ComponentLayer'] = $request->componentLayer;
+ }
+ if (!Utils::isUnset($request->componentName)) {
+ $query['ComponentName'] = $request->componentName;
+ }
+ if (!Utils::isUnset($request->componentType)) {
+ $query['ComponentType'] = $request->componentType;
+ }
+ if (!Utils::isUnset($request->effect)) {
+ $query['Effect'] = $request->effect;
+ }
+ if (!Utils::isUnset($request->imageLayerContent)) {
+ $query['ImageLayerContent'] = $request->imageLayerContent;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->textLayerContent)) {
+ $query['TextLayerContent'] = $request->textLayerContent;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyCasterComponent',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyCasterComponentResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyCasterComponentRequest $request
+ *
+ * @return ModifyCasterComponentResponse
+ */
+ public function modifyCasterComponent($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyCasterComponentWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyCasterEpisodeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyCasterEpisodeResponse
+ */
+ public function modifyCasterEpisodeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentId)) {
+ $query['ComponentId'] = $request->componentId;
+ }
+ if (!Utils::isUnset($request->endTime)) {
+ $query['EndTime'] = $request->endTime;
+ }
+ if (!Utils::isUnset($request->episodeId)) {
+ $query['EpisodeId'] = $request->episodeId;
+ }
+ if (!Utils::isUnset($request->episodeName)) {
+ $query['EpisodeName'] = $request->episodeName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->startTime)) {
+ $query['StartTime'] = $request->startTime;
+ }
+ if (!Utils::isUnset($request->switchType)) {
+ $query['SwitchType'] = $request->switchType;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyCasterEpisode',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyCasterEpisodeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyCasterEpisodeRequest $request
+ *
+ * @return ModifyCasterEpisodeResponse
+ */
+ public function modifyCasterEpisode($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyCasterEpisodeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyCasterLayoutRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyCasterLayoutResponse
+ */
+ public function modifyCasterLayoutWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->audioLayer)) {
+ $query['AudioLayer'] = $request->audioLayer;
+ }
+ if (!Utils::isUnset($request->blendList)) {
+ $query['BlendList'] = $request->blendList;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->mixList)) {
+ $query['MixList'] = $request->mixList;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->videoLayer)) {
+ $query['VideoLayer'] = $request->videoLayer;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyCasterLayout',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyCasterLayoutResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyCasterLayoutRequest $request
+ *
+ * @return ModifyCasterLayoutResponse
+ */
+ public function modifyCasterLayout($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyCasterLayoutWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyCasterProgramRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyCasterProgramResponse
+ */
+ public function modifyCasterProgramWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->episode)) {
+ $query['Episode'] = $request->episode;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyCasterProgram',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyCasterProgramRequest $request
+ *
+ * @return ModifyCasterProgramResponse
+ */
+ public function modifyCasterProgram($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyCasterProgramWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyCasterVideoResourceRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyCasterVideoResourceResponse
+ */
+ public function modifyCasterVideoResourceWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->beginOffset)) {
+ $query['BeginOffset'] = $request->beginOffset;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->endOffset)) {
+ $query['EndOffset'] = $request->endOffset;
+ }
+ if (!Utils::isUnset($request->liveStreamUrl)) {
+ $query['LiveStreamUrl'] = $request->liveStreamUrl;
+ }
+ if (!Utils::isUnset($request->materialId)) {
+ $query['MaterialId'] = $request->materialId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->ptsCallbackInterval)) {
+ $query['PtsCallbackInterval'] = $request->ptsCallbackInterval;
+ }
+ if (!Utils::isUnset($request->repeatNum)) {
+ $query['RepeatNum'] = $request->repeatNum;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->resourceName)) {
+ $query['ResourceName'] = $request->resourceName;
+ }
+ if (!Utils::isUnset($request->vodUrl)) {
+ $query['VodUrl'] = $request->vodUrl;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyCasterVideoResource',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyCasterVideoResourceRequest $request
+ *
+ * @return ModifyCasterVideoResourceResponse
+ */
+ public function modifyCasterVideoResource($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyCasterVideoResourceWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyLiveDomainSchdmByPropertyRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyLiveDomainSchdmByPropertyResponse
+ */
+ public function modifyLiveDomainSchdmByPropertyWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->property)) {
+ $query['Property'] = $request->property;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyLiveDomainSchdmByProperty',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyLiveDomainSchdmByPropertyResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyLiveDomainSchdmByPropertyRequest $request
+ *
+ * @return ModifyLiveDomainSchdmByPropertyResponse
+ */
+ public function modifyLiveDomainSchdmByProperty($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyLiveDomainSchdmByPropertyWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyLiveRealtimeLogDeliveryRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyLiveRealtimeLogDeliveryResponse
+ */
+ public function modifyLiveRealtimeLogDeliveryWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyLiveRealtimeLogDelivery',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyLiveRealtimeLogDeliveryRequest $request
+ *
+ * @return ModifyLiveRealtimeLogDeliveryResponse
+ */
+ public function modifyLiveRealtimeLogDelivery($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyLiveRealtimeLogDeliveryWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyShowListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyShowListResponse
+ */
+ public function modifyShowListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->highPriorityShowId)) {
+ $query['HighPriorityShowId'] = $request->highPriorityShowId;
+ }
+ if (!Utils::isUnset($request->highPriorityShowStartTime)) {
+ $query['HighPriorityShowStartTime'] = $request->highPriorityShowStartTime;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->repeatTimes)) {
+ $query['RepeatTimes'] = $request->repeatTimes;
+ }
+ if (!Utils::isUnset($request->showId)) {
+ $query['ShowId'] = $request->showId;
+ }
+ if (!Utils::isUnset($request->spot)) {
+ $query['Spot'] = $request->spot;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyShowList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyShowListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyShowListRequest $request
+ *
+ * @return ModifyShowListResponse
+ */
+ public function modifyShowList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyShowListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ModifyStudioLayoutRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ModifyStudioLayoutResponse
+ */
+ public function modifyStudioLayoutWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->bgImageConfig)) {
+ $query['BgImageConfig'] = $request->bgImageConfig;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->commonConfig)) {
+ $query['CommonConfig'] = $request->commonConfig;
+ }
+ if (!Utils::isUnset($request->layerOrderConfigList)) {
+ $query['LayerOrderConfigList'] = $request->layerOrderConfigList;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->layoutName)) {
+ $query['LayoutName'] = $request->layoutName;
+ }
+ if (!Utils::isUnset($request->mediaInputConfigList)) {
+ $query['MediaInputConfigList'] = $request->mediaInputConfigList;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->screenInputConfigList)) {
+ $query['ScreenInputConfigList'] = $request->screenInputConfigList;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ModifyStudioLayout',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ModifyStudioLayoutResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ModifyStudioLayoutRequest $request
+ *
+ * @return ModifyStudioLayoutResponse
+ */
+ public function modifyStudioLayout($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->modifyStudioLayoutWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param OpenLiveShiftRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return OpenLiveShiftResponse
+ */
+ public function openLiveShiftWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->duration)) {
+ $query['Duration'] = $request->duration;
+ }
+ if (!Utils::isUnset($request->ignoreTranscode)) {
+ $query['IgnoreTranscode'] = $request->ignoreTranscode;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->vision)) {
+ $query['Vision'] = $request->vision;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'OpenLiveShift',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return OpenLiveShiftResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param OpenLiveShiftRequest $request
+ *
+ * @return OpenLiveShiftResponse
+ */
+ public function openLiveShift($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->openLiveShiftWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param PlayChoosenShowRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return PlayChoosenShowResponse
+ */
+ public function playChoosenShowWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->showId)) {
+ $query['ShowId'] = $request->showId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'PlayChoosenShow',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return PlayChoosenShowResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param PlayChoosenShowRequest $request
+ *
+ * @return PlayChoosenShowResponse
+ */
+ public function playChoosenShow($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->playChoosenShowWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param PublishLiveStagingConfigToProductionRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return PublishLiveStagingConfigToProductionResponse
+ */
+ public function publishLiveStagingConfigToProductionWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->functionName)) {
+ $query['FunctionName'] = $request->functionName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'PublishLiveStagingConfigToProduction',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return PublishLiveStagingConfigToProductionResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param PublishLiveStagingConfigToProductionRequest $request
+ *
+ * @return PublishLiveStagingConfigToProductionResponse
+ */
+ public function publishLiveStagingConfigToProduction($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->publishLiveStagingConfigToProductionWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param QueryMessageAppRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return QueryMessageAppResponse
+ */
+ public function queryMessageAppWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->appName)) {
+ $body['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->pageNum)) {
+ $body['PageNum'] = $request->pageNum;
+ }
+ if (!Utils::isUnset($request->pageSize)) {
+ $body['PageSize'] = $request->pageSize;
+ }
+ if (!Utils::isUnset($request->sortType)) {
+ $body['SortType'] = $request->sortType;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'QueryMessageApp',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return QueryMessageAppResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param QueryMessageAppRequest $request
+ *
+ * @return QueryMessageAppResponse
+ */
+ public function queryMessageApp($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->queryMessageAppWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param QuerySnapshotCallbackAuthRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return QuerySnapshotCallbackAuthResponse
+ */
+ public function querySnapshotCallbackAuthWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'QuerySnapshotCallbackAuth',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return QuerySnapshotCallbackAuthResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param QuerySnapshotCallbackAuthRequest $request
+ *
+ * @return QuerySnapshotCallbackAuthResponse
+ */
+ public function querySnapshotCallbackAuth($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->querySnapshotCallbackAuthWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param RealTimeRecordCommandRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return RealTimeRecordCommandResponse
+ */
+ public function realTimeRecordCommandWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->command)) {
+ $query['Command'] = $request->command;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'RealTimeRecordCommand',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return RealTimeRecordCommandResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param RealTimeRecordCommandRequest $request
+ *
+ * @return RealTimeRecordCommandResponse
+ */
+ public function realTimeRecordCommand($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->realTimeRecordCommandWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param RealTimeSnapshotCommandRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return RealTimeSnapshotCommandResponse
+ */
+ public function realTimeSnapshotCommandWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->command)) {
+ $query['Command'] = $request->command;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->mode)) {
+ $query['Mode'] = $request->mode;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->source)) {
+ $query['Source'] = $request->source;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'RealTimeSnapshotCommand',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return RealTimeSnapshotCommandResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param RealTimeSnapshotCommandRequest $request
+ *
+ * @return RealTimeSnapshotCommandResponse
+ */
+ public function realTimeSnapshotCommand($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->realTimeSnapshotCommandWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param RemoveShowFromShowListRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return RemoveShowFromShowListResponse
+ */
+ public function removeShowFromShowListWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->showId)) {
+ $query['ShowId'] = $request->showId;
+ }
+ if (!Utils::isUnset($request->isBatchMode)) {
+ $query['isBatchMode'] = $request->isBatchMode;
+ }
+ if (!Utils::isUnset($request->showIdList)) {
+ $query['showIdList'] = $request->showIdList;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'RemoveShowFromShowList',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return RemoveShowFromShowListResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param RemoveShowFromShowListRequest $request
+ *
+ * @return RemoveShowFromShowListResponse
+ */
+ public function removeShowFromShowList($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->removeShowFromShowListWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param RestartCasterRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return RestartCasterResponse
+ */
+ public function restartCasterWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'RestartCaster',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return RestartCasterResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param RestartCasterRequest $request
+ *
+ * @return RestartCasterResponse
+ */
+ public function restartCaster($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->restartCasterWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param ResumeLiveStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return ResumeLiveStreamResponse
+ */
+ public function resumeLiveStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->liveStreamType)) {
+ $query['LiveStreamType'] = $request->liveStreamType;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'ResumeLiveStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return ResumeLiveStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param ResumeLiveStreamRequest $request
+ *
+ * @return ResumeLiveStreamResponse
+ */
+ public function resumeLiveStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->resumeLiveStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param RollbackLiveStagingConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return RollbackLiveStagingConfigResponse
+ */
+ public function rollbackLiveStagingConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->functionName)) {
+ $query['FunctionName'] = $request->functionName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'RollbackLiveStagingConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return RollbackLiveStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param RollbackLiveStagingConfigRequest $request
+ *
+ * @return RollbackLiveStagingConfigResponse
+ */
+ public function rollbackLiveStagingConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->rollbackLiveStagingConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SendLikeRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SendLikeResponse
+ */
+ public function sendLikeWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->broadCastType)) {
+ $body['BroadCastType'] = $request->broadCastType;
+ }
+ if (!Utils::isUnset($request->count)) {
+ $body['Count'] = $request->count;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->operatorUserId)) {
+ $body['OperatorUserId'] = $request->operatorUserId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'SendLike',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SendLikeResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SendLikeRequest $request
+ *
+ * @return SendLikeResponse
+ */
+ public function sendLike($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->sendLikeWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SendMessageToGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SendMessageToGroupResponse
+ */
+ public function sendMessageToGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->data)) {
+ $body['Data'] = $request->data;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->operatorUserId)) {
+ $body['OperatorUserId'] = $request->operatorUserId;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $body['Type'] = $request->type;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'SendMessageToGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SendMessageToGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SendMessageToGroupRequest $request
+ *
+ * @return SendMessageToGroupResponse
+ */
+ public function sendMessageToGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->sendMessageToGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SendMessageToGroupUsersRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return SendMessageToGroupUsersResponse
+ */
+ public function sendMessageToGroupUsersWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new SendMessageToGroupUsersShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->receiverIdList)) {
+ $request->receiverIdListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->receiverIdList, 'ReceiverIdList', 'json');
+ }
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->data)) {
+ $body['Data'] = $request->data;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ if (!Utils::isUnset($request->operatorUserId)) {
+ $body['OperatorUserId'] = $request->operatorUserId;
+ }
+ if (!Utils::isUnset($request->receiverIdListShrink)) {
+ $body['ReceiverIdList'] = $request->receiverIdListShrink;
+ }
+ if (!Utils::isUnset($request->type)) {
+ $body['Type'] = $request->type;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'SendMessageToGroupUsers',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SendMessageToGroupUsersResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SendMessageToGroupUsersRequest $request
+ *
+ * @return SendMessageToGroupUsersResponse
+ */
+ public function sendMessageToGroupUsers($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->sendMessageToGroupUsersWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SendRoomNotificationRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SendRoomNotificationResponse
+ */
+ public function sendRoomNotificationWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->appUid)) {
+ $query['AppUid'] = $request->appUid;
+ }
+ if (!Utils::isUnset($request->data)) {
+ $query['Data'] = $request->data;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->priority)) {
+ $query['Priority'] = $request->priority;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SendRoomNotification',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SendRoomNotificationResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SendRoomNotificationRequest $request
+ *
+ * @return SendRoomNotificationResponse
+ */
+ public function sendRoomNotification($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->sendRoomNotificationWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SendRoomUserNotificationRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SendRoomUserNotificationResponse
+ */
+ public function sendRoomUserNotificationWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appId)) {
+ $query['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->appUid)) {
+ $query['AppUid'] = $request->appUid;
+ }
+ if (!Utils::isUnset($request->data)) {
+ $query['Data'] = $request->data;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->priority)) {
+ $query['Priority'] = $request->priority;
+ }
+ if (!Utils::isUnset($request->roomId)) {
+ $query['RoomId'] = $request->roomId;
+ }
+ if (!Utils::isUnset($request->toAppUid)) {
+ $query['ToAppUid'] = $request->toAppUid;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SendRoomUserNotification',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SendRoomUserNotificationResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SendRoomUserNotificationRequest $request
+ *
+ * @return SendRoomUserNotificationResponse
+ */
+ public function sendRoomUserNotification($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->sendRoomUserNotificationWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetCasterChannelRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetCasterChannelResponse
+ */
+ public function setCasterChannelWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->channelId)) {
+ $query['ChannelId'] = $request->channelId;
+ }
+ if (!Utils::isUnset($request->faceBeauty)) {
+ $query['FaceBeauty'] = $request->faceBeauty;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->playStatus)) {
+ $query['PlayStatus'] = $request->playStatus;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->seekOffset)) {
+ $query['SeekOffset'] = $request->seekOffset;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetCasterChannel',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetCasterChannelResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetCasterChannelRequest $request
+ *
+ * @return SetCasterChannelResponse
+ */
+ public function setCasterChannel($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setCasterChannelWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetCasterConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetCasterConfigResponse
+ */
+ public function setCasterConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->callbackUrl)) {
+ $query['CallbackUrl'] = $request->callbackUrl;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->casterName)) {
+ $query['CasterName'] = $request->casterName;
+ }
+ if (!Utils::isUnset($request->channelEnable)) {
+ $query['ChannelEnable'] = $request->channelEnable;
+ }
+ if (!Utils::isUnset($request->delay)) {
+ $query['Delay'] = $request->delay;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programEffect)) {
+ $query['ProgramEffect'] = $request->programEffect;
+ }
+ if (!Utils::isUnset($request->programName)) {
+ $query['ProgramName'] = $request->programName;
+ }
+ if (!Utils::isUnset($request->recordConfig)) {
+ $query['RecordConfig'] = $request->recordConfig;
+ }
+ if (!Utils::isUnset($request->sideOutputUrl)) {
+ $query['SideOutputUrl'] = $request->sideOutputUrl;
+ }
+ if (!Utils::isUnset($request->sideOutputUrlList)) {
+ $query['SideOutputUrlList'] = $request->sideOutputUrlList;
+ }
+ if (!Utils::isUnset($request->syncGroupsConfig)) {
+ $query['SyncGroupsConfig'] = $request->syncGroupsConfig;
+ }
+ if (!Utils::isUnset($request->transcodeConfig)) {
+ $query['TranscodeConfig'] = $request->transcodeConfig;
+ }
+ if (!Utils::isUnset($request->urgentLiveStreamUrl)) {
+ $query['UrgentLiveStreamUrl'] = $request->urgentLiveStreamUrl;
+ }
+ if (!Utils::isUnset($request->urgentMaterialId)) {
+ $query['UrgentMaterialId'] = $request->urgentMaterialId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetCasterConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetCasterConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetCasterConfigRequest $request
+ *
+ * @return SetCasterConfigResponse
+ */
+ public function setCasterConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setCasterConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetCasterSceneConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetCasterSceneConfigResponse
+ */
+ public function setCasterSceneConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentId)) {
+ $query['ComponentId'] = $request->componentId;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetCasterSceneConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetCasterSceneConfigRequest $request
+ *
+ * @return SetCasterSceneConfigResponse
+ */
+ public function setCasterSceneConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setCasterSceneConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetCasterSyncGroupRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetCasterSyncGroupResponse
+ */
+ public function setCasterSyncGroupWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->syncGroup)) {
+ $query['SyncGroup'] = $request->syncGroup;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetCasterSyncGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetCasterSyncGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetCasterSyncGroupRequest $request
+ *
+ * @return SetCasterSyncGroupResponse
+ */
+ public function setCasterSyncGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setCasterSyncGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetCasterTimedEventRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetCasterTimedEventResponse
+ */
+ public function setCasterTimedEventWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->eventName)) {
+ $query['EventName'] = $request->eventName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->startTimeUTC)) {
+ $query['StartTimeUTC'] = $request->startTimeUTC;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetCasterTimedEvent',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetCasterTimedEventResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetCasterTimedEventRequest $request
+ *
+ * @return SetCasterTimedEventResponse
+ */
+ public function setCasterTimedEvent($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setCasterTimedEventWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetLiveDomainCertificateRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetLiveDomainCertificateResponse
+ */
+ public function setLiveDomainCertificateWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->certName)) {
+ $query['CertName'] = $request->certName;
+ }
+ if (!Utils::isUnset($request->certType)) {
+ $query['CertType'] = $request->certType;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->forceSet)) {
+ $query['ForceSet'] = $request->forceSet;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->SSLPri)) {
+ $query['SSLPri'] = $request->SSLPri;
+ }
+ if (!Utils::isUnset($request->SSLProtocol)) {
+ $query['SSLProtocol'] = $request->SSLProtocol;
+ }
+ if (!Utils::isUnset($request->SSLPub)) {
+ $query['SSLPub'] = $request->SSLPub;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetLiveDomainCertificate',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetLiveDomainCertificateResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetLiveDomainCertificateRequest $request
+ *
+ * @return SetLiveDomainCertificateResponse
+ */
+ public function setLiveDomainCertificate($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setLiveDomainCertificateWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetLiveDomainStagingConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetLiveDomainStagingConfigResponse
+ */
+ public function setLiveDomainStagingConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->functions)) {
+ $query['Functions'] = $request->functions;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetLiveDomainStagingConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetLiveDomainStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetLiveDomainStagingConfigRequest $request
+ *
+ * @return SetLiveDomainStagingConfigResponse
+ */
+ public function setLiveDomainStagingConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setLiveDomainStagingConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetLiveEdgeTransferRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetLiveEdgeTransferResponse
+ */
+ public function setLiveEdgeTransferWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->httpDns)) {
+ $query['HttpDns'] = $request->httpDns;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ if (!Utils::isUnset($request->targetDomainList)) {
+ $query['TargetDomainList'] = $request->targetDomainList;
+ }
+ if (!Utils::isUnset($request->transferArgs)) {
+ $query['TransferArgs'] = $request->transferArgs;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetLiveEdgeTransfer',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetLiveEdgeTransferResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetLiveEdgeTransferRequest $request
+ *
+ * @return SetLiveEdgeTransferResponse
+ */
+ public function setLiveEdgeTransfer($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setLiveEdgeTransferWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetLiveLazyPullStreamInfoConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetLiveLazyPullStreamInfoConfigResponse
+ */
+ public function setLiveLazyPullStreamInfoConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pullAppName)) {
+ $query['PullAppName'] = $request->pullAppName;
+ }
+ if (!Utils::isUnset($request->pullDomainName)) {
+ $query['PullDomainName'] = $request->pullDomainName;
+ }
+ if (!Utils::isUnset($request->pullProtocol)) {
+ $query['PullProtocol'] = $request->pullProtocol;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetLiveLazyPullStreamInfoConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetLiveLazyPullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetLiveLazyPullStreamInfoConfigRequest $request
+ *
+ * @return SetLiveLazyPullStreamInfoConfigResponse
+ */
+ public function setLiveLazyPullStreamInfoConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setLiveLazyPullStreamInfoConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetLiveStreamDelayConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetLiveStreamDelayConfigResponse
+ */
+ public function setLiveStreamDelayConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->flvDelay)) {
+ $query['FlvDelay'] = $request->flvDelay;
+ }
+ if (!Utils::isUnset($request->flvLevel)) {
+ $query['FlvLevel'] = $request->flvLevel;
+ }
+ if (!Utils::isUnset($request->hlsDelay)) {
+ $query['HlsDelay'] = $request->hlsDelay;
+ }
+ if (!Utils::isUnset($request->hlsLevel)) {
+ $query['HlsLevel'] = $request->hlsLevel;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->rtmpDelay)) {
+ $query['RtmpDelay'] = $request->rtmpDelay;
+ }
+ if (!Utils::isUnset($request->rtmpLevel)) {
+ $query['RtmpLevel'] = $request->rtmpLevel;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetLiveStreamDelayConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetLiveStreamDelayConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetLiveStreamDelayConfigRequest $request
+ *
+ * @return SetLiveStreamDelayConfigResponse
+ */
+ public function setLiveStreamDelayConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setLiveStreamDelayConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetLiveStreamOptimizedFeatureConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetLiveStreamOptimizedFeatureConfigResponse
+ */
+ public function setLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->configName)) {
+ $query['ConfigName'] = $request->configName;
+ }
+ if (!Utils::isUnset($request->configStatus)) {
+ $query['ConfigStatus'] = $request->configStatus;
+ }
+ if (!Utils::isUnset($request->configValue)) {
+ $query['ConfigValue'] = $request->configValue;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetLiveStreamOptimizedFeatureConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetLiveStreamOptimizedFeatureConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetLiveStreamOptimizedFeatureConfigRequest $request
+ *
+ * @return SetLiveStreamOptimizedFeatureConfigResponse
+ */
+ public function setLiveStreamOptimizedFeatureConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetLiveStreamsNotifyUrlConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetLiveStreamsNotifyUrlConfigResponse
+ */
+ public function setLiveStreamsNotifyUrlConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->notifyAuthKey)) {
+ $query['NotifyAuthKey'] = $request->notifyAuthKey;
+ }
+ if (!Utils::isUnset($request->notifyReqAuth)) {
+ $query['NotifyReqAuth'] = $request->notifyReqAuth;
+ }
+ if (!Utils::isUnset($request->notifyUrl)) {
+ $query['NotifyUrl'] = $request->notifyUrl;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetLiveStreamsNotifyUrlConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetLiveStreamsNotifyUrlConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetLiveStreamsNotifyUrlConfigRequest $request
+ *
+ * @return SetLiveStreamsNotifyUrlConfigResponse
+ */
+ public function setLiveStreamsNotifyUrlConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setLiveStreamsNotifyUrlConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param SetSnapshotCallbackAuthRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return SetSnapshotCallbackAuthResponse
+ */
+ public function setSnapshotCallbackAuthWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->callbackAuthKey)) {
+ $query['CallbackAuthKey'] = $request->callbackAuthKey;
+ }
+ if (!Utils::isUnset($request->callbackReqAuth)) {
+ $query['CallbackReqAuth'] = $request->callbackReqAuth;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'SetSnapshotCallbackAuth',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return SetSnapshotCallbackAuthResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param SetSnapshotCallbackAuthRequest $request
+ *
+ * @return SetSnapshotCallbackAuthResponse
+ */
+ public function setSnapshotCallbackAuth($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->setSnapshotCallbackAuthWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StartCasterRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StartCasterResponse
+ */
+ public function startCasterWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StartCaster',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StartCasterResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StartCasterRequest $request
+ *
+ * @return StartCasterResponse
+ */
+ public function startCaster($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->startCasterWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StartCasterSceneRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StartCasterSceneResponse
+ */
+ public function startCasterSceneWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StartCasterScene',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StartCasterSceneResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StartCasterSceneRequest $request
+ *
+ * @return StartCasterSceneResponse
+ */
+ public function startCasterScene($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->startCasterSceneWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StartLiveDomainRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StartLiveDomainResponse
+ */
+ public function startLiveDomainWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StartLiveDomain',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StartLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StartLiveDomainRequest $request
+ *
+ * @return StartLiveDomainResponse
+ */
+ public function startLiveDomain($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->startLiveDomainWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StartLiveStreamMonitorRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StartLiveStreamMonitorResponse
+ */
+ public function startLiveStreamMonitorWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->monitorId)) {
+ $query['MonitorId'] = $request->monitorId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StartLiveStreamMonitor',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StartLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StartLiveStreamMonitorRequest $request
+ *
+ * @return StartLiveStreamMonitorResponse
+ */
+ public function startLiveStreamMonitor($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->startLiveStreamMonitorWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StartPlaylistRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StartPlaylistResponse
+ */
+ public function startPlaylistWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->offset)) {
+ $query['Offset'] = $request->offset;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ if (!Utils::isUnset($request->resumeMode)) {
+ $query['ResumeMode'] = $request->resumeMode;
+ }
+ if (!Utils::isUnset($request->startItemId)) {
+ $query['StartItemId'] = $request->startItemId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StartPlaylist',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StartPlaylistResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StartPlaylistRequest $request
+ *
+ * @return StartPlaylistResponse
+ */
+ public function startPlaylist($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->startPlaylistWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StopCasterRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StopCasterResponse
+ */
+ public function stopCasterWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StopCaster',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StopCasterResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StopCasterRequest $request
+ *
+ * @return StopCasterResponse
+ */
+ public function stopCaster($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->stopCasterWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StopCasterSceneRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StopCasterSceneResponse
+ */
+ public function stopCasterSceneWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StopCasterScene',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StopCasterSceneResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StopCasterSceneRequest $request
+ *
+ * @return StopCasterSceneResponse
+ */
+ public function stopCasterScene($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->stopCasterSceneWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StopLiveDomainRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StopLiveDomainResponse
+ */
+ public function stopLiveDomainWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StopLiveDomain',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StopLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StopLiveDomainRequest $request
+ *
+ * @return StopLiveDomainResponse
+ */
+ public function stopLiveDomain($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->stopLiveDomainWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StopLiveStreamMonitorRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StopLiveStreamMonitorResponse
+ */
+ public function stopLiveStreamMonitorWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->monitorId)) {
+ $query['MonitorId'] = $request->monitorId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StopLiveStreamMonitor',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StopLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StopLiveStreamMonitorRequest $request
+ *
+ * @return StopLiveStreamMonitorResponse
+ */
+ public function stopLiveStreamMonitor($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->stopLiveStreamMonitorWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param StopPlaylistRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return StopPlaylistResponse
+ */
+ public function stopPlaylistWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->programId)) {
+ $query['ProgramId'] = $request->programId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'StopPlaylist',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return StopPlaylistResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param StopPlaylistRequest $request
+ *
+ * @return StopPlaylistResponse
+ */
+ public function stopPlaylist($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->stopPlaylistWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param TagLiveResourcesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return TagLiveResourcesResponse
+ */
+ public function tagLiveResourcesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->resourceType)) {
+ $query['ResourceType'] = $request->resourceType;
+ }
+ if (!Utils::isUnset($request->tag)) {
+ $query['Tag'] = $request->tag;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'TagLiveResources',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return TagLiveResourcesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param TagLiveResourcesRequest $request
+ *
+ * @return TagLiveResourcesResponse
+ */
+ public function tagLiveResources($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->tagLiveResourcesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UnTagLiveResourcesRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UnTagLiveResourcesResponse
+ */
+ public function unTagLiveResourcesWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->all)) {
+ $query['All'] = $request->all;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->resourceId)) {
+ $query['ResourceId'] = $request->resourceId;
+ }
+ if (!Utils::isUnset($request->resourceType)) {
+ $query['ResourceType'] = $request->resourceType;
+ }
+ if (!Utils::isUnset($request->tagKey)) {
+ $query['TagKey'] = $request->tagKey;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UnTagLiveResources',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UnTagLiveResourcesResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UnTagLiveResourcesRequest $request
+ *
+ * @return UnTagLiveResourcesResponse
+ */
+ public function unTagLiveResources($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->unTagLiveResourcesWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateCasterSceneAudioRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateCasterSceneAudioResponse
+ */
+ public function updateCasterSceneAudioWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->audioLayer)) {
+ $query['AudioLayer'] = $request->audioLayer;
+ }
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->followEnable)) {
+ $query['FollowEnable'] = $request->followEnable;
+ }
+ if (!Utils::isUnset($request->mixList)) {
+ $query['MixList'] = $request->mixList;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateCasterSceneAudio',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateCasterSceneAudioResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateCasterSceneAudioRequest $request
+ *
+ * @return UpdateCasterSceneAudioResponse
+ */
+ public function updateCasterSceneAudio($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateCasterSceneAudioWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateCasterSceneConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateCasterSceneConfigResponse
+ */
+ public function updateCasterSceneConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->casterId)) {
+ $query['CasterId'] = $request->casterId;
+ }
+ if (!Utils::isUnset($request->componentId)) {
+ $query['ComponentId'] = $request->componentId;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->sceneId)) {
+ $query['SceneId'] = $request->sceneId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateCasterSceneConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateCasterSceneConfigRequest $request
+ *
+ * @return UpdateCasterSceneConfigResponse
+ */
+ public function updateCasterSceneConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateCasterSceneConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveAppSnapshotConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveAppSnapshotConfigResponse
+ */
+ public function updateLiveAppSnapshotConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->callback)) {
+ $query['Callback'] = $request->callback;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->overwriteOssObject)) {
+ $query['OverwriteOssObject'] = $request->overwriteOssObject;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->sequenceOssObject)) {
+ $query['SequenceOssObject'] = $request->sequenceOssObject;
+ }
+ if (!Utils::isUnset($request->timeInterval)) {
+ $query['TimeInterval'] = $request->timeInterval;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveAppSnapshotConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveAppSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveAppSnapshotConfigRequest $request
+ *
+ * @return UpdateLiveAppSnapshotConfigResponse
+ */
+ public function updateLiveAppSnapshotConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveAppSnapshotConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveAudioAuditConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveAudioAuditConfigResponse
+ */
+ public function updateLiveAudioAuditConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->bizType)) {
+ $query['BizType'] = $request->bizType;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->ossObject)) {
+ $query['OssObject'] = $request->ossObject;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->streamName)) {
+ $query['StreamName'] = $request->streamName;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveAudioAuditConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveAudioAuditConfigRequest $request
+ *
+ * @return UpdateLiveAudioAuditConfigResponse
+ */
+ public function updateLiveAudioAuditConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveAudioAuditConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveAudioAuditNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveAudioAuditNotifyConfigResponse
+ */
+ public function updateLiveAudioAuditNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->callback)) {
+ $query['Callback'] = $request->callback;
+ }
+ if (!Utils::isUnset($request->callbackTemplate)) {
+ $query['CallbackTemplate'] = $request->callbackTemplate;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveAudioAuditNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveAudioAuditNotifyConfigRequest $request
+ *
+ * @return UpdateLiveAudioAuditNotifyConfigResponse
+ */
+ public function updateLiveAudioAuditNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveAudioAuditNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveDetectNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveDetectNotifyConfigResponse
+ */
+ public function updateLiveDetectNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->notifyUrl)) {
+ $query['NotifyUrl'] = $request->notifyUrl;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveDetectNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveDetectNotifyConfigRequest $request
+ *
+ * @return UpdateLiveDetectNotifyConfigResponse
+ */
+ public function updateLiveDetectNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveDetectNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLivePullStreamInfoConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLivePullStreamInfoConfigResponse
+ */
+ public function updateLivePullStreamInfoConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = OpenApiUtilClient::query(Utils::toMap($request));
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLivePullStreamInfoConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'GET',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLivePullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLivePullStreamInfoConfigRequest $request
+ *
+ * @return UpdateLivePullStreamInfoConfigResponse
+ */
+ public function updateLivePullStreamInfoConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLivePullStreamInfoConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveRecordNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveRecordNotifyConfigResponse
+ */
+ public function updateLiveRecordNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->needStatusNotify)) {
+ $query['NeedStatusNotify'] = $request->needStatusNotify;
+ }
+ if (!Utils::isUnset($request->notifyUrl)) {
+ $query['NotifyUrl'] = $request->notifyUrl;
+ }
+ if (!Utils::isUnset($request->onDemandUrl)) {
+ $query['OnDemandUrl'] = $request->onDemandUrl;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveRecordNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveRecordNotifyConfigRequest $request
+ *
+ * @return UpdateLiveRecordNotifyConfigResponse
+ */
+ public function updateLiveRecordNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveRecordNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveSnapshotDetectPornConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveSnapshotDetectPornConfigResponse
+ */
+ public function updateLiveSnapshotDetectPornConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->appName)) {
+ $query['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->interval)) {
+ $query['Interval'] = $request->interval;
+ }
+ if (!Utils::isUnset($request->ossBucket)) {
+ $query['OssBucket'] = $request->ossBucket;
+ }
+ if (!Utils::isUnset($request->ossEndpoint)) {
+ $query['OssEndpoint'] = $request->ossEndpoint;
+ }
+ if (!Utils::isUnset($request->ossObject)) {
+ $query['OssObject'] = $request->ossObject;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->scene)) {
+ $query['Scene'] = $request->scene;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveSnapshotDetectPornConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveSnapshotDetectPornConfigRequest $request
+ *
+ * @return UpdateLiveSnapshotDetectPornConfigResponse
+ */
+ public function updateLiveSnapshotDetectPornConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveSnapshotDetectPornConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveSnapshotNotifyConfigRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveSnapshotNotifyConfigResponse
+ */
+ public function updateLiveSnapshotNotifyConfigWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->notifyAuthKey)) {
+ $query['NotifyAuthKey'] = $request->notifyAuthKey;
+ }
+ if (!Utils::isUnset($request->notifyReqAuth)) {
+ $query['NotifyReqAuth'] = $request->notifyReqAuth;
+ }
+ if (!Utils::isUnset($request->notifyUrl)) {
+ $query['NotifyUrl'] = $request->notifyUrl;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveSnapshotNotifyConfig',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveSnapshotNotifyConfigRequest $request
+ *
+ * @return UpdateLiveSnapshotNotifyConfigResponse
+ */
+ public function updateLiveSnapshotNotifyConfig($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveSnapshotNotifyConfigWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveStreamMonitorRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveStreamMonitorResponse
+ */
+ public function updateLiveStreamMonitorWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->app)) {
+ $query['App'] = $request->app;
+ }
+ if (!Utils::isUnset($request->domain)) {
+ $query['Domain'] = $request->domain;
+ }
+ if (!Utils::isUnset($request->inputList)) {
+ $query['InputList'] = $request->inputList;
+ }
+ if (!Utils::isUnset($request->monitorId)) {
+ $query['MonitorId'] = $request->monitorId;
+ }
+ if (!Utils::isUnset($request->monitorName)) {
+ $query['MonitorName'] = $request->monitorName;
+ }
+ if (!Utils::isUnset($request->outputTemplate)) {
+ $query['OutputTemplate'] = $request->outputTemplate;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->stream)) {
+ $query['Stream'] = $request->stream;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveStreamMonitor',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveStreamMonitorRequest $request
+ *
+ * @return UpdateLiveStreamMonitorResponse
+ */
+ public function updateLiveStreamMonitor($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveStreamMonitorWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveStreamWatermarkRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveStreamWatermarkResponse
+ */
+ public function updateLiveStreamWatermarkWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->description)) {
+ $query['Description'] = $request->description;
+ }
+ if (!Utils::isUnset($request->height)) {
+ $query['Height'] = $request->height;
+ }
+ if (!Utils::isUnset($request->name)) {
+ $query['Name'] = $request->name;
+ }
+ if (!Utils::isUnset($request->offsetCorner)) {
+ $query['OffsetCorner'] = $request->offsetCorner;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->pictureUrl)) {
+ $query['PictureUrl'] = $request->pictureUrl;
+ }
+ if (!Utils::isUnset($request->refHeight)) {
+ $query['RefHeight'] = $request->refHeight;
+ }
+ if (!Utils::isUnset($request->refWidth)) {
+ $query['RefWidth'] = $request->refWidth;
+ }
+ if (!Utils::isUnset($request->templateId)) {
+ $query['TemplateId'] = $request->templateId;
+ }
+ if (!Utils::isUnset($request->transparency)) {
+ $query['Transparency'] = $request->transparency;
+ }
+ if (!Utils::isUnset($request->XOffset)) {
+ $query['XOffset'] = $request->XOffset;
+ }
+ if (!Utils::isUnset($request->YOffset)) {
+ $query['YOffset'] = $request->YOffset;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveStreamWatermark',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveStreamWatermarkResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveStreamWatermarkRequest $request
+ *
+ * @return UpdateLiveStreamWatermarkResponse
+ */
+ public function updateLiveStreamWatermark($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveStreamWatermarkWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveStreamWatermarkRuleRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveStreamWatermarkRuleResponse
+ */
+ public function updateLiveStreamWatermarkRuleWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->description)) {
+ $query['Description'] = $request->description;
+ }
+ if (!Utils::isUnset($request->name)) {
+ $query['Name'] = $request->name;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->ruleId)) {
+ $query['RuleId'] = $request->ruleId;
+ }
+ if (!Utils::isUnset($request->templateId)) {
+ $query['TemplateId'] = $request->templateId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveStreamWatermarkRule',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveStreamWatermarkRuleResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveStreamWatermarkRuleRequest $request
+ *
+ * @return UpdateLiveStreamWatermarkRuleResponse
+ */
+ public function updateLiveStreamWatermarkRule($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveStreamWatermarkRuleWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateLiveTopLevelDomainRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateLiveTopLevelDomainResponse
+ */
+ public function updateLiveTopLevelDomainWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->securityToken)) {
+ $query['SecurityToken'] = $request->securityToken;
+ }
+ if (!Utils::isUnset($request->topLevelDomain)) {
+ $query['TopLevelDomain'] = $request->topLevelDomain;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateLiveTopLevelDomain',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateLiveTopLevelDomainResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateLiveTopLevelDomainRequest $request
+ *
+ * @return UpdateLiveTopLevelDomainResponse
+ */
+ public function updateLiveTopLevelDomain($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateLiveTopLevelDomainWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateMessageAppRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateMessageAppResponse
+ */
+ public function updateMessageAppWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new UpdateMessageAppShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->appConfig)) {
+ $request->appConfigShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->appConfig, 'AppConfig', 'json');
+ }
+ if (!Utils::isUnset($tmpReq->extension)) {
+ $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json');
+ }
+ $body = [];
+ if (!Utils::isUnset($request->appConfigShrink)) {
+ $body['AppConfig'] = $request->appConfigShrink;
+ }
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->appName)) {
+ $body['AppName'] = $request->appName;
+ }
+ if (!Utils::isUnset($request->extensionShrink)) {
+ $body['Extension'] = $request->extensionShrink;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateMessageApp',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateMessageAppResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateMessageAppRequest $request
+ *
+ * @return UpdateMessageAppResponse
+ */
+ public function updateMessageApp($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateMessageAppWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateMessageGroupRequest $tmpReq
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateMessageGroupResponse
+ */
+ public function updateMessageGroupWithOptions($tmpReq, $runtime)
+ {
+ Utils::validateModel($tmpReq);
+ $request = new UpdateMessageGroupShrinkRequest([]);
+ OpenApiUtilClient::convert($tmpReq, $request);
+ if (!Utils::isUnset($tmpReq->extension)) {
+ $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json');
+ }
+ $body = [];
+ if (!Utils::isUnset($request->appId)) {
+ $body['AppId'] = $request->appId;
+ }
+ if (!Utils::isUnset($request->extensionShrink)) {
+ $body['Extension'] = $request->extensionShrink;
+ }
+ if (!Utils::isUnset($request->groupId)) {
+ $body['GroupId'] = $request->groupId;
+ }
+ $req = new OpenApiRequest([
+ 'body' => OpenApiUtilClient::parseToMap($body),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateMessageGroup',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateMessageGroupRequest $request
+ *
+ * @return UpdateMessageGroupResponse
+ */
+ public function updateMessageGroup($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateMessageGroupWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param UpdateMixStreamRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return UpdateMixStreamResponse
+ */
+ public function updateMixStreamWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->inputStreamList)) {
+ $query['InputStreamList'] = $request->inputStreamList;
+ }
+ if (!Utils::isUnset($request->layoutId)) {
+ $query['LayoutId'] = $request->layoutId;
+ }
+ if (!Utils::isUnset($request->mixStreamId)) {
+ $query['MixStreamId'] = $request->mixStreamId;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'UpdateMixStream',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return UpdateMixStreamResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param UpdateMixStreamRequest $request
+ *
+ * @return UpdateMixStreamResponse
+ */
+ public function updateMixStream($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->updateMixStreamWithOptions($request, $runtime);
+ }
+
+ /**
+ * @param VerifyLiveDomainOwnerRequest $request
+ * @param RuntimeOptions $runtime
+ *
+ * @return VerifyLiveDomainOwnerResponse
+ */
+ public function verifyLiveDomainOwnerWithOptions($request, $runtime)
+ {
+ Utils::validateModel($request);
+ $query = [];
+ if (!Utils::isUnset($request->domainName)) {
+ $query['DomainName'] = $request->domainName;
+ }
+ if (!Utils::isUnset($request->ownerId)) {
+ $query['OwnerId'] = $request->ownerId;
+ }
+ if (!Utils::isUnset($request->verifyType)) {
+ $query['VerifyType'] = $request->verifyType;
+ }
+ $req = new OpenApiRequest([
+ 'query' => OpenApiUtilClient::query($query),
+ ]);
+ $params = new Params([
+ 'action' => 'VerifyLiveDomainOwner',
+ 'version' => '2016-11-01',
+ 'protocol' => 'HTTPS',
+ 'pathname' => '/',
+ 'method' => 'POST',
+ 'authType' => 'AK',
+ 'style' => 'RPC',
+ 'reqBodyType' => 'formData',
+ 'bodyType' => 'json',
+ ]);
+
+ return VerifyLiveDomainOwnerResponse::fromMap($this->callApi($params, $req, $runtime));
+ }
+
+ /**
+ * @param VerifyLiveDomainOwnerRequest $request
+ *
+ * @return VerifyLiveDomainOwnerResponse
+ */
+ public function verifyLiveDomainOwner($request)
+ {
+ $runtime = new RuntimeOptions([]);
+
+ return $this->verifyLiveDomainOwnerWithOptions($request, $runtime);
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentRequest.php
new file mode 100644
index 000000000..3afa44cad
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentRequest.php
@@ -0,0 +1,179 @@
+ 'CaptionLayerContent',
+ 'casterId' => 'CasterId',
+ 'componentLayer' => 'ComponentLayer',
+ 'componentName' => 'ComponentName',
+ 'componentType' => 'ComponentType',
+ 'effect' => 'Effect',
+ 'htmlLayerContent' => 'HtmlLayerContent',
+ 'imageLayerContent' => 'ImageLayerContent',
+ 'layerOrder' => 'LayerOrder',
+ 'locationId' => 'LocationId',
+ 'ownerId' => 'OwnerId',
+ 'textLayerContent' => 'TextLayerContent',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->captionLayerContent) {
+ $res['CaptionLayerContent'] = $this->captionLayerContent;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentLayer) {
+ $res['ComponentLayer'] = $this->componentLayer;
+ }
+ if (null !== $this->componentName) {
+ $res['ComponentName'] = $this->componentName;
+ }
+ if (null !== $this->componentType) {
+ $res['ComponentType'] = $this->componentType;
+ }
+ if (null !== $this->effect) {
+ $res['Effect'] = $this->effect;
+ }
+ if (null !== $this->htmlLayerContent) {
+ $res['HtmlLayerContent'] = $this->htmlLayerContent;
+ }
+ if (null !== $this->imageLayerContent) {
+ $res['ImageLayerContent'] = $this->imageLayerContent;
+ }
+ if (null !== $this->layerOrder) {
+ $res['LayerOrder'] = $this->layerOrder;
+ }
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->textLayerContent) {
+ $res['TextLayerContent'] = $this->textLayerContent;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterComponentRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CaptionLayerContent'])) {
+ $model->captionLayerContent = $map['CaptionLayerContent'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentLayer'])) {
+ $model->componentLayer = $map['ComponentLayer'];
+ }
+ if (isset($map['ComponentName'])) {
+ $model->componentName = $map['ComponentName'];
+ }
+ if (isset($map['ComponentType'])) {
+ $model->componentType = $map['ComponentType'];
+ }
+ if (isset($map['Effect'])) {
+ $model->effect = $map['Effect'];
+ }
+ if (isset($map['HtmlLayerContent'])) {
+ $model->htmlLayerContent = $map['HtmlLayerContent'];
+ }
+ if (isset($map['ImageLayerContent'])) {
+ $model->imageLayerContent = $map['ImageLayerContent'];
+ }
+ if (isset($map['LayerOrder'])) {
+ $model->layerOrder = $map['LayerOrder'];
+ }
+ if (isset($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['TextLayerContent'])) {
+ $model->textLayerContent = $map['TextLayerContent'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponse.php
new file mode 100644
index 000000000..bd42317f8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCasterComponentResponse
+ */
+ 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 = AddCasterComponentResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponseBody.php
new file mode 100644
index 000000000..e270fb850
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponseBody.php
@@ -0,0 +1,59 @@
+ 'ComponentId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterComponentResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentRequest.php
new file mode 100644
index 000000000..968e5dee1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentRequest.php
@@ -0,0 +1,71 @@
+ 'ClientToken',
+ 'content' => 'Content',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->clientToken) {
+ $res['ClientToken'] = $this->clientToken;
+ }
+ if (null !== $this->content) {
+ $res['Content'] = $this->content;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterEpisodeGroupContentRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ClientToken'])) {
+ $model->clientToken = $map['ClientToken'];
+ }
+ if (isset($map['Content'])) {
+ $model->content = $map['Content'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponse.php
new file mode 100644
index 000000000..86714e0b9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCasterEpisodeGroupContentResponse
+ */
+ 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 = AddCasterEpisodeGroupContentResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody.php
new file mode 100644
index 000000000..f309f6bb7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody.php
@@ -0,0 +1,72 @@
+ 'ItemIds',
+ 'programId' => 'ProgramId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemIds) {
+ $res['ItemIds'] = null !== $this->itemIds ? $this->itemIds->toMap() : null;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterEpisodeGroupContentResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemIds'])) {
+ $model->itemIds = itemIds::fromMap($map['ItemIds']);
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody/itemIds.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody/itemIds.php
new file mode 100644
index 000000000..85c2207e7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody/itemIds.php
@@ -0,0 +1,49 @@
+ 'ItemId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemId) {
+ $res['ItemId'] = $this->itemId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return itemIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemId'])) {
+ if (!empty($map['ItemId'])) {
+ $model->itemId = $map['ItemId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest.php
new file mode 100644
index 000000000..4a5d12f17
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest.php
@@ -0,0 +1,144 @@
+ 'CallbackUrl',
+ 'clientToken' => 'ClientToken',
+ 'domainName' => 'DomainName',
+ 'item' => 'Item',
+ 'ownerId' => 'OwnerId',
+ 'repeatNum' => 'RepeatNum',
+ 'sideOutputUrl' => 'SideOutputUrl',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callbackUrl) {
+ $res['CallbackUrl'] = $this->callbackUrl;
+ }
+ if (null !== $this->clientToken) {
+ $res['ClientToken'] = $this->clientToken;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->item) {
+ $res['Item'] = [];
+ if (null !== $this->item && \is_array($this->item)) {
+ $n = 0;
+ foreach ($this->item as $item) {
+ $res['Item'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->repeatNum) {
+ $res['RepeatNum'] = $this->repeatNum;
+ }
+ if (null !== $this->sideOutputUrl) {
+ $res['SideOutputUrl'] = $this->sideOutputUrl;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterEpisodeGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CallbackUrl'])) {
+ $model->callbackUrl = $map['CallbackUrl'];
+ }
+ if (isset($map['ClientToken'])) {
+ $model->clientToken = $map['ClientToken'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Item'])) {
+ if (!empty($map['Item'])) {
+ $model->item = [];
+ $n = 0;
+ foreach ($map['Item'] as $item) {
+ $model->item[$n++] = null !== $item ? item::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RepeatNum'])) {
+ $model->repeatNum = $map['RepeatNum'];
+ }
+ if (isset($map['SideOutputUrl'])) {
+ $model->sideOutputUrl = $map['SideOutputUrl'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest/item.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest/item.php
new file mode 100644
index 000000000..3e99994ea
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest/item.php
@@ -0,0 +1,59 @@
+ 'ItemName',
+ 'vodUrl' => 'VodUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemName) {
+ $res['ItemName'] = $this->itemName;
+ }
+ if (null !== $this->vodUrl) {
+ $res['VodUrl'] = $this->vodUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return item
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemName'])) {
+ $model->itemName = $map['ItemName'];
+ }
+ if (isset($map['VodUrl'])) {
+ $model->vodUrl = $map['VodUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponse.php
new file mode 100644
index 000000000..c7cfd0f87
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCasterEpisodeGroupResponse
+ */
+ 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 = AddCasterEpisodeGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody.php
new file mode 100644
index 000000000..36180da89
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody.php
@@ -0,0 +1,72 @@
+ 'ItemIds',
+ 'programId' => 'ProgramId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemIds) {
+ $res['ItemIds'] = null !== $this->itemIds ? $this->itemIds->toMap() : null;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterEpisodeGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemIds'])) {
+ $model->itemIds = itemIds::fromMap($map['ItemIds']);
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody/itemIds.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody/itemIds.php
new file mode 100644
index 000000000..2bac48462
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody/itemIds.php
@@ -0,0 +1,49 @@
+ 'ItemId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemId) {
+ $res['ItemId'] = $this->itemId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return itemIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemId'])) {
+ if (!empty($map['ItemId'])) {
+ $model->itemId = $map['ItemId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeRequest.php
new file mode 100644
index 000000000..8af9136f3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeRequest.php
@@ -0,0 +1,145 @@
+ 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'endTime' => 'EndTime',
+ 'episodeName' => 'EpisodeName',
+ 'episodeType' => 'EpisodeType',
+ 'ownerId' => 'OwnerId',
+ 'resourceId' => 'ResourceId',
+ 'startTime' => 'StartTime',
+ 'switchType' => 'SwitchType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->episodeName) {
+ $res['EpisodeName'] = $this->episodeName;
+ }
+ if (null !== $this->episodeType) {
+ $res['EpisodeType'] = $this->episodeType;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->switchType) {
+ $res['SwitchType'] = $this->switchType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterEpisodeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ if (!empty($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['EpisodeName'])) {
+ $model->episodeName = $map['EpisodeName'];
+ }
+ if (isset($map['EpisodeType'])) {
+ $model->episodeType = $map['EpisodeType'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['SwitchType'])) {
+ $model->switchType = $map['SwitchType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponse.php
new file mode 100644
index 000000000..047d36421
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCasterEpisodeResponse
+ */
+ 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 = AddCasterEpisodeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponseBody.php
new file mode 100644
index 000000000..1c6e458e6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponseBody.php
@@ -0,0 +1,59 @@
+ 'EpisodeId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterEpisodeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest.php
new file mode 100644
index 000000000..9092146f6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest.php
@@ -0,0 +1,137 @@
+ 'AudioLayer',
+ 'blendList' => 'BlendList',
+ 'casterId' => 'CasterId',
+ 'mixList' => 'MixList',
+ 'ownerId' => 'OwnerId',
+ 'videoLayer' => 'VideoLayer',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioLayer) {
+ $res['AudioLayer'] = [];
+ if (null !== $this->audioLayer && \is_array($this->audioLayer)) {
+ $n = 0;
+ foreach ($this->audioLayer as $item) {
+ $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->blendList) {
+ $res['BlendList'] = $this->blendList;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->mixList) {
+ $res['MixList'] = $this->mixList;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->videoLayer) {
+ $res['VideoLayer'] = [];
+ if (null !== $this->videoLayer && \is_array($this->videoLayer)) {
+ $n = 0;
+ foreach ($this->videoLayer as $item) {
+ $res['VideoLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterLayoutRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioLayer'])) {
+ if (!empty($map['AudioLayer'])) {
+ $model->audioLayer = [];
+ $n = 0;
+ foreach ($map['AudioLayer'] as $item) {
+ $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['BlendList'])) {
+ if (!empty($map['BlendList'])) {
+ $model->blendList = $map['BlendList'];
+ }
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['MixList'])) {
+ if (!empty($map['MixList'])) {
+ $model->mixList = $map['MixList'];
+ }
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['VideoLayer'])) {
+ if (!empty($map['VideoLayer'])) {
+ $model->videoLayer = [];
+ $n = 0;
+ foreach ($map['VideoLayer'] as $item) {
+ $model->videoLayer[$n++] = null !== $item ? videoLayer::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/audioLayer.php
new file mode 100644
index 000000000..a516d98fc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/audioLayer.php
@@ -0,0 +1,71 @@
+ 'FixedDelayDuration',
+ 'validChannel' => 'ValidChannel',
+ 'volumeRate' => 'VolumeRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->validChannel) {
+ $res['ValidChannel'] = $this->validChannel;
+ }
+ if (null !== $this->volumeRate) {
+ $res['VolumeRate'] = $this->volumeRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['ValidChannel'])) {
+ $model->validChannel = $map['ValidChannel'];
+ }
+ if (isset($map['VolumeRate'])) {
+ $model->volumeRate = $map['VolumeRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/videoLayer.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/videoLayer.php
new file mode 100644
index 000000000..e3d33a49b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/videoLayer.php
@@ -0,0 +1,109 @@
+ 'FillMode',
+ 'fixedDelayDuration' => 'FixedDelayDuration',
+ 'heightNormalized' => 'HeightNormalized',
+ 'positionNormalized' => 'PositionNormalized',
+ 'positionRefer' => 'PositionRefer',
+ 'widthNormalized' => 'WidthNormalized',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fillMode) {
+ $res['FillMode'] = $this->fillMode;
+ }
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->heightNormalized) {
+ $res['HeightNormalized'] = $this->heightNormalized;
+ }
+ if (null !== $this->positionNormalized) {
+ $res['PositionNormalized'] = $this->positionNormalized;
+ }
+ if (null !== $this->positionRefer) {
+ $res['PositionRefer'] = $this->positionRefer;
+ }
+ if (null !== $this->widthNormalized) {
+ $res['WidthNormalized'] = $this->widthNormalized;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return videoLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FillMode'])) {
+ $model->fillMode = $map['FillMode'];
+ }
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['HeightNormalized'])) {
+ $model->heightNormalized = $map['HeightNormalized'];
+ }
+ if (isset($map['PositionNormalized'])) {
+ if (!empty($map['PositionNormalized'])) {
+ $model->positionNormalized = $map['PositionNormalized'];
+ }
+ }
+ if (isset($map['PositionRefer'])) {
+ $model->positionRefer = $map['PositionRefer'];
+ }
+ if (isset($map['WidthNormalized'])) {
+ $model->widthNormalized = $map['WidthNormalized'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponse.php
new file mode 100644
index 000000000..63e9610e6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCasterLayoutResponse
+ */
+ 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 = AddCasterLayoutResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponseBody.php
new file mode 100644
index 000000000..c5ee28cee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponseBody.php
@@ -0,0 +1,59 @@
+ 'LayoutId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterLayoutResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest.php
new file mode 100644
index 000000000..2c4581d9a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest.php
@@ -0,0 +1,84 @@
+ 'CasterId',
+ 'episode' => 'Episode',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->episode) {
+ $res['Episode'] = [];
+ if (null !== $this->episode && \is_array($this->episode)) {
+ $n = 0;
+ foreach ($this->episode as $item) {
+ $res['Episode'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterProgramRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['Episode'])) {
+ if (!empty($map['Episode'])) {
+ $model->episode = [];
+ $n = 0;
+ foreach ($map['Episode'] as $item) {
+ $model->episode[$n++] = null !== $item ? episode::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest/episode.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest/episode.php
new file mode 100644
index 000000000..5b67f1402
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest/episode.php
@@ -0,0 +1,121 @@
+ 'ComponentId',
+ 'endTime' => 'EndTime',
+ 'episodeName' => 'EpisodeName',
+ 'episodeType' => 'EpisodeType',
+ 'resourceId' => 'ResourceId',
+ 'startTime' => 'StartTime',
+ 'switchType' => 'SwitchType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->episodeName) {
+ $res['EpisodeName'] = $this->episodeName;
+ }
+ if (null !== $this->episodeType) {
+ $res['EpisodeType'] = $this->episodeType;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->switchType) {
+ $res['SwitchType'] = $this->switchType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return episode
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ComponentId'])) {
+ if (!empty($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['EpisodeName'])) {
+ $model->episodeName = $map['EpisodeName'];
+ }
+ if (isset($map['EpisodeType'])) {
+ $model->episodeType = $map['EpisodeType'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['SwitchType'])) {
+ $model->switchType = $map['SwitchType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponse.php
new file mode 100644
index 000000000..9b69637e7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCasterProgramResponse
+ */
+ 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 = AddCasterProgramResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody.php
new file mode 100644
index 000000000..96d919d36
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody.php
@@ -0,0 +1,60 @@
+ 'EpisodeIds',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->episodeIds) {
+ $res['EpisodeIds'] = null !== $this->episodeIds ? $this->episodeIds->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterProgramResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EpisodeIds'])) {
+ $model->episodeIds = episodeIds::fromMap($map['EpisodeIds']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds.php
new file mode 100644
index 000000000..ecc021483
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds.php
@@ -0,0 +1,60 @@
+ 'EpisodeId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = [];
+ if (null !== $this->episodeId && \is_array($this->episodeId)) {
+ $n = 0;
+ foreach ($this->episodeId as $item) {
+ $res['EpisodeId'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return episodeIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EpisodeId'])) {
+ if (!empty($map['EpisodeId'])) {
+ $model->episodeId = [];
+ $n = 0;
+ foreach ($map['EpisodeId'] as $item) {
+ $model->episodeId[$n++] = null !== $item ? episodeId::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds/episodeId.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds/episodeId.php
new file mode 100644
index 000000000..cc8cce5d7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds/episodeId.php
@@ -0,0 +1,47 @@
+ 'EpisodeId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return episodeId
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceRequest.php
new file mode 100644
index 000000000..782377131
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceRequest.php
@@ -0,0 +1,191 @@
+ 'BeginOffset',
+ 'casterId' => 'CasterId',
+ 'endOffset' => 'EndOffset',
+ 'fixedDelayDuration' => 'FixedDelayDuration',
+ 'liveStreamUrl' => 'LiveStreamUrl',
+ 'locationId' => 'LocationId',
+ 'materialId' => 'MaterialId',
+ 'ownerId' => 'OwnerId',
+ 'ptsCallbackInterval' => 'PtsCallbackInterval',
+ 'repeatNum' => 'RepeatNum',
+ 'resourceName' => 'ResourceName',
+ 'streamId' => 'StreamId',
+ 'vodUrl' => 'VodUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->beginOffset) {
+ $res['BeginOffset'] = $this->beginOffset;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->endOffset) {
+ $res['EndOffset'] = $this->endOffset;
+ }
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->liveStreamUrl) {
+ $res['LiveStreamUrl'] = $this->liveStreamUrl;
+ }
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+ if (null !== $this->materialId) {
+ $res['MaterialId'] = $this->materialId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->ptsCallbackInterval) {
+ $res['PtsCallbackInterval'] = $this->ptsCallbackInterval;
+ }
+ if (null !== $this->repeatNum) {
+ $res['RepeatNum'] = $this->repeatNum;
+ }
+ if (null !== $this->resourceName) {
+ $res['ResourceName'] = $this->resourceName;
+ }
+ if (null !== $this->streamId) {
+ $res['StreamId'] = $this->streamId;
+ }
+ if (null !== $this->vodUrl) {
+ $res['VodUrl'] = $this->vodUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterVideoResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BeginOffset'])) {
+ $model->beginOffset = $map['BeginOffset'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EndOffset'])) {
+ $model->endOffset = $map['EndOffset'];
+ }
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['LiveStreamUrl'])) {
+ $model->liveStreamUrl = $map['LiveStreamUrl'];
+ }
+ if (isset($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ if (isset($map['MaterialId'])) {
+ $model->materialId = $map['MaterialId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PtsCallbackInterval'])) {
+ $model->ptsCallbackInterval = $map['PtsCallbackInterval'];
+ }
+ if (isset($map['RepeatNum'])) {
+ $model->repeatNum = $map['RepeatNum'];
+ }
+ if (isset($map['ResourceName'])) {
+ $model->resourceName = $map['ResourceName'];
+ }
+ if (isset($map['StreamId'])) {
+ $model->streamId = $map['StreamId'];
+ }
+ if (isset($map['VodUrl'])) {
+ $model->vodUrl = $map['VodUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponse.php
new file mode 100644
index 000000000..f1829a17e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCasterVideoResourceResponse
+ */
+ 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 = AddCasterVideoResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponseBody.php
new file mode 100644
index 000000000..1121b249b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'resourceId' => 'ResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCasterVideoResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeRequest.php
new file mode 100644
index 000000000..db33e46fd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeRequest.php
@@ -0,0 +1,275 @@
+ 'App',
+ 'audioBitrate' => 'AudioBitrate',
+ 'audioChannelNum' => 'AudioChannelNum',
+ 'audioCodec' => 'AudioCodec',
+ 'audioProfile' => 'AudioProfile',
+ 'audioRate' => 'AudioRate',
+ 'domain' => 'Domain',
+ 'encryptParameters' => 'EncryptParameters',
+ 'FPS' => 'FPS',
+ 'gop' => 'Gop',
+ 'height' => 'Height',
+ 'kmsKeyExpireInterval' => 'KmsKeyExpireInterval',
+ 'kmsKeyID' => 'KmsKeyID',
+ 'kmsUID' => 'KmsUID',
+ 'ownerId' => 'OwnerId',
+ 'profile' => 'Profile',
+ 'template' => 'Template',
+ 'templateType' => 'TemplateType',
+ 'videoBitrate' => 'VideoBitrate',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->audioBitrate) {
+ $res['AudioBitrate'] = $this->audioBitrate;
+ }
+ if (null !== $this->audioChannelNum) {
+ $res['AudioChannelNum'] = $this->audioChannelNum;
+ }
+ if (null !== $this->audioCodec) {
+ $res['AudioCodec'] = $this->audioCodec;
+ }
+ if (null !== $this->audioProfile) {
+ $res['AudioProfile'] = $this->audioProfile;
+ }
+ if (null !== $this->audioRate) {
+ $res['AudioRate'] = $this->audioRate;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->encryptParameters) {
+ $res['EncryptParameters'] = $this->encryptParameters;
+ }
+ if (null !== $this->FPS) {
+ $res['FPS'] = $this->FPS;
+ }
+ if (null !== $this->gop) {
+ $res['Gop'] = $this->gop;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->kmsKeyExpireInterval) {
+ $res['KmsKeyExpireInterval'] = $this->kmsKeyExpireInterval;
+ }
+ if (null !== $this->kmsKeyID) {
+ $res['KmsKeyID'] = $this->kmsKeyID;
+ }
+ if (null !== $this->kmsUID) {
+ $res['KmsUID'] = $this->kmsUID;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->profile) {
+ $res['Profile'] = $this->profile;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+ if (null !== $this->templateType) {
+ $res['TemplateType'] = $this->templateType;
+ }
+ if (null !== $this->videoBitrate) {
+ $res['VideoBitrate'] = $this->videoBitrate;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCustomLiveStreamTranscodeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['AudioBitrate'])) {
+ $model->audioBitrate = $map['AudioBitrate'];
+ }
+ if (isset($map['AudioChannelNum'])) {
+ $model->audioChannelNum = $map['AudioChannelNum'];
+ }
+ if (isset($map['AudioCodec'])) {
+ $model->audioCodec = $map['AudioCodec'];
+ }
+ if (isset($map['AudioProfile'])) {
+ $model->audioProfile = $map['AudioProfile'];
+ }
+ if (isset($map['AudioRate'])) {
+ $model->audioRate = $map['AudioRate'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['EncryptParameters'])) {
+ $model->encryptParameters = $map['EncryptParameters'];
+ }
+ if (isset($map['FPS'])) {
+ $model->FPS = $map['FPS'];
+ }
+ if (isset($map['Gop'])) {
+ $model->gop = $map['Gop'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['KmsKeyExpireInterval'])) {
+ $model->kmsKeyExpireInterval = $map['KmsKeyExpireInterval'];
+ }
+ if (isset($map['KmsKeyID'])) {
+ $model->kmsKeyID = $map['KmsKeyID'];
+ }
+ if (isset($map['KmsUID'])) {
+ $model->kmsUID = $map['KmsUID'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Profile'])) {
+ $model->profile = $map['Profile'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+ if (isset($map['TemplateType'])) {
+ $model->templateType = $map['TemplateType'];
+ }
+ if (isset($map['VideoBitrate'])) {
+ $model->videoBitrate = $map['VideoBitrate'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponse.php
new file mode 100644
index 000000000..48a83f123
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponse.php
@@ -0,0 +1,74 @@
+ '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 AddCustomLiveStreamTranscodeResponse
+ */
+ 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 = AddCustomLiveStreamTranscodeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponseBody.php
new file mode 100644
index 000000000..8d4d94037
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddCustomLiveStreamTranscodeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateRequest.php
new file mode 100644
index 000000000..58a2af072
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateRequest.php
@@ -0,0 +1,119 @@
+ 'OwnerId',
+ 'certName' => 'CertName',
+ 'servCert' => 'ServCert',
+ 'privateKey' => 'PrivateKey',
+ 'passphrase' => 'Passphrase',
+ 'ask' => 'Ask',
+ 'description' => 'Description',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->servCert) {
+ $res['ServCert'] = $this->servCert;
+ }
+ if (null !== $this->privateKey) {
+ $res['PrivateKey'] = $this->privateKey;
+ }
+ if (null !== $this->passphrase) {
+ $res['Passphrase'] = $this->passphrase;
+ }
+ if (null !== $this->ask) {
+ $res['Ask'] = $this->ask;
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddDRMCertificateRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['ServCert'])) {
+ $model->servCert = $map['ServCert'];
+ }
+ if (isset($map['PrivateKey'])) {
+ $model->privateKey = $map['PrivateKey'];
+ }
+ if (isset($map['Passphrase'])) {
+ $model->passphrase = $map['Passphrase'];
+ }
+ if (isset($map['Ask'])) {
+ $model->ask = $map['Ask'];
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponse.php
new file mode 100644
index 000000000..3d9d8ce17
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddDRMCertificateResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = AddDRMCertificateResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponseBody.php
new file mode 100644
index 000000000..f0da1069e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'certId' => 'CertId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->certId) {
+ $res['CertId'] = $this->certId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddDRMCertificateResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['CertId'])) {
+ $model->certId = $map['CertId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigRequest.php
new file mode 100644
index 000000000..bee2da4c5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigRequest.php
@@ -0,0 +1,131 @@
+ 'OwnerId',
+ 'domainName' => 'DomainName',
+ 'appName' => 'AppName',
+ 'streamName' => 'StreamName',
+ 'mnsTopic' => 'MnsTopic',
+ 'mnsRegion' => 'MnsRegion',
+ 'period' => 'Period',
+ 'httpCallbackURL' => 'HttpCallbackURL',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->mnsTopic) {
+ $res['MnsTopic'] = $this->mnsTopic;
+ }
+ if (null !== $this->mnsRegion) {
+ $res['MnsRegion'] = $this->mnsRegion;
+ }
+ if (null !== $this->period) {
+ $res['Period'] = $this->period;
+ }
+ if (null !== $this->httpCallbackURL) {
+ $res['HttpCallbackURL'] = $this->httpCallbackURL;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveASRConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['MnsTopic'])) {
+ $model->mnsTopic = $map['MnsTopic'];
+ }
+ if (isset($map['MnsRegion'])) {
+ $model->mnsRegion = $map['MnsRegion'];
+ }
+ if (isset($map['Period'])) {
+ $model->period = $map['Period'];
+ }
+ if (isset($map['HttpCallbackURL'])) {
+ $model->httpCallbackURL = $map['HttpCallbackURL'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponse.php
new file mode 100644
index 000000000..ca49bf1c9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveASRConfigResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = AddLiveASRConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponseBody.php
new file mode 100644
index 000000000..a39bb2e9e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveASRConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest.php
new file mode 100644
index 000000000..efee785bf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest.php
@@ -0,0 +1,219 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'onDemand' => 'OnDemand',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ownerId' => 'OwnerId',
+ 'recordFormat' => 'RecordFormat',
+ 'securityToken' => 'SecurityToken',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ 'transcodeRecordFormat' => 'TranscodeRecordFormat',
+ 'transcodeTemplates' => 'TranscodeTemplates',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->onDemand) {
+ $res['OnDemand'] = $this->onDemand;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->recordFormat) {
+ $res['RecordFormat'] = [];
+ if (null !== $this->recordFormat && \is_array($this->recordFormat)) {
+ $n = 0;
+ foreach ($this->recordFormat as $item) {
+ $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->transcodeRecordFormat) {
+ $res['TranscodeRecordFormat'] = [];
+ if (null !== $this->transcodeRecordFormat && \is_array($this->transcodeRecordFormat)) {
+ $n = 0;
+ foreach ($this->transcodeRecordFormat as $item) {
+ $res['TranscodeRecordFormat'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->transcodeTemplates) {
+ $res['TranscodeTemplates'] = $this->transcodeTemplates;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAppRecordConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OnDemand'])) {
+ $model->onDemand = $map['OnDemand'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RecordFormat'])) {
+ if (!empty($map['RecordFormat'])) {
+ $model->recordFormat = [];
+ $n = 0;
+ foreach ($map['RecordFormat'] as $item) {
+ $model->recordFormat[$n++] = null !== $item ? recordFormat::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TranscodeRecordFormat'])) {
+ if (!empty($map['TranscodeRecordFormat'])) {
+ $model->transcodeRecordFormat = [];
+ $n = 0;
+ foreach ($map['TranscodeRecordFormat'] as $item) {
+ $model->transcodeRecordFormat[$n++] = null !== $item ? transcodeRecordFormat::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['TranscodeTemplates'])) {
+ if (!empty($map['TranscodeTemplates'])) {
+ $model->transcodeTemplates = $map['TranscodeTemplates'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/recordFormat.php
new file mode 100644
index 000000000..bed675b0c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/recordFormat.php
@@ -0,0 +1,95 @@
+ 'CycleDuration',
+ 'format' => 'Format',
+ 'ossObjectPrefix' => 'OssObjectPrefix',
+ 'sliceDuration' => 'SliceDuration',
+ 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cycleDuration) {
+ $res['CycleDuration'] = $this->cycleDuration;
+ }
+ if (null !== $this->format) {
+ $res['Format'] = $this->format;
+ }
+ if (null !== $this->ossObjectPrefix) {
+ $res['OssObjectPrefix'] = $this->ossObjectPrefix;
+ }
+ if (null !== $this->sliceDuration) {
+ $res['SliceDuration'] = $this->sliceDuration;
+ }
+ if (null !== $this->sliceOssObjectPrefix) {
+ $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordFormat
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CycleDuration'])) {
+ $model->cycleDuration = $map['CycleDuration'];
+ }
+ if (isset($map['Format'])) {
+ $model->format = $map['Format'];
+ }
+ if (isset($map['OssObjectPrefix'])) {
+ $model->ossObjectPrefix = $map['OssObjectPrefix'];
+ }
+ if (isset($map['SliceDuration'])) {
+ $model->sliceDuration = $map['SliceDuration'];
+ }
+ if (isset($map['SliceOssObjectPrefix'])) {
+ $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/transcodeRecordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/transcodeRecordFormat.php
new file mode 100644
index 000000000..e454bac14
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/transcodeRecordFormat.php
@@ -0,0 +1,95 @@
+ 'CycleDuration',
+ 'format' => 'Format',
+ 'ossObjectPrefix' => 'OssObjectPrefix',
+ 'sliceDuration' => 'SliceDuration',
+ 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cycleDuration) {
+ $res['CycleDuration'] = $this->cycleDuration;
+ }
+ if (null !== $this->format) {
+ $res['Format'] = $this->format;
+ }
+ if (null !== $this->ossObjectPrefix) {
+ $res['OssObjectPrefix'] = $this->ossObjectPrefix;
+ }
+ if (null !== $this->sliceDuration) {
+ $res['SliceDuration'] = $this->sliceDuration;
+ }
+ if (null !== $this->sliceOssObjectPrefix) {
+ $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeRecordFormat
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CycleDuration'])) {
+ $model->cycleDuration = $map['CycleDuration'];
+ }
+ if (isset($map['Format'])) {
+ $model->format = $map['Format'];
+ }
+ if (isset($map['OssObjectPrefix'])) {
+ $model->ossObjectPrefix = $map['OssObjectPrefix'];
+ }
+ if (isset($map['SliceDuration'])) {
+ $model->sliceDuration = $map['SliceDuration'];
+ }
+ if (isset($map['SliceOssObjectPrefix'])) {
+ $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponse.php
new file mode 100644
index 000000000..cd73ef4c0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveAppRecordConfigResponse
+ */
+ 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 = AddLiveAppRecordConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponseBody.php
new file mode 100644
index 000000000..6b0727c06
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAppRecordConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigRequest.php
new file mode 100644
index 000000000..616609863
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigRequest.php
@@ -0,0 +1,155 @@
+ 'AppName',
+ 'callback' => 'Callback',
+ 'domainName' => 'DomainName',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'overwriteOssObject' => 'OverwriteOssObject',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'sequenceOssObject' => 'SequenceOssObject',
+ 'timeInterval' => 'TimeInterval',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->callback) {
+ $res['Callback'] = $this->callback;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->overwriteOssObject) {
+ $res['OverwriteOssObject'] = $this->overwriteOssObject;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->sequenceOssObject) {
+ $res['SequenceOssObject'] = $this->sequenceOssObject;
+ }
+ if (null !== $this->timeInterval) {
+ $res['TimeInterval'] = $this->timeInterval;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAppSnapshotConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Callback'])) {
+ $model->callback = $map['Callback'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OverwriteOssObject'])) {
+ $model->overwriteOssObject = $map['OverwriteOssObject'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['SequenceOssObject'])) {
+ $model->sequenceOssObject = $map['SequenceOssObject'];
+ }
+ if (isset($map['TimeInterval'])) {
+ $model->timeInterval = $map['TimeInterval'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponse.php
new file mode 100644
index 000000000..c4f9b1af3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveAppSnapshotConfigResponse
+ */
+ 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 = AddLiveAppSnapshotConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponseBody.php
new file mode 100644
index 000000000..16dd5cce5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAppSnapshotConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigRequest.php
new file mode 100644
index 000000000..45401b11e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigRequest.php
@@ -0,0 +1,131 @@
+ 'AppName',
+ 'bizType' => 'BizType',
+ 'domainName' => 'DomainName',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->bizType) {
+ $res['BizType'] = $this->bizType;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAudioAuditConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['BizType'])) {
+ $model->bizType = $map['BizType'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponse.php
new file mode 100644
index 000000000..103b7e14b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveAudioAuditConfigResponse
+ */
+ 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 = AddLiveAudioAuditConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponseBody.php
new file mode 100644
index 000000000..16d68bf32
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAudioAuditConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigRequest.php
new file mode 100644
index 000000000..acb43c679
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigRequest.php
@@ -0,0 +1,83 @@
+ 'Callback',
+ 'callbackTemplate' => 'CallbackTemplate',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callback) {
+ $res['Callback'] = $this->callback;
+ }
+ if (null !== $this->callbackTemplate) {
+ $res['CallbackTemplate'] = $this->callbackTemplate;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAudioAuditNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Callback'])) {
+ $model->callback = $map['Callback'];
+ }
+ if (isset($map['CallbackTemplate'])) {
+ $model->callbackTemplate = $map['CallbackTemplate'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponse.php
new file mode 100644
index 000000000..8495bbe9e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveAudioAuditNotifyConfigResponse
+ */
+ 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 = AddLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponseBody.php
new file mode 100644
index 000000000..0f3a9c520
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveAudioAuditNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigRequest.php
new file mode 100644
index 000000000..9aa8489c8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigRequest.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'notifyUrl' => 'NotifyUrl',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDetectNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponse.php
new file mode 100644
index 000000000..c531caa65
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveDetectNotifyConfigResponse
+ */
+ 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 = AddLiveDetectNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponseBody.php
new file mode 100644
index 000000000..44d75f7b5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDetectNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingRequest.php
new file mode 100644
index 000000000..3e4c1b917
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'pullDomain' => 'PullDomain',
+ 'pushDomain' => 'PushDomain',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pullDomain) {
+ $res['PullDomain'] = $this->pullDomain;
+ }
+ if (null !== $this->pushDomain) {
+ $res['PushDomain'] = $this->pushDomain;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDomainMappingRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PullDomain'])) {
+ $model->pullDomain = $map['PullDomain'];
+ }
+ if (isset($map['PushDomain'])) {
+ $model->pushDomain = $map['PushDomain'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponse.php
new file mode 100644
index 000000000..f790c2d93
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveDomainMappingResponse
+ */
+ 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 = AddLiveDomainMappingResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponseBody.php
new file mode 100644
index 000000000..719cecf74
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDomainMappingResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingRequest.php
new file mode 100644
index 000000000..c6ffba122
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'playDomain' => 'PlayDomain',
+ 'pullDomain' => 'PullDomain',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->playDomain) {
+ $res['PlayDomain'] = $this->playDomain;
+ }
+ if (null !== $this->pullDomain) {
+ $res['PullDomain'] = $this->pullDomain;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDomainPlayMappingRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PlayDomain'])) {
+ $model->playDomain = $map['PlayDomain'];
+ }
+ if (isset($map['PullDomain'])) {
+ $model->pullDomain = $map['PullDomain'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponse.php
new file mode 100644
index 000000000..d2928b0a7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveDomainPlayMappingResponse
+ */
+ 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 = AddLiveDomainPlayMappingResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponseBody.php
new file mode 100644
index 000000000..217ccb380
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDomainPlayMappingResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainRequest.php
new file mode 100644
index 000000000..929176fa1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainRequest.php
@@ -0,0 +1,143 @@
+ 'CheckUrl',
+ 'domainName' => 'DomainName',
+ 'liveDomainType' => 'LiveDomainType',
+ 'ownerAccount' => 'OwnerAccount',
+ 'ownerId' => 'OwnerId',
+ 'region' => 'Region',
+ 'scope' => 'Scope',
+ 'securityToken' => 'SecurityToken',
+ 'topLevelDomain' => 'TopLevelDomain',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->checkUrl) {
+ $res['CheckUrl'] = $this->checkUrl;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->liveDomainType) {
+ $res['LiveDomainType'] = $this->liveDomainType;
+ }
+ if (null !== $this->ownerAccount) {
+ $res['OwnerAccount'] = $this->ownerAccount;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->scope) {
+ $res['Scope'] = $this->scope;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->topLevelDomain) {
+ $res['TopLevelDomain'] = $this->topLevelDomain;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDomainRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CheckUrl'])) {
+ $model->checkUrl = $map['CheckUrl'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['LiveDomainType'])) {
+ $model->liveDomainType = $map['LiveDomainType'];
+ }
+ if (isset($map['OwnerAccount'])) {
+ $model->ownerAccount = $map['OwnerAccount'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['Scope'])) {
+ $model->scope = $map['Scope'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['TopLevelDomain'])) {
+ $model->topLevelDomain = $map['TopLevelDomain'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponse.php
new file mode 100644
index 000000000..ba45d82a5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveDomainResponse
+ */
+ 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 = AddLiveDomainResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponseBody.php
new file mode 100644
index 000000000..78d200f00
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveDomainResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigRequest.php
new file mode 100644
index 000000000..50cfae805
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'sourceUrl' => 'SourceUrl',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sourceUrl) {
+ $res['SourceUrl'] = $this->sourceUrl;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLivePullStreamInfoConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SourceUrl'])) {
+ $model->sourceUrl = $map['SourceUrl'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponse.php
new file mode 100644
index 000000000..8923e3708
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLivePullStreamInfoConfigResponse
+ */
+ 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 = AddLivePullStreamInfoConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponseBody.php
new file mode 100644
index 000000000..de5c79430
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLivePullStreamInfoConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigRequest.php
new file mode 100644
index 000000000..d2c6f4cd5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'needStatusNotify' => 'NeedStatusNotify',
+ 'notifyUrl' => 'NotifyUrl',
+ 'onDemandUrl' => 'OnDemandUrl',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->needStatusNotify) {
+ $res['NeedStatusNotify'] = $this->needStatusNotify;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->onDemandUrl) {
+ $res['OnDemandUrl'] = $this->onDemandUrl;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveRecordNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NeedStatusNotify'])) {
+ $model->needStatusNotify = $map['NeedStatusNotify'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OnDemandUrl'])) {
+ $model->onDemandUrl = $map['OnDemandUrl'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponse.php
new file mode 100644
index 000000000..d11827f3d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveRecordNotifyConfigResponse
+ */
+ 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 = AddLiveRecordNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponseBody.php
new file mode 100644
index 000000000..1a1bef842
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveRecordNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigRequest.php
new file mode 100644
index 000000000..6c663b34b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigRequest.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'autoCompose' => 'AutoCompose',
+ 'composeVodTranscodeGroupId' => 'ComposeVodTranscodeGroupId',
+ 'cycleDuration' => 'CycleDuration',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'storageLocation' => 'StorageLocation',
+ 'streamName' => 'StreamName',
+ 'vodTranscodeGroupId' => 'VodTranscodeGroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->autoCompose) {
+ $res['AutoCompose'] = $this->autoCompose;
+ }
+ if (null !== $this->composeVodTranscodeGroupId) {
+ $res['ComposeVodTranscodeGroupId'] = $this->composeVodTranscodeGroupId;
+ }
+ if (null !== $this->cycleDuration) {
+ $res['CycleDuration'] = $this->cycleDuration;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->storageLocation) {
+ $res['StorageLocation'] = $this->storageLocation;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->vodTranscodeGroupId) {
+ $res['VodTranscodeGroupId'] = $this->vodTranscodeGroupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveRecordVodConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['AutoCompose'])) {
+ $model->autoCompose = $map['AutoCompose'];
+ }
+ if (isset($map['ComposeVodTranscodeGroupId'])) {
+ $model->composeVodTranscodeGroupId = $map['ComposeVodTranscodeGroupId'];
+ }
+ if (isset($map['CycleDuration'])) {
+ $model->cycleDuration = $map['CycleDuration'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StorageLocation'])) {
+ $model->storageLocation = $map['StorageLocation'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['VodTranscodeGroupId'])) {
+ $model->vodTranscodeGroupId = $map['VodTranscodeGroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponse.php
new file mode 100644
index 000000000..210e22309
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveRecordVodConfigResponse
+ */
+ 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 = AddLiveRecordVodConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponseBody.php
new file mode 100644
index 000000000..8e8788462
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveRecordVodConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigRequest.php
new file mode 100644
index 000000000..0fc79947c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigRequest.php
@@ -0,0 +1,145 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'interval' => 'Interval',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'ownerId' => 'OwnerId',
+ 'scene' => 'Scene',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->scene) {
+ $res['Scene'] = $this->scene;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveSnapshotDetectPornConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Scene'])) {
+ if (!empty($map['Scene'])) {
+ $model->scene = $map['Scene'];
+ }
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponse.php
new file mode 100644
index 000000000..50cf0f2a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveSnapshotDetectPornConfigResponse
+ */
+ 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 = AddLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponseBody.php
new file mode 100644
index 000000000..c1db9afa6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveSnapshotDetectPornConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigRequest.php
new file mode 100644
index 000000000..4ed3f52c0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'notifyAuthKey' => 'NotifyAuthKey',
+ 'notifyReqAuth' => 'NotifyReqAuth',
+ 'notifyUrl' => 'NotifyUrl',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyAuthKey) {
+ $res['NotifyAuthKey'] = $this->notifyAuthKey;
+ }
+ if (null !== $this->notifyReqAuth) {
+ $res['NotifyReqAuth'] = $this->notifyReqAuth;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveSnapshotNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyAuthKey'])) {
+ $model->notifyAuthKey = $map['NotifyAuthKey'];
+ }
+ if (isset($map['NotifyReqAuth'])) {
+ $model->notifyReqAuth = $map['NotifyReqAuth'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponse.php
new file mode 100644
index 000000000..cde151c9e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveSnapshotNotifyConfigResponse
+ */
+ 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 = AddLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponseBody.php
new file mode 100644
index 000000000..e27202068
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveSnapshotNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeRequest.php
new file mode 100644
index 000000000..95926e36f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeRequest.php
@@ -0,0 +1,107 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'encryptParameters' => 'EncryptParameters',
+ 'lazy' => 'Lazy',
+ 'ownerId' => 'OwnerId',
+ 'template' => 'Template',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->encryptParameters) {
+ $res['EncryptParameters'] = $this->encryptParameters;
+ }
+ if (null !== $this->lazy) {
+ $res['Lazy'] = $this->lazy;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveStreamTranscodeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['EncryptParameters'])) {
+ $model->encryptParameters = $map['EncryptParameters'];
+ }
+ if (isset($map['Lazy'])) {
+ $model->lazy = $map['Lazy'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponse.php
new file mode 100644
index 000000000..900e2dd58
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveStreamTranscodeResponse
+ */
+ 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 = AddLiveStreamTranscodeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponseBody.php
new file mode 100644
index 000000000..1bd8b29c3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveStreamTranscodeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRequest.php
new file mode 100644
index 000000000..95c2952a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRequest.php
@@ -0,0 +1,179 @@
+ 'Description',
+ 'height' => 'Height',
+ 'name' => 'Name',
+ 'offsetCorner' => 'OffsetCorner',
+ 'ownerId' => 'OwnerId',
+ 'pictureUrl' => 'PictureUrl',
+ 'refHeight' => 'RefHeight',
+ 'refWidth' => 'RefWidth',
+ 'transparency' => 'Transparency',
+ 'type' => 'Type',
+ 'XOffset' => 'XOffset',
+ 'YOffset' => 'YOffset',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->name) {
+ $res['Name'] = $this->name;
+ }
+ if (null !== $this->offsetCorner) {
+ $res['OffsetCorner'] = $this->offsetCorner;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pictureUrl) {
+ $res['PictureUrl'] = $this->pictureUrl;
+ }
+ if (null !== $this->refHeight) {
+ $res['RefHeight'] = $this->refHeight;
+ }
+ if (null !== $this->refWidth) {
+ $res['RefWidth'] = $this->refWidth;
+ }
+ if (null !== $this->transparency) {
+ $res['Transparency'] = $this->transparency;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+ if (null !== $this->XOffset) {
+ $res['XOffset'] = $this->XOffset;
+ }
+ if (null !== $this->YOffset) {
+ $res['YOffset'] = $this->YOffset;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveStreamWatermarkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['Name'])) {
+ $model->name = $map['Name'];
+ }
+ if (isset($map['OffsetCorner'])) {
+ $model->offsetCorner = $map['OffsetCorner'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PictureUrl'])) {
+ $model->pictureUrl = $map['PictureUrl'];
+ }
+ if (isset($map['RefHeight'])) {
+ $model->refHeight = $map['RefHeight'];
+ }
+ if (isset($map['RefWidth'])) {
+ $model->refWidth = $map['RefWidth'];
+ }
+ if (isset($map['Transparency'])) {
+ $model->transparency = $map['Transparency'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+ if (isset($map['XOffset'])) {
+ $model->XOffset = $map['XOffset'];
+ }
+ if (isset($map['YOffset'])) {
+ $model->YOffset = $map['YOffset'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponse.php
new file mode 100644
index 000000000..06c2a9b84
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveStreamWatermarkResponse
+ */
+ 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 = AddLiveStreamWatermarkResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponseBody.php
new file mode 100644
index 000000000..c2fcce7a1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'templateId' => 'TemplateId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveStreamWatermarkResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleRequest.php
new file mode 100644
index 000000000..3e8633caf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleRequest.php
@@ -0,0 +1,119 @@
+ 'App',
+ 'description' => 'Description',
+ 'domain' => 'Domain',
+ 'name' => 'Name',
+ 'ownerId' => 'OwnerId',
+ 'stream' => 'Stream',
+ 'templateId' => 'TemplateId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->name) {
+ $res['Name'] = $this->name;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveStreamWatermarkRuleRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['Name'])) {
+ $model->name = $map['Name'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponse.php
new file mode 100644
index 000000000..d851ce702
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponse.php
@@ -0,0 +1,74 @@
+ '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 AddLiveStreamWatermarkRuleResponse
+ */
+ 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 = AddLiveStreamWatermarkRuleResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponseBody.php
new file mode 100644
index 000000000..317d87397
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'ruleId' => 'RuleId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->ruleId) {
+ $res['RuleId'] = $this->ruleId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddLiveStreamWatermarkRuleResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['RuleId'])) {
+ $model->ruleId = $map['RuleId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigRequest.php
new file mode 100644
index 000000000..9fb321408
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigRequest.php
@@ -0,0 +1,131 @@
+ 'App',
+ 'avFormat' => 'AvFormat',
+ 'domainName' => 'DomainName',
+ 'groupId' => 'GroupId',
+ 'isLazy' => 'IsLazy',
+ 'isTimeAlign' => 'IsTimeAlign',
+ 'ownerId' => 'OwnerId',
+ 'templates' => 'Templates',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->avFormat) {
+ $res['AvFormat'] = $this->avFormat;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->isLazy) {
+ $res['IsLazy'] = $this->isLazy;
+ }
+ if (null !== $this->isTimeAlign) {
+ $res['IsTimeAlign'] = $this->isTimeAlign;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->templates) {
+ $res['Templates'] = $this->templates;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddMultiRateConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['AvFormat'])) {
+ $model->avFormat = $map['AvFormat'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['IsLazy'])) {
+ $model->isLazy = $map['IsLazy'];
+ }
+ if (isset($map['IsTimeAlign'])) {
+ $model->isTimeAlign = $map['IsTimeAlign'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Templates'])) {
+ $model->templates = $map['Templates'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponse.php
new file mode 100644
index 000000000..34f44d83a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 AddMultiRateConfigResponse
+ */
+ 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 = AddMultiRateConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody.php
new file mode 100644
index 000000000..eda5c3642
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody.php
@@ -0,0 +1,84 @@
+ 'Body',
+ 'code' => 'Code',
+ 'message' => 'Message',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->body) {
+ $res['Body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+ if (null !== $this->code) {
+ $res['Code'] = $this->code;
+ }
+ if (null !== $this->message) {
+ $res['Message'] = $this->message;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddMultiRateConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Body'])) {
+ $model->body = body::fromMap($map['Body']);
+ }
+ if (isset($map['Code'])) {
+ $model->code = $map['Code'];
+ }
+ if (isset($map['Message'])) {
+ $model->message = $map['Message'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body.php
new file mode 100644
index 000000000..fd5cc3a6a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body.php
@@ -0,0 +1,60 @@
+ 'FailedTemplates',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->failedTemplates) {
+ $res['FailedTemplates'] = [];
+ if (null !== $this->failedTemplates && \is_array($this->failedTemplates)) {
+ $n = 0;
+ foreach ($this->failedTemplates as $item) {
+ $res['FailedTemplates'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return body
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FailedTemplates'])) {
+ if (!empty($map['FailedTemplates'])) {
+ $model->failedTemplates = [];
+ $n = 0;
+ foreach ($map['FailedTemplates'] as $item) {
+ $model->failedTemplates[$n++] = null !== $item ? failedTemplates::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body/failedTemplates.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body/failedTemplates.php
new file mode 100644
index 000000000..d177636e0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body/failedTemplates.php
@@ -0,0 +1,203 @@
+ 'AudioBitrate',
+ 'audioChannelNum' => 'AudioChannelNum',
+ 'audioCodec' => 'AudioCodec',
+ 'audioProfile' => 'AudioProfile',
+ 'audioRate' => 'AudioRate',
+ 'bandWidth' => 'BandWidth',
+ 'fps' => 'Fps',
+ 'gop' => 'Gop',
+ 'height' => 'Height',
+ 'profile' => 'Profile',
+ 'template' => 'Template',
+ 'templateType' => 'TemplateType',
+ 'videoBitrate' => 'VideoBitrate',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioBitrate) {
+ $res['AudioBitrate'] = $this->audioBitrate;
+ }
+ if (null !== $this->audioChannelNum) {
+ $res['AudioChannelNum'] = $this->audioChannelNum;
+ }
+ if (null !== $this->audioCodec) {
+ $res['AudioCodec'] = $this->audioCodec;
+ }
+ if (null !== $this->audioProfile) {
+ $res['AudioProfile'] = $this->audioProfile;
+ }
+ if (null !== $this->audioRate) {
+ $res['AudioRate'] = $this->audioRate;
+ }
+ if (null !== $this->bandWidth) {
+ $res['BandWidth'] = $this->bandWidth;
+ }
+ if (null !== $this->fps) {
+ $res['Fps'] = $this->fps;
+ }
+ if (null !== $this->gop) {
+ $res['Gop'] = $this->gop;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->profile) {
+ $res['Profile'] = $this->profile;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+ if (null !== $this->templateType) {
+ $res['TemplateType'] = $this->templateType;
+ }
+ if (null !== $this->videoBitrate) {
+ $res['VideoBitrate'] = $this->videoBitrate;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return failedTemplates
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioBitrate'])) {
+ $model->audioBitrate = $map['AudioBitrate'];
+ }
+ if (isset($map['AudioChannelNum'])) {
+ $model->audioChannelNum = $map['AudioChannelNum'];
+ }
+ if (isset($map['AudioCodec'])) {
+ $model->audioCodec = $map['AudioCodec'];
+ }
+ if (isset($map['AudioProfile'])) {
+ $model->audioProfile = $map['AudioProfile'];
+ }
+ if (isset($map['AudioRate'])) {
+ $model->audioRate = $map['AudioRate'];
+ }
+ if (isset($map['BandWidth'])) {
+ $model->bandWidth = $map['BandWidth'];
+ }
+ if (isset($map['Fps'])) {
+ $model->fps = $map['Fps'];
+ }
+ if (isset($map['Gop'])) {
+ $model->gop = $map['Gop'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['Profile'])) {
+ $model->profile = $map['Profile'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+ if (isset($map['TemplateType'])) {
+ $model->templateType = $map['TemplateType'];
+ }
+ if (isset($map['VideoBitrate'])) {
+ $model->videoBitrate = $map['VideoBitrate'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsRequest.php
new file mode 100644
index 000000000..ab6a3bfff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsRequest.php
@@ -0,0 +1,95 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'programConfig' => 'ProgramConfig',
+ 'programId' => 'ProgramId',
+ 'programItems' => 'ProgramItems',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programConfig) {
+ $res['ProgramConfig'] = $this->programConfig;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->programItems) {
+ $res['ProgramItems'] = $this->programItems;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddPlaylistItemsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramConfig'])) {
+ $model->programConfig = $map['ProgramConfig'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['ProgramItems'])) {
+ $model->programItems = $map['ProgramItems'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponse.php
new file mode 100644
index 000000000..9a18aa9a7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponse.php
@@ -0,0 +1,74 @@
+ '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 AddPlaylistItemsResponse
+ */
+ 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 = AddPlaylistItemsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody.php
new file mode 100644
index 000000000..9b022b657
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody.php
@@ -0,0 +1,72 @@
+ 'Items',
+ 'programId' => 'ProgramId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->items) {
+ $res['Items'] = null !== $this->items ? $this->items->toMap() : null;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddPlaylistItemsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Items'])) {
+ $model->items = items::fromMap($map['Items']);
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items.php
new file mode 100644
index 000000000..eb3092617
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items.php
@@ -0,0 +1,85 @@
+ 'FailedItems',
+ 'successItems' => 'SuccessItems',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->failedItems) {
+ $res['FailedItems'] = [];
+ if (null !== $this->failedItems && \is_array($this->failedItems)) {
+ $n = 0;
+ foreach ($this->failedItems as $item) {
+ $res['FailedItems'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->successItems) {
+ $res['SuccessItems'] = [];
+ if (null !== $this->successItems && \is_array($this->successItems)) {
+ $n = 0;
+ foreach ($this->successItems as $item) {
+ $res['SuccessItems'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return items
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FailedItems'])) {
+ if (!empty($map['FailedItems'])) {
+ $model->failedItems = [];
+ $n = 0;
+ foreach ($map['FailedItems'] as $item) {
+ $model->failedItems[$n++] = null !== $item ? failedItems::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['SuccessItems'])) {
+ if (!empty($map['SuccessItems'])) {
+ $model->successItems = [];
+ $n = 0;
+ foreach ($map['SuccessItems'] as $item) {
+ $model->successItems[$n++] = null !== $item ? successItems::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/failedItems.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/failedItems.php
new file mode 100644
index 000000000..24f511078
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/failedItems.php
@@ -0,0 +1,59 @@
+ 'ItemId',
+ 'itemName' => 'ItemName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemId) {
+ $res['ItemId'] = $this->itemId;
+ }
+ if (null !== $this->itemName) {
+ $res['ItemName'] = $this->itemName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return failedItems
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemId'])) {
+ $model->itemId = $map['ItemId'];
+ }
+ if (isset($map['ItemName'])) {
+ $model->itemName = $map['ItemName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/successItems.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/successItems.php
new file mode 100644
index 000000000..24f07c01f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/successItems.php
@@ -0,0 +1,59 @@
+ 'ItemId',
+ 'itemName' => 'ItemName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemId) {
+ $res['ItemId'] = $this->itemId;
+ }
+ if (null !== $this->itemName) {
+ $res['ItemName'] = $this->itemName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return successItems
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemId'])) {
+ $model->itemId = $map['ItemId'];
+ }
+ if (isset($map['ItemName'])) {
+ $model->itemName = $map['ItemName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeRequest.php
new file mode 100644
index 000000000..e6bb942f3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeRequest.php
@@ -0,0 +1,263 @@
+ 'App',
+ 'audioBitrate' => 'AudioBitrate',
+ 'audioChannelNum' => 'AudioChannelNum',
+ 'audioCodec' => 'AudioCodec',
+ 'audioProfile' => 'AudioProfile',
+ 'audioRate' => 'AudioRate',
+ 'deleteBframes' => 'DeleteBframes',
+ 'domain' => 'Domain',
+ 'FPS' => 'FPS',
+ 'gop' => 'Gop',
+ 'height' => 'Height',
+ 'lazy' => 'Lazy',
+ 'opus' => 'Opus',
+ 'ownerId' => 'OwnerId',
+ 'profile' => 'Profile',
+ 'template' => 'Template',
+ 'templateType' => 'TemplateType',
+ 'videoBitrate' => 'VideoBitrate',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->audioBitrate) {
+ $res['AudioBitrate'] = $this->audioBitrate;
+ }
+ if (null !== $this->audioChannelNum) {
+ $res['AudioChannelNum'] = $this->audioChannelNum;
+ }
+ if (null !== $this->audioCodec) {
+ $res['AudioCodec'] = $this->audioCodec;
+ }
+ if (null !== $this->audioProfile) {
+ $res['AudioProfile'] = $this->audioProfile;
+ }
+ if (null !== $this->audioRate) {
+ $res['AudioRate'] = $this->audioRate;
+ }
+ if (null !== $this->deleteBframes) {
+ $res['DeleteBframes'] = $this->deleteBframes;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->FPS) {
+ $res['FPS'] = $this->FPS;
+ }
+ if (null !== $this->gop) {
+ $res['Gop'] = $this->gop;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->lazy) {
+ $res['Lazy'] = $this->lazy;
+ }
+ if (null !== $this->opus) {
+ $res['Opus'] = $this->opus;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->profile) {
+ $res['Profile'] = $this->profile;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+ if (null !== $this->templateType) {
+ $res['TemplateType'] = $this->templateType;
+ }
+ if (null !== $this->videoBitrate) {
+ $res['VideoBitrate'] = $this->videoBitrate;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddRtsLiveStreamTranscodeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['AudioBitrate'])) {
+ $model->audioBitrate = $map['AudioBitrate'];
+ }
+ if (isset($map['AudioChannelNum'])) {
+ $model->audioChannelNum = $map['AudioChannelNum'];
+ }
+ if (isset($map['AudioCodec'])) {
+ $model->audioCodec = $map['AudioCodec'];
+ }
+ if (isset($map['AudioProfile'])) {
+ $model->audioProfile = $map['AudioProfile'];
+ }
+ if (isset($map['AudioRate'])) {
+ $model->audioRate = $map['AudioRate'];
+ }
+ if (isset($map['DeleteBframes'])) {
+ $model->deleteBframes = $map['DeleteBframes'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['FPS'])) {
+ $model->FPS = $map['FPS'];
+ }
+ if (isset($map['Gop'])) {
+ $model->gop = $map['Gop'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['Lazy'])) {
+ $model->lazy = $map['Lazy'];
+ }
+ if (isset($map['Opus'])) {
+ $model->opus = $map['Opus'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Profile'])) {
+ $model->profile = $map['Profile'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+ if (isset($map['TemplateType'])) {
+ $model->templateType = $map['TemplateType'];
+ }
+ if (isset($map['VideoBitrate'])) {
+ $model->videoBitrate = $map['VideoBitrate'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponse.php
new file mode 100644
index 000000000..7ebb9f8b3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponse.php
@@ -0,0 +1,74 @@
+ '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 AddRtsLiveStreamTranscodeResponse
+ */
+ 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 = AddRtsLiveStreamTranscodeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponseBody.php
new file mode 100644
index 000000000..fdf1c493c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddRtsLiveStreamTranscodeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest.php
new file mode 100644
index 000000000..ba919e0a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest.php
@@ -0,0 +1,192 @@
+ 'CasterId',
+ 'duration' => 'Duration',
+ 'liveInputType' => 'LiveInputType',
+ 'ownerId' => 'OwnerId',
+ 'repeatTimes' => 'RepeatTimes',
+ 'resourceId' => 'ResourceId',
+ 'resourceType' => 'ResourceType',
+ 'resourceUrl' => 'ResourceUrl',
+ 'showName' => 'ShowName',
+ 'spot' => 'Spot',
+ 'isBatchMode' => 'isBatchMode',
+ 'showList' => 'showList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->liveInputType) {
+ $res['LiveInputType'] = $this->liveInputType;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->repeatTimes) {
+ $res['RepeatTimes'] = $this->repeatTimes;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceType) {
+ $res['ResourceType'] = $this->resourceType;
+ }
+ if (null !== $this->resourceUrl) {
+ $res['ResourceUrl'] = $this->resourceUrl;
+ }
+ if (null !== $this->showName) {
+ $res['ShowName'] = $this->showName;
+ }
+ if (null !== $this->spot) {
+ $res['Spot'] = $this->spot;
+ }
+ if (null !== $this->isBatchMode) {
+ $res['isBatchMode'] = $this->isBatchMode;
+ }
+ if (null !== $this->showList) {
+ $res['showList'] = [];
+ if (null !== $this->showList && \is_array($this->showList)) {
+ $n = 0;
+ foreach ($this->showList as $item) {
+ $res['showList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddShowIntoShowListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['LiveInputType'])) {
+ $model->liveInputType = $map['LiveInputType'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RepeatTimes'])) {
+ $model->repeatTimes = $map['RepeatTimes'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['ResourceType'])) {
+ $model->resourceType = $map['ResourceType'];
+ }
+ if (isset($map['ResourceUrl'])) {
+ $model->resourceUrl = $map['ResourceUrl'];
+ }
+ if (isset($map['ShowName'])) {
+ $model->showName = $map['ShowName'];
+ }
+ if (isset($map['Spot'])) {
+ $model->spot = $map['Spot'];
+ }
+ if (isset($map['isBatchMode'])) {
+ $model->isBatchMode = $map['isBatchMode'];
+ }
+ if (isset($map['showList'])) {
+ if (!empty($map['showList'])) {
+ $model->showList = [];
+ $n = 0;
+ foreach ($map['showList'] as $item) {
+ $model->showList[$n++] = null !== $item ? showList::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest/showList.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest/showList.php
new file mode 100644
index 000000000..977bfab15
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest/showList.php
@@ -0,0 +1,119 @@
+ 'duration',
+ 'liveInputType' => 'liveInputType',
+ 'repeatTimes' => 'repeatTimes',
+ 'resourceId' => 'resourceId',
+ 'resourceType' => 'resourceType',
+ 'resourceUrl' => 'resourceUrl',
+ 'showName' => 'showName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->duration) {
+ $res['duration'] = $this->duration;
+ }
+ if (null !== $this->liveInputType) {
+ $res['liveInputType'] = $this->liveInputType;
+ }
+ if (null !== $this->repeatTimes) {
+ $res['repeatTimes'] = $this->repeatTimes;
+ }
+ if (null !== $this->resourceId) {
+ $res['resourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceType) {
+ $res['resourceType'] = $this->resourceType;
+ }
+ if (null !== $this->resourceUrl) {
+ $res['resourceUrl'] = $this->resourceUrl;
+ }
+ if (null !== $this->showName) {
+ $res['showName'] = $this->showName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return showList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['duration'])) {
+ $model->duration = $map['duration'];
+ }
+ if (isset($map['liveInputType'])) {
+ $model->liveInputType = $map['liveInputType'];
+ }
+ if (isset($map['repeatTimes'])) {
+ $model->repeatTimes = $map['repeatTimes'];
+ }
+ if (isset($map['resourceId'])) {
+ $model->resourceId = $map['resourceId'];
+ }
+ if (isset($map['resourceType'])) {
+ $model->resourceType = $map['resourceType'];
+ }
+ if (isset($map['resourceUrl'])) {
+ $model->resourceUrl = $map['resourceUrl'];
+ }
+ if (isset($map['showName'])) {
+ $model->showName = $map['showName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponse.php
new file mode 100644
index 000000000..5309fd5bf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponse.php
@@ -0,0 +1,74 @@
+ '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 AddShowIntoShowListResponse
+ */
+ 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 = AddShowIntoShowListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponseBody.php
new file mode 100644
index 000000000..3f2787a57
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponseBody.php
@@ -0,0 +1,83 @@
+ 'RequestId',
+ 'showId' => 'ShowId',
+ 'failedList' => 'failedList',
+ 'successfulShowIds' => 'successfulShowIds',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+ if (null !== $this->failedList) {
+ $res['failedList'] = $this->failedList;
+ }
+ if (null !== $this->successfulShowIds) {
+ $res['successfulShowIds'] = $this->successfulShowIds;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddShowIntoShowListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+ if (isset($map['failedList'])) {
+ $model->failedList = $map['failedList'];
+ }
+ if (isset($map['successfulShowIds'])) {
+ $model->successfulShowIds = $map['successfulShowIds'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutRequest.php
new file mode 100644
index 000000000..4414a3294
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutRequest.php
@@ -0,0 +1,143 @@
+ 'BgImageConfig',
+ 'casterId' => 'CasterId',
+ 'commonConfig' => 'CommonConfig',
+ 'layerOrderConfigList' => 'LayerOrderConfigList',
+ 'layoutName' => 'LayoutName',
+ 'layoutType' => 'LayoutType',
+ 'mediaInputConfigList' => 'MediaInputConfigList',
+ 'ownerId' => 'OwnerId',
+ 'screenInputConfigList' => 'ScreenInputConfigList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bgImageConfig) {
+ $res['BgImageConfig'] = $this->bgImageConfig;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->commonConfig) {
+ $res['CommonConfig'] = $this->commonConfig;
+ }
+ if (null !== $this->layerOrderConfigList) {
+ $res['LayerOrderConfigList'] = $this->layerOrderConfigList;
+ }
+ if (null !== $this->layoutName) {
+ $res['LayoutName'] = $this->layoutName;
+ }
+ if (null !== $this->layoutType) {
+ $res['LayoutType'] = $this->layoutType;
+ }
+ if (null !== $this->mediaInputConfigList) {
+ $res['MediaInputConfigList'] = $this->mediaInputConfigList;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->screenInputConfigList) {
+ $res['ScreenInputConfigList'] = $this->screenInputConfigList;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddStudioLayoutRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BgImageConfig'])) {
+ $model->bgImageConfig = $map['BgImageConfig'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['CommonConfig'])) {
+ $model->commonConfig = $map['CommonConfig'];
+ }
+ if (isset($map['LayerOrderConfigList'])) {
+ $model->layerOrderConfigList = $map['LayerOrderConfigList'];
+ }
+ if (isset($map['LayoutName'])) {
+ $model->layoutName = $map['LayoutName'];
+ }
+ if (isset($map['LayoutType'])) {
+ $model->layoutType = $map['LayoutType'];
+ }
+ if (isset($map['MediaInputConfigList'])) {
+ $model->mediaInputConfigList = $map['MediaInputConfigList'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ScreenInputConfigList'])) {
+ $model->screenInputConfigList = $map['ScreenInputConfigList'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponse.php
new file mode 100644
index 000000000..8f8c528f3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponse.php
@@ -0,0 +1,74 @@
+ '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 AddStudioLayoutResponse
+ */
+ 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 = AddStudioLayoutResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponseBody.php
new file mode 100644
index 000000000..d9b564a07
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponseBody.php
@@ -0,0 +1,59 @@
+ 'LayoutId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddStudioLayoutResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIRequest.php
new file mode 100644
index 000000000..7e42239fc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIRequest.php
@@ -0,0 +1,131 @@
+ 'AppName',
+ 'delay' => 'Delay',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'pattern' => 'Pattern',
+ 'repeat' => 'Repeat',
+ 'streamName' => 'StreamName',
+ 'text' => 'Text',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->delay) {
+ $res['Delay'] = $this->delay;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pattern) {
+ $res['Pattern'] = $this->pattern;
+ }
+ if (null !== $this->repeat) {
+ $res['Repeat'] = $this->repeat;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->text) {
+ $res['Text'] = $this->text;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddTrancodeSEIRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Delay'])) {
+ $model->delay = $map['Delay'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Pattern'])) {
+ $model->pattern = $map['Pattern'];
+ }
+ if (isset($map['Repeat'])) {
+ $model->repeat = $map['Repeat'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Text'])) {
+ $model->text = $map['Text'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponse.php
new file mode 100644
index 000000000..211ebf8ec
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponse.php
@@ -0,0 +1,74 @@
+ '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 AddTrancodeSEIResponse
+ */
+ 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 = AddTrancodeSEIResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponseBody.php
new file mode 100644
index 000000000..c3df83c92
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AddTrancodeSEIResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamRequest.php
new file mode 100644
index 000000000..f1786cc3f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'ownerId' => 'OwnerId',
+ 'roomId' => 'RoomId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AllowPushStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponse.php
new file mode 100644
index 000000000..f5ebef8fc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 AllowPushStreamResponse
+ */
+ 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 = AllowPushStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponseBody.php
new file mode 100644
index 000000000..a2e2a0e8f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return AllowPushStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenRequest.php
new file mode 100644
index 000000000..8edb0f0ef
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'appUid' => 'AppUid',
+ 'boardId' => 'BoardId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ApplyBoardTokenRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponse.php
new file mode 100644
index 000000000..61008b6b1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ApplyBoardTokenResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = ApplyBoardTokenResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponseBody.php
new file mode 100644
index 000000000..3e7ea6cc0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponseBody.php
@@ -0,0 +1,71 @@
+ 'RequestId',
+ 'token' => 'Token',
+ 'expired' => 'Expired',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->token) {
+ $res['Token'] = $this->token;
+ }
+ if (null !== $this->expired) {
+ $res['Expired'] = $this->expired;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ApplyBoardTokenResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Token'])) {
+ $model->token = $map['Token'];
+ }
+ if (isset($map['Expired'])) {
+ $model->expired = $map['Expired'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenRequest.php
new file mode 100644
index 000000000..a1882557d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ApplyRecordTokenRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponse.php
new file mode 100644
index 000000000..61062bd0d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ApplyRecordTokenResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = ApplyRecordTokenResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponseBody.php
new file mode 100644
index 000000000..a6da6f6f7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponseBody.php
@@ -0,0 +1,95 @@
+ 'SecurityToken',
+ 'requestId' => 'RequestId',
+ 'accessKeyId' => 'AccessKeyId',
+ 'accessKeySecret' => 'AccessKeySecret',
+ 'expiration' => 'Expiration',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->accessKeyId) {
+ $res['AccessKeyId'] = $this->accessKeyId;
+ }
+ if (null !== $this->accessKeySecret) {
+ $res['AccessKeySecret'] = $this->accessKeySecret;
+ }
+ if (null !== $this->expiration) {
+ $res['Expiration'] = $this->expiration;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ApplyRecordTokenResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['AccessKeyId'])) {
+ $model->accessKeyId = $map['AccessKeyId'];
+ }
+ if (isset($map['AccessKeySecret'])) {
+ $model->accessKeySecret = $map['AccessKeySecret'];
+ }
+ if (isset($map['Expiration'])) {
+ $model->expiration = $map['Expiration'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsRequest.php
new file mode 100644
index 000000000..998ddc5e6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsRequest.php
@@ -0,0 +1,95 @@
+ 'DomainNames',
+ 'functionNames' => 'FunctionNames',
+ 'ownerAccount' => 'OwnerAccount',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainNames) {
+ $res['DomainNames'] = $this->domainNames;
+ }
+ if (null !== $this->functionNames) {
+ $res['FunctionNames'] = $this->functionNames;
+ }
+ if (null !== $this->ownerAccount) {
+ $res['OwnerAccount'] = $this->ownerAccount;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return BatchDeleteLiveDomainConfigsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainNames'])) {
+ $model->domainNames = $map['DomainNames'];
+ }
+ if (isset($map['FunctionNames'])) {
+ $model->functionNames = $map['FunctionNames'];
+ }
+ if (isset($map['OwnerAccount'])) {
+ $model->ownerAccount = $map['OwnerAccount'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponse.php
new file mode 100644
index 000000000..d0afdda70
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponse.php
@@ -0,0 +1,74 @@
+ '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 BatchDeleteLiveDomainConfigsResponse
+ */
+ 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 = BatchDeleteLiveDomainConfigsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponseBody.php
new file mode 100644
index 000000000..b05d0f5e5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return BatchDeleteLiveDomainConfigsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsRequest.php
new file mode 100644
index 000000000..e691f4c20
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsRequest.php
@@ -0,0 +1,95 @@
+ 'DomainNames',
+ 'functions' => 'Functions',
+ 'ownerAccount' => 'OwnerAccount',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainNames) {
+ $res['DomainNames'] = $this->domainNames;
+ }
+ if (null !== $this->functions) {
+ $res['Functions'] = $this->functions;
+ }
+ if (null !== $this->ownerAccount) {
+ $res['OwnerAccount'] = $this->ownerAccount;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return BatchSetLiveDomainConfigsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainNames'])) {
+ $model->domainNames = $map['DomainNames'];
+ }
+ if (isset($map['Functions'])) {
+ $model->functions = $map['Functions'];
+ }
+ if (isset($map['OwnerAccount'])) {
+ $model->ownerAccount = $map['OwnerAccount'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponse.php
new file mode 100644
index 000000000..85dc666aa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponse.php
@@ -0,0 +1,74 @@
+ '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 BatchSetLiveDomainConfigsResponse
+ */
+ 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 = BatchSetLiveDomainConfigsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponseBody.php
new file mode 100644
index 000000000..f5889705d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return BatchSetLiveDomainConfigsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserRequest.php
new file mode 100644
index 000000000..d5f229576
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'groupId' => 'GroupId',
+ 'operatorUserId' => 'OperatorUserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->operatorUserId) {
+ $res['OperatorUserId'] = $this->operatorUserId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CancelMuteAllGroupUserRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['OperatorUserId'])) {
+ $model->operatorUserId = $map['OperatorUserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponse.php
new file mode 100644
index 000000000..7a008b15f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponse.php
@@ -0,0 +1,74 @@
+ '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 CancelMuteAllGroupUserResponse
+ */
+ 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 = CancelMuteAllGroupUserResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody.php
new file mode 100644
index 000000000..b76cc2750
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CancelMuteAllGroupUserResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody/result.php
new file mode 100644
index 000000000..7e12b6aec
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'Success',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->success) {
+ $res['Success'] = $this->success;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Success'])) {
+ $model->success = $map['Success'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleRequest.php
new file mode 100644
index 000000000..b1b6423d9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleRequest.php
@@ -0,0 +1,95 @@
+ 'RoleArn',
+ 'SPIRegionId' => 'SPIRegionId',
+ 'serviceName' => 'ServiceName',
+ 'deletionTaskId' => 'DeletionTaskId',
+ 'accountId' => 'AccountId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->roleArn) {
+ $res['RoleArn'] = $this->roleArn;
+ }
+ if (null !== $this->SPIRegionId) {
+ $res['SPIRegionId'] = $this->SPIRegionId;
+ }
+ if (null !== $this->serviceName) {
+ $res['ServiceName'] = $this->serviceName;
+ }
+ if (null !== $this->deletionTaskId) {
+ $res['DeletionTaskId'] = $this->deletionTaskId;
+ }
+ if (null !== $this->accountId) {
+ $res['AccountId'] = $this->accountId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CheckServiceForRoleRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RoleArn'])) {
+ $model->roleArn = $map['RoleArn'];
+ }
+ if (isset($map['SPIRegionId'])) {
+ $model->SPIRegionId = $map['SPIRegionId'];
+ }
+ if (isset($map['ServiceName'])) {
+ $model->serviceName = $map['ServiceName'];
+ }
+ if (isset($map['DeletionTaskId'])) {
+ $model->deletionTaskId = $map['DeletionTaskId'];
+ }
+ if (isset($map['AccountId'])) {
+ $model->accountId = $map['AccountId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponse.php
new file mode 100644
index 000000000..615474843
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CheckServiceForRoleResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = CheckServiceForRoleResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponseBody.php
new file mode 100644
index 000000000..47ca5f760
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'deletable' => 'Deletable',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->deletable) {
+ $res['Deletable'] = $this->deletable;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CheckServiceForRoleResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Deletable'])) {
+ $model->deletable = $map['Deletable'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftRequest.php
new file mode 100644
index 000000000..1446f2a2f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CloseLiveShiftRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponse.php
new file mode 100644
index 000000000..5d3e23b9f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponse.php
@@ -0,0 +1,74 @@
+ '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 CloseLiveShiftResponse
+ */
+ 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 = CloseLiveShiftResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponseBody.php
new file mode 100644
index 000000000..fa110b25f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CloseLiveShiftResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupRequest.php
new file mode 100644
index 000000000..61dc0e5f1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupRequest.php
@@ -0,0 +1,59 @@
+ 'AppId',
+ 'groupId' => 'GroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CloseMessageGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponse.php
new file mode 100644
index 000000000..62b11625f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 CloseMessageGroupResponse
+ */
+ 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 = CloseMessageGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody.php
new file mode 100644
index 000000000..b1f952bac
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CloseMessageGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody/result.php
new file mode 100644
index 000000000..7e3aea9dd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'Success',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->success) {
+ $res['Success'] = $this->success;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Success'])) {
+ $model->success = $map['Success'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordRequest.php
new file mode 100644
index 000000000..8c05c2def
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'recordId' => 'RecordId',
+ 'endTime' => 'EndTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CompleteBoardRecordRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponse.php
new file mode 100644
index 000000000..d649d6a2a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CompleteBoardRecordResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = CompleteBoardRecordResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponseBody.php
new file mode 100644
index 000000000..914579ca9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'ossPath' => 'OssPath',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->ossPath) {
+ $res['OssPath'] = $this->ossPath;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CompleteBoardRecordResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['OssPath'])) {
+ $model->ossPath = $map['OssPath'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRequest.php
new file mode 100644
index 000000000..2812323a3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'boardId' => 'BoardId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CompleteBoardRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponse.php
new file mode 100644
index 000000000..6ce991ed9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CompleteBoardResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = CompleteBoardResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponseBody.php
new file mode 100644
index 000000000..22c60b76b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CompleteBoardResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceRequest.php
new file mode 100644
index 000000000..1feb481ae
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceRequest.php
@@ -0,0 +1,95 @@
+ 'OwnerId',
+ 'htmlResourceId' => 'HtmlResourceId',
+ 'htmlUrl' => 'htmlUrl',
+ 'casterId' => 'CasterId',
+ 'operate' => 'Operate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->htmlResourceId) {
+ $res['HtmlResourceId'] = $this->htmlResourceId;
+ }
+ if (null !== $this->htmlUrl) {
+ $res['htmlUrl'] = $this->htmlUrl;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->operate) {
+ $res['Operate'] = $this->operate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ControlHtmlResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['HtmlResourceId'])) {
+ $model->htmlResourceId = $map['HtmlResourceId'];
+ }
+ if (isset($map['htmlUrl'])) {
+ $model->htmlUrl = $map['htmlUrl'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['Operate'])) {
+ $model->operate = $map['Operate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponse.php
new file mode 100644
index 000000000..b371e890b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ControlHtmlResourceResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = ControlHtmlResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponseBody.php
new file mode 100644
index 000000000..791e11ee9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponseBody.php
@@ -0,0 +1,59 @@
+ 'StreamId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamId) {
+ $res['StreamId'] = $this->streamId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ControlHtmlResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamId'])) {
+ $model->streamId = $map['StreamId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterRequest.php
new file mode 100644
index 000000000..fd6b9c1ed
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterRequest.php
@@ -0,0 +1,83 @@
+ 'CasterName',
+ 'clientToken' => 'ClientToken',
+ 'ownerId' => 'OwnerId',
+ 'srcCasterId' => 'SrcCasterId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterName) {
+ $res['CasterName'] = $this->casterName;
+ }
+ if (null !== $this->clientToken) {
+ $res['ClientToken'] = $this->clientToken;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->srcCasterId) {
+ $res['SrcCasterId'] = $this->srcCasterId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CopyCasterRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterName'])) {
+ $model->casterName = $map['CasterName'];
+ }
+ if (isset($map['ClientToken'])) {
+ $model->clientToken = $map['ClientToken'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SrcCasterId'])) {
+ $model->srcCasterId = $map['SrcCasterId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponse.php
new file mode 100644
index 000000000..12d4c9dd9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponse.php
@@ -0,0 +1,74 @@
+ '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 CopyCasterResponse
+ */
+ 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 = CopyCasterResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponseBody.php
new file mode 100644
index 000000000..5a75a6c3a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponseBody.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CopyCasterResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigRequest.php
new file mode 100644
index 000000000..c662b7545
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigRequest.php
@@ -0,0 +1,83 @@
+ 'CasterId',
+ 'fromSceneId' => 'FromSceneId',
+ 'ownerId' => 'OwnerId',
+ 'toSceneId' => 'ToSceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->fromSceneId) {
+ $res['FromSceneId'] = $this->fromSceneId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->toSceneId) {
+ $res['ToSceneId'] = $this->toSceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CopyCasterSceneConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['FromSceneId'])) {
+ $model->fromSceneId = $map['FromSceneId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ToSceneId'])) {
+ $model->toSceneId = $map['ToSceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponse.php
new file mode 100644
index 000000000..e7fee2574
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 CopyCasterSceneConfigResponse
+ */
+ 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 = CopyCasterSceneConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponseBody.php
new file mode 100644
index 000000000..f55cfb3fa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CopyCasterSceneConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardRequest.php
new file mode 100644
index 000000000..3345f2c6d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'appUid' => 'AppUid',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateBoardRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponse.php
new file mode 100644
index 000000000..bb9667ebf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateBoardResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = CreateBoardResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponseBody.php
new file mode 100644
index 000000000..8af4835ff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponseBody.php
@@ -0,0 +1,59 @@
+ 'BoardId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateBoardResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterRequest.php
new file mode 100644
index 000000000..e57b8b8a5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterRequest.php
@@ -0,0 +1,131 @@
+ 'CasterName',
+ 'casterTemplate' => 'CasterTemplate',
+ 'chargeType' => 'ChargeType',
+ 'clientToken' => 'ClientToken',
+ 'expireTime' => 'ExpireTime',
+ 'normType' => 'NormType',
+ 'ownerId' => 'OwnerId',
+ 'purchaseTime' => 'PurchaseTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterName) {
+ $res['CasterName'] = $this->casterName;
+ }
+ if (null !== $this->casterTemplate) {
+ $res['CasterTemplate'] = $this->casterTemplate;
+ }
+ if (null !== $this->chargeType) {
+ $res['ChargeType'] = $this->chargeType;
+ }
+ if (null !== $this->clientToken) {
+ $res['ClientToken'] = $this->clientToken;
+ }
+ if (null !== $this->expireTime) {
+ $res['ExpireTime'] = $this->expireTime;
+ }
+ if (null !== $this->normType) {
+ $res['NormType'] = $this->normType;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->purchaseTime) {
+ $res['PurchaseTime'] = $this->purchaseTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateCasterRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterName'])) {
+ $model->casterName = $map['CasterName'];
+ }
+ if (isset($map['CasterTemplate'])) {
+ $model->casterTemplate = $map['CasterTemplate'];
+ }
+ if (isset($map['ChargeType'])) {
+ $model->chargeType = $map['ChargeType'];
+ }
+ if (isset($map['ClientToken'])) {
+ $model->clientToken = $map['ClientToken'];
+ }
+ if (isset($map['ExpireTime'])) {
+ $model->expireTime = $map['ExpireTime'];
+ }
+ if (isset($map['NormType'])) {
+ $model->normType = $map['NormType'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PurchaseTime'])) {
+ $model->purchaseTime = $map['PurchaseTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponse.php
new file mode 100644
index 000000000..1332048ba
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateCasterResponse
+ */
+ 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 = CreateCasterResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponseBody.php
new file mode 100644
index 000000000..711c261a7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponseBody.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateCasterResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateRequest.php
new file mode 100644
index 000000000..408afe439
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateRequest.php
@@ -0,0 +1,71 @@
+ 'CustomTemplate',
+ 'ownerId' => 'OwnerId',
+ 'template' => 'Template',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->customTemplate) {
+ $res['CustomTemplate'] = $this->customTemplate;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateCustomTemplateRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CustomTemplate'])) {
+ $model->customTemplate = $map['CustomTemplate'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponse.php
new file mode 100644
index 000000000..0dd59f3ff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateCustomTemplateResponse
+ */
+ 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 = CreateCustomTemplateResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponseBody.php
new file mode 100644
index 000000000..6609d72a6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateCustomTemplateResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryRequest.php
new file mode 100644
index 000000000..7a50f9042
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'logstore' => 'Logstore',
+ 'ownerId' => 'OwnerId',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveRealTimeLogDeliveryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponse.php
new file mode 100644
index 000000000..c2130b288
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateLiveRealTimeLogDeliveryResponse
+ */
+ 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 = CreateLiveRealTimeLogDeliveryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponseBody.php
new file mode 100644
index 000000000..594730212
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveRealTimeLogDeliveryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorRequest.php
new file mode 100644
index 000000000..1ac7e79b9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorRequest.php
@@ -0,0 +1,119 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'inputList' => 'InputList',
+ 'monitorName' => 'MonitorName',
+ 'outputTemplate' => 'OutputTemplate',
+ 'ownerId' => 'OwnerId',
+ 'stream' => 'Stream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->inputList) {
+ $res['InputList'] = $this->inputList;
+ }
+ if (null !== $this->monitorName) {
+ $res['MonitorName'] = $this->monitorName;
+ }
+ if (null !== $this->outputTemplate) {
+ $res['OutputTemplate'] = $this->outputTemplate;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveStreamMonitorRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['InputList'])) {
+ $model->inputList = $map['InputList'];
+ }
+ if (isset($map['MonitorName'])) {
+ $model->monitorName = $map['MonitorName'];
+ }
+ if (isset($map['OutputTemplate'])) {
+ $model->outputTemplate = $map['OutputTemplate'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponse.php
new file mode 100644
index 000000000..1731d8d91
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateLiveStreamMonitorResponse
+ */
+ 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 = CreateLiveStreamMonitorResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponseBody.php
new file mode 100644
index 000000000..d964d0e83
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponseBody.php
@@ -0,0 +1,59 @@
+ 'MonitorId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->monitorId) {
+ $res['MonitorId'] = $this->monitorId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveStreamMonitorResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MonitorId'])) {
+ $model->monitorId = $map['MonitorId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesRequest.php
new file mode 100644
index 000000000..ab3c14fab
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesRequest.php
@@ -0,0 +1,155 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveStreamRecordIndexFilesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponse.php
new file mode 100644
index 000000000..94b1972cb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateLiveStreamRecordIndexFilesResponse
+ */
+ 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 = CreateLiveStreamRecordIndexFilesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody.php
new file mode 100644
index 000000000..4eb14912a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody.php
@@ -0,0 +1,60 @@
+ 'RecordInfo',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordInfo) {
+ $res['RecordInfo'] = null !== $this->recordInfo ? $this->recordInfo->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveStreamRecordIndexFilesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordInfo'])) {
+ $model->recordInfo = recordInfo::fromMap($map['RecordInfo']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody/recordInfo.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody/recordInfo.php
new file mode 100644
index 000000000..6727b680c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody/recordInfo.php
@@ -0,0 +1,203 @@
+ 'AppName',
+ 'createTime' => 'CreateTime',
+ 'domainName' => 'DomainName',
+ 'duration' => 'Duration',
+ 'endTime' => 'EndTime',
+ 'height' => 'Height',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'recordId' => 'RecordId',
+ 'recordUrl' => 'RecordUrl',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+ if (null !== $this->recordUrl) {
+ $res['RecordUrl'] = $this->recordUrl;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+ if (isset($map['RecordUrl'])) {
+ $model->recordUrl = $map['RecordUrl'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateRequest.php
new file mode 100644
index 000000000..630b42211
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'templateConfig' => 'TemplateConfig',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->templateConfig) {
+ $res['TemplateConfig'] = $this->templateConfig;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveTranscodeTemplateRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['TemplateConfig'])) {
+ $model->templateConfig = $map['TemplateConfig'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponse.php
new file mode 100644
index 000000000..7a6985452
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateLiveTranscodeTemplateResponse
+ */
+ 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 = CreateLiveTranscodeTemplateResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponseBody.php
new file mode 100644
index 000000000..9009190d1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'templateId' => 'TemplateId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateLiveTranscodeTemplateResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppRequest.php
new file mode 100644
index 000000000..c54b02b4e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppRequest.php
@@ -0,0 +1,71 @@
+ 'AppConfig',
+ 'appName' => 'AppName',
+ 'extension' => 'Extension',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appConfig) {
+ $res['AppConfig'] = $this->appConfig;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMessageAppRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppConfig'])) {
+ $model->appConfig = $map['AppConfig'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponse.php
new file mode 100644
index 000000000..643e22c66
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateMessageAppResponse
+ */
+ 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 = CreateMessageAppResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody.php
new file mode 100644
index 000000000..e4959e78e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMessageAppResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody/result.php
new file mode 100644
index 000000000..50ea6aa95
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'AppId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppShrinkRequest.php
new file mode 100644
index 000000000..ced9ebc5a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppShrinkRequest.php
@@ -0,0 +1,71 @@
+ 'AppConfig',
+ 'appName' => 'AppName',
+ 'extensionShrink' => 'Extension',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appConfigShrink) {
+ $res['AppConfig'] = $this->appConfigShrink;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->extensionShrink) {
+ $res['Extension'] = $this->extensionShrink;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMessageAppShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppConfig'])) {
+ $model->appConfigShrink = $map['AppConfig'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extensionShrink = $map['Extension'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupRequest.php
new file mode 100644
index 000000000..abdde2f07
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'creatorId' => 'CreatorId',
+ 'extension' => 'Extension',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->creatorId) {
+ $res['CreatorId'] = $this->creatorId;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMessageGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['CreatorId'])) {
+ $model->creatorId = $map['CreatorId'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponse.php
new file mode 100644
index 000000000..fbb68b45c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateMessageGroupResponse
+ */
+ 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 = CreateMessageGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody.php
new file mode 100644
index 000000000..11a8613d5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMessageGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody/result.php
new file mode 100644
index 000000000..3c2164069
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody/result.php
@@ -0,0 +1,59 @@
+ 'Extension',
+ 'groupId' => 'GroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupShrinkRequest.php
new file mode 100644
index 000000000..d46f99482
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupShrinkRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'creatorId' => 'CreatorId',
+ 'extensionShrink' => 'Extension',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->creatorId) {
+ $res['CreatorId'] = $this->creatorId;
+ }
+ if (null !== $this->extensionShrink) {
+ $res['Extension'] = $this->extensionShrink;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMessageGroupShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['CreatorId'])) {
+ $model->creatorId = $map['CreatorId'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extensionShrink = $map['Extension'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamRequest.php
new file mode 100644
index 000000000..63191107c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamRequest.php
@@ -0,0 +1,107 @@
+ 'CallbackConfig',
+ 'domainName' => 'DomainName',
+ 'inputStreamList' => 'InputStreamList',
+ 'layoutId' => 'LayoutId',
+ 'outputConfig' => 'OutputConfig',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callbackConfig) {
+ $res['CallbackConfig'] = $this->callbackConfig;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->inputStreamList) {
+ $res['InputStreamList'] = $this->inputStreamList;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->outputConfig) {
+ $res['OutputConfig'] = $this->outputConfig;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMixStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CallbackConfig'])) {
+ $model->callbackConfig = $map['CallbackConfig'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['InputStreamList'])) {
+ $model->inputStreamList = $map['InputStreamList'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OutputConfig'])) {
+ $model->outputConfig = $map['OutputConfig'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponse.php
new file mode 100644
index 000000000..c72104133
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 CreateMixStreamResponse
+ */
+ 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 = CreateMixStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponseBody.php
new file mode 100644
index 000000000..104f3dbe2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponseBody.php
@@ -0,0 +1,59 @@
+ 'MixStreamId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->mixStreamId) {
+ $res['MixStreamId'] = $this->mixStreamId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateMixStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MixStreamId'])) {
+ $model->mixStreamId = $map['MixStreamId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateRoomRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomRequest.php
new file mode 100644
index 000000000..21444d9c2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomRequest.php
@@ -0,0 +1,107 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'roomId' => 'RoomId',
+ 'anchorId' => 'AnchorId',
+ 'templateIds' => 'TemplateIds',
+ 'useAppTranscode' => 'UseAppTranscode',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+ if (null !== $this->anchorId) {
+ $res['AnchorId'] = $this->anchorId;
+ }
+ if (null !== $this->templateIds) {
+ $res['TemplateIds'] = $this->templateIds;
+ }
+ if (null !== $this->useAppTranscode) {
+ $res['UseAppTranscode'] = $this->useAppTranscode;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateRoomRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+ if (isset($map['AnchorId'])) {
+ $model->anchorId = $map['AnchorId'];
+ }
+ if (isset($map['TemplateIds'])) {
+ $model->templateIds = $map['TemplateIds'];
+ }
+ if (isset($map['UseAppTranscode'])) {
+ $model->useAppTranscode = $map['UseAppTranscode'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponse.php
new file mode 100644
index 000000000..8606c84fa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateRoomResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = CreateRoomResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponseBody.php
new file mode 100644
index 000000000..11066ef3a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponseBody.php
@@ -0,0 +1,83 @@
+ 'RequestId',
+ 'appId' => 'AppId',
+ 'anchorId' => 'AnchorId',
+ 'roomId' => 'RoomId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->anchorId) {
+ $res['AnchorId'] = $this->anchorId;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return CreateRoomResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AnchorId'])) {
+ $model->anchorId = $map['AnchorId'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardRequest.php
new file mode 100644
index 000000000..bd5792e5e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'boardId' => 'BoardId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteBoardRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponse.php
new file mode 100644
index 000000000..a54c103a3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteBoardResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DeleteBoardResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponseBody.php
new file mode 100644
index 000000000..4274f3ba8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteBoardResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentRequest.php
new file mode 100644
index 000000000..74e4fb6fe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterComponentRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponse.php
new file mode 100644
index 000000000..3002e6336
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterComponentResponse
+ */
+ 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 = DeleteCasterComponentResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponseBody.php
new file mode 100644
index 000000000..cb15acdf1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponseBody.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterComponentResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupRequest.php
new file mode 100644
index 000000000..0a5509cd0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'programId' => 'ProgramId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterEpisodeGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponse.php
new file mode 100644
index 000000000..b20de34c4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterEpisodeGroupResponse
+ */
+ 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 = DeleteCasterEpisodeGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponseBody.php
new file mode 100644
index 000000000..937b1c067
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterEpisodeGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeRequest.php
new file mode 100644
index 000000000..a46e422c9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'episodeId' => 'EpisodeId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterEpisodeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponse.php
new file mode 100644
index 000000000..c10583e1e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterEpisodeResponse
+ */
+ 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 = DeleteCasterEpisodeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponseBody.php
new file mode 100644
index 000000000..ae783cba5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponseBody.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'episodeId' => 'EpisodeId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterEpisodeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutRequest.php
new file mode 100644
index 000000000..a7f0f51c8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'layoutId' => 'LayoutId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterLayoutRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponse.php
new file mode 100644
index 000000000..1043d5ab1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterLayoutResponse
+ */
+ 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 = DeleteCasterLayoutResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponseBody.php
new file mode 100644
index 000000000..b67120a98
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponseBody.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'layoutId' => 'LayoutId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterLayoutResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramRequest.php
new file mode 100644
index 000000000..12651ffb1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterProgramRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponse.php
new file mode 100644
index 000000000..b1ba2b884
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterProgramResponse
+ */
+ 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 = DeleteCasterProgramResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponseBody.php
new file mode 100644
index 000000000..d98da2a04
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponseBody.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterProgramResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterRequest.php
new file mode 100644
index 000000000..5e125685e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponse.php
new file mode 100644
index 000000000..7d74df75b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterResponse
+ */
+ 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 = DeleteCasterResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponseBody.php
new file mode 100644
index 000000000..7d8ee440e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponseBody.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigRequest.php
new file mode 100644
index 000000000..b6ac83ac1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigRequest.php
@@ -0,0 +1,83 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterSceneConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponse.php
new file mode 100644
index 000000000..5fcc05355
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterSceneConfigResponse
+ */
+ 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 = DeleteCasterSceneConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponseBody.php
new file mode 100644
index 000000000..3d5073641
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterSceneConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceRequest.php
new file mode 100644
index 000000000..cded3d925
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'resourceId' => 'ResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterVideoResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponse.php
new file mode 100644
index 000000000..945d1e5f6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCasterVideoResourceResponse
+ */
+ 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 = DeleteCasterVideoResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponseBody.php
new file mode 100644
index 000000000..8439a6e89
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCasterVideoResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateRequest.php
new file mode 100644
index 000000000..7f34e319c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'template' => 'Template',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCustomTemplateRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponse.php
new file mode 100644
index 000000000..0cfb1bf16
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteCustomTemplateResponse
+ */
+ 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 = DeleteCustomTemplateResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponseBody.php
new file mode 100644
index 000000000..ed4e871ea
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteCustomTemplateResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceRequest.php
new file mode 100644
index 000000000..43f325648
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'htmlResourceId' => 'HtmlResourceId',
+ 'htmlUrl' => 'htmlUrl',
+ 'casterId' => 'CasterId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->htmlResourceId) {
+ $res['HtmlResourceId'] = $this->htmlResourceId;
+ }
+ if (null !== $this->htmlUrl) {
+ $res['htmlUrl'] = $this->htmlUrl;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteHtmlResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['HtmlResourceId'])) {
+ $model->htmlResourceId = $map['HtmlResourceId'];
+ }
+ if (isset($map['htmlUrl'])) {
+ $model->htmlUrl = $map['htmlUrl'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponse.php
new file mode 100644
index 000000000..8f3f7774d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteHtmlResourceResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DeleteHtmlResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponseBody.php
new file mode 100644
index 000000000..fb0a9970a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteHtmlResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigRequest.php
new file mode 100644
index 000000000..3ec419c58
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'domainName' => 'DomainName',
+ 'appName' => 'AppName',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveASRConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponse.php
new file mode 100644
index 000000000..74f905629
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveASRConfigResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DeleteLiveASRConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponseBody.php
new file mode 100644
index 000000000..532e8d903
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveASRConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigRequest.php
new file mode 100644
index 000000000..3b39cfa8b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigRequest.php
@@ -0,0 +1,95 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAppRecordConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponse.php
new file mode 100644
index 000000000..cb1da4022
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveAppRecordConfigResponse
+ */
+ 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 = DeleteLiveAppRecordConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponseBody.php
new file mode 100644
index 000000000..b2845ccd2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAppRecordConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigRequest.php
new file mode 100644
index 000000000..6d7c4d9db
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAppSnapshotConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponse.php
new file mode 100644
index 000000000..780b84e91
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveAppSnapshotConfigResponse
+ */
+ 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 = DeleteLiveAppSnapshotConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponseBody.php
new file mode 100644
index 000000000..63c9910c5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAppSnapshotConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigRequest.php
new file mode 100644
index 000000000..ec2a50ad2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAudioAuditConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponse.php
new file mode 100644
index 000000000..156d34c2c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveAudioAuditConfigResponse
+ */
+ 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 = DeleteLiveAudioAuditConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponseBody.php
new file mode 100644
index 000000000..3dd34483f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAudioAuditConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigRequest.php
new file mode 100644
index 000000000..9b1fd9944
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAudioAuditNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponse.php
new file mode 100644
index 000000000..c51cf125a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveAudioAuditNotifyConfigResponse
+ */
+ 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 = DeleteLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponseBody.php
new file mode 100644
index 000000000..05a4afedb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveAudioAuditNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigRequest.php
new file mode 100644
index 000000000..36f80420c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDetectNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponse.php
new file mode 100644
index 000000000..0ce954d74
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveDetectNotifyConfigResponse
+ */
+ 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 = DeleteLiveDetectNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponseBody.php
new file mode 100644
index 000000000..3a715b74e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDetectNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingRequest.php
new file mode 100644
index 000000000..e2c22d4d2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'pullDomain' => 'PullDomain',
+ 'pushDomain' => 'PushDomain',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pullDomain) {
+ $res['PullDomain'] = $this->pullDomain;
+ }
+ if (null !== $this->pushDomain) {
+ $res['PushDomain'] = $this->pushDomain;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDomainMappingRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PullDomain'])) {
+ $model->pullDomain = $map['PullDomain'];
+ }
+ if (isset($map['PushDomain'])) {
+ $model->pushDomain = $map['PushDomain'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponse.php
new file mode 100644
index 000000000..bf9232b52
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveDomainMappingResponse
+ */
+ 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 = DeleteLiveDomainMappingResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponseBody.php
new file mode 100644
index 000000000..8f3f9dec7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDomainMappingResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingRequest.php
new file mode 100644
index 000000000..63a7431a5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'playDomain' => 'PlayDomain',
+ 'pullDomain' => 'PullDomain',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->playDomain) {
+ $res['PlayDomain'] = $this->playDomain;
+ }
+ if (null !== $this->pullDomain) {
+ $res['PullDomain'] = $this->pullDomain;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDomainPlayMappingRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PlayDomain'])) {
+ $model->playDomain = $map['PlayDomain'];
+ }
+ if (isset($map['PullDomain'])) {
+ $model->pullDomain = $map['PullDomain'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponse.php
new file mode 100644
index 000000000..82e7e7a59
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveDomainPlayMappingResponse
+ */
+ 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 = DeleteLiveDomainPlayMappingResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponseBody.php
new file mode 100644
index 000000000..462272000
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDomainPlayMappingResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainRequest.php
new file mode 100644
index 000000000..7dd95c643
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainRequest.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'ownerAccount' => 'OwnerAccount',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerAccount) {
+ $res['OwnerAccount'] = $this->ownerAccount;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDomainRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerAccount'])) {
+ $model->ownerAccount = $map['OwnerAccount'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponse.php
new file mode 100644
index 000000000..8b4010b45
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveDomainResponse
+ */
+ 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 = DeleteLiveDomainResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponseBody.php
new file mode 100644
index 000000000..23b74823b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveDomainResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferRequest.php
new file mode 100644
index 000000000..c636a1e30
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveEdgeTransferRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponse.php
new file mode 100644
index 000000000..4f7fb32da
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveEdgeTransferResponse
+ */
+ 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 = DeleteLiveEdgeTransferResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponseBody.php
new file mode 100644
index 000000000..ee2a1a064
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveEdgeTransferResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigRequest.php
new file mode 100644
index 000000000..c98d95134
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigRequest.php
@@ -0,0 +1,71 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveLazyPullStreamInfoConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponse.php
new file mode 100644
index 000000000..3693730d1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveLazyPullStreamInfoConfigResponse
+ */
+ 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 = DeleteLiveLazyPullStreamInfoConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponseBody.php
new file mode 100644
index 000000000..d1cb17d9e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveLazyPullStreamInfoConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigRequest.php
new file mode 100644
index 000000000..00e237f41
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLivePullStreamInfoConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponse.php
new file mode 100644
index 000000000..a771e4afb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLivePullStreamInfoConfigResponse
+ */
+ 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 = DeleteLivePullStreamInfoConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponseBody.php
new file mode 100644
index 000000000..3863d9c81
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLivePullStreamInfoConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreRequest.php
new file mode 100644
index 000000000..2a7a62ca4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreRequest.php
@@ -0,0 +1,83 @@
+ 'Logstore',
+ 'ownerId' => 'OwnerId',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRealTimeLogLogstoreRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponse.php
new file mode 100644
index 000000000..a81c0ea3c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveRealTimeLogLogstoreResponse
+ */
+ 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 = DeleteLiveRealTimeLogLogstoreResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponseBody.php
new file mode 100644
index 000000000..d76bfffa3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRealTimeLogLogstoreResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryRequest.php
new file mode 100644
index 000000000..91dbb6e5c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'logstore' => 'Logstore',
+ 'ownerId' => 'OwnerId',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRealtimeLogDeliveryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponse.php
new file mode 100644
index 000000000..b797a376c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveRealtimeLogDeliveryResponse
+ */
+ 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 = DeleteLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponseBody.php
new file mode 100644
index 000000000..b2d02e328
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRealtimeLogDeliveryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigRequest.php
new file mode 100644
index 000000000..a681863c7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRecordNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponse.php
new file mode 100644
index 000000000..2cedd9b6a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveRecordNotifyConfigResponse
+ */
+ 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 = DeleteLiveRecordNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponseBody.php
new file mode 100644
index 000000000..30d5fe28f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRecordNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigRequest.php
new file mode 100644
index 000000000..a3ec53c6b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRecordVodConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponse.php
new file mode 100644
index 000000000..dd51bfcc4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveRecordVodConfigResponse
+ */
+ 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 = DeleteLiveRecordVodConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponseBody.php
new file mode 100644
index 000000000..643bf8020
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveRecordVodConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigRequest.php
new file mode 100644
index 000000000..7b88af329
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveSnapshotDetectPornConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponse.php
new file mode 100644
index 000000000..7b8808d43
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveSnapshotDetectPornConfigResponse
+ */
+ 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 = DeleteLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponseBody.php
new file mode 100644
index 000000000..77f155e00
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveSnapshotDetectPornConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigRequest.php
new file mode 100644
index 000000000..8481006dd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveSnapshotNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponse.php
new file mode 100644
index 000000000..afd84d796
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveSnapshotNotifyConfigResponse
+ */
+ 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 = DeleteLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponseBody.php
new file mode 100644
index 000000000..96ee78cd4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveSnapshotNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigRequest.php
new file mode 100644
index 000000000..09b83980e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigRequest.php
@@ -0,0 +1,83 @@
+ 'ConfigId',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->configId) {
+ $res['ConfigId'] = $this->configId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveSpecificStagingConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ConfigId'])) {
+ $model->configId = $map['ConfigId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponse.php
new file mode 100644
index 000000000..abc6545b6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveSpecificStagingConfigResponse
+ */
+ 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 = DeleteLiveSpecificStagingConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponseBody.php
new file mode 100644
index 000000000..2bbcf3e5b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveSpecificStagingConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorRequest.php
new file mode 100644
index 000000000..4c600e6de
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorRequest.php
@@ -0,0 +1,59 @@
+ 'MonitorId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->monitorId) {
+ $res['MonitorId'] = $this->monitorId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamMonitorRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MonitorId'])) {
+ $model->monitorId = $map['MonitorId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponse.php
new file mode 100644
index 000000000..f056c9b7e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveStreamMonitorResponse
+ */
+ 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 = DeleteLiveStreamMonitorResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponseBody.php
new file mode 100644
index 000000000..9916ef1c9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamMonitorResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesRequest.php
new file mode 100644
index 000000000..7dcc9c0a1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesRequest.php
@@ -0,0 +1,109 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'recordId' => 'RecordId',
+ 'removeFile' => 'RemoveFile',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+ if (null !== $this->removeFile) {
+ $res['RemoveFile'] = $this->removeFile;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamRecordIndexFilesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RecordId'])) {
+ if (!empty($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+ }
+ if (isset($map['RemoveFile'])) {
+ $model->removeFile = $map['RemoveFile'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponse.php
new file mode 100644
index 000000000..f560f4928
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveStreamRecordIndexFilesResponse
+ */
+ 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 = DeleteLiveStreamRecordIndexFilesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody.php
new file mode 100644
index 000000000..0f44b1e37
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody.php
@@ -0,0 +1,84 @@
+ 'Code',
+ 'message' => 'Message',
+ 'recordDeleteInfoList' => 'RecordDeleteInfoList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->code) {
+ $res['Code'] = $this->code;
+ }
+ if (null !== $this->message) {
+ $res['Message'] = $this->message;
+ }
+ if (null !== $this->recordDeleteInfoList) {
+ $res['RecordDeleteInfoList'] = null !== $this->recordDeleteInfoList ? $this->recordDeleteInfoList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamRecordIndexFilesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Code'])) {
+ $model->code = $map['Code'];
+ }
+ if (isset($map['Message'])) {
+ $model->message = $map['Message'];
+ }
+ if (isset($map['RecordDeleteInfoList'])) {
+ $model->recordDeleteInfoList = recordDeleteInfoList::fromMap($map['RecordDeleteInfoList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList.php
new file mode 100644
index 000000000..d8f2480da
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList.php
@@ -0,0 +1,60 @@
+ 'RecordDeleteInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordDeleteInfo) {
+ $res['RecordDeleteInfo'] = [];
+ if (null !== $this->recordDeleteInfo && \is_array($this->recordDeleteInfo)) {
+ $n = 0;
+ foreach ($this->recordDeleteInfo as $item) {
+ $res['RecordDeleteInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordDeleteInfoList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordDeleteInfo'])) {
+ if (!empty($map['RecordDeleteInfo'])) {
+ $model->recordDeleteInfo = [];
+ $n = 0;
+ foreach ($map['RecordDeleteInfo'] as $item) {
+ $model->recordDeleteInfo[$n++] = null !== $item ? recordDeleteInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList/recordDeleteInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList/recordDeleteInfo.php
new file mode 100644
index 000000000..9dbb98ebe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList/recordDeleteInfo.php
@@ -0,0 +1,59 @@
+ 'Message',
+ 'recordId' => 'RecordId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->message) {
+ $res['Message'] = $this->message;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordDeleteInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Message'])) {
+ $model->message = $map['Message'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeRequest.php
new file mode 100644
index 000000000..95a5dfc85
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeRequest.php
@@ -0,0 +1,95 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'template' => 'Template',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamTranscodeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponse.php
new file mode 100644
index 000000000..40235070d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveStreamTranscodeResponse
+ */
+ 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 = DeleteLiveStreamTranscodeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponseBody.php
new file mode 100644
index 000000000..5e799e5ee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamTranscodeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRequest.php
new file mode 100644
index 000000000..7df6557ee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'templateId' => 'TemplateId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamWatermarkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponse.php
new file mode 100644
index 000000000..17af27c82
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveStreamWatermarkResponse
+ */
+ 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 = DeleteLiveStreamWatermarkResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponseBody.php
new file mode 100644
index 000000000..51034aaaa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamWatermarkResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleRequest.php
new file mode 100644
index 000000000..e76eb5aa1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleRequest.php
@@ -0,0 +1,95 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'ownerId' => 'OwnerId',
+ 'ruleId' => 'RuleId',
+ 'stream' => 'Stream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->ruleId) {
+ $res['RuleId'] = $this->ruleId;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamWatermarkRuleRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RuleId'])) {
+ $model->ruleId = $map['RuleId'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponse.php
new file mode 100644
index 000000000..d7953fd6a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveStreamWatermarkRuleResponse
+ */
+ 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 = DeleteLiveStreamWatermarkRuleResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponseBody.php
new file mode 100644
index 000000000..afed908e1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamWatermarkRuleResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigRequest.php
new file mode 100644
index 000000000..0482c10fb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamsNotifyUrlConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponse.php
new file mode 100644
index 000000000..37b3a45be
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteLiveStreamsNotifyUrlConfigResponse
+ */
+ 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 = DeleteLiveStreamsNotifyUrlConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponseBody.php
new file mode 100644
index 000000000..8ae037b5d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteLiveStreamsNotifyUrlConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppRequest.php
new file mode 100644
index 000000000..627f9582a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppRequest.php
@@ -0,0 +1,47 @@
+ 'AppId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteMessageAppRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponse.php
new file mode 100644
index 000000000..fa49c3331
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteMessageAppResponse
+ */
+ 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 = DeleteMessageAppResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody.php
new file mode 100644
index 000000000..ba9144205
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteMessageAppResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody/result.php
new file mode 100644
index 000000000..f2efcae24
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'Success',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->success) {
+ $res['Success'] = $this->success;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Success'])) {
+ $model->success = $map['Success'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamRequest.php
new file mode 100644
index 000000000..35f65b78a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamRequest.php
@@ -0,0 +1,95 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'mixStreamId' => 'MixStreamId',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->mixStreamId) {
+ $res['MixStreamId'] = $this->mixStreamId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteMixStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['MixStreamId'])) {
+ $model->mixStreamId = $map['MixStreamId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponse.php
new file mode 100644
index 000000000..7705f4fab
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteMixStreamResponse
+ */
+ 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 = DeleteMixStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponseBody.php
new file mode 100644
index 000000000..1d9fd0ccb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponseBody.php
@@ -0,0 +1,59 @@
+ 'MixStreamId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->mixStreamId) {
+ $res['MixStreamId'] = $this->mixStreamId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteMixStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MixStreamId'])) {
+ $model->mixStreamId = $map['MixStreamId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigRequest.php
new file mode 100644
index 000000000..f179c0d9c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigRequest.php
@@ -0,0 +1,107 @@
+ 'App',
+ 'deleteAll' => 'DeleteAll',
+ 'domainName' => 'DomainName',
+ 'groupId' => 'GroupId',
+ 'ownerId' => 'OwnerId',
+ 'templates' => 'Templates',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->deleteAll) {
+ $res['DeleteAll'] = $this->deleteAll;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->templates) {
+ $res['Templates'] = $this->templates;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteMultiRateConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['DeleteAll'])) {
+ $model->deleteAll = $map['DeleteAll'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Templates'])) {
+ $model->templates = $map['Templates'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponse.php
new file mode 100644
index 000000000..33d16e28a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteMultiRateConfigResponse
+ */
+ 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 = DeleteMultiRateConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponseBody.php
new file mode 100644
index 000000000..3c996bc12
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponseBody.php
@@ -0,0 +1,71 @@
+ 'Code',
+ 'message' => 'Message',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->code) {
+ $res['Code'] = $this->code;
+ }
+ if (null !== $this->message) {
+ $res['Message'] = $this->message;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteMultiRateConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Code'])) {
+ $model->code = $map['Code'];
+ }
+ if (isset($map['Message'])) {
+ $model->message = $map['Message'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsRequest.php
new file mode 100644
index 000000000..8bb79d8ff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'programId' => 'ProgramId',
+ 'programItemIds' => 'ProgramItemIds',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->programItemIds) {
+ $res['ProgramItemIds'] = $this->programItemIds;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeletePlaylistItemsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['ProgramItemIds'])) {
+ $model->programItemIds = $map['ProgramItemIds'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponse.php
new file mode 100644
index 000000000..2d876a492
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponse.php
@@ -0,0 +1,74 @@
+ '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 DeletePlaylistItemsResponse
+ */
+ 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 = DeletePlaylistItemsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponseBody.php
new file mode 100644
index 000000000..266ed4633
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponseBody.php
@@ -0,0 +1,59 @@
+ 'ProgramId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeletePlaylistItemsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistRequest.php
new file mode 100644
index 000000000..51c84c2ae
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'programId' => 'ProgramId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeletePlaylistRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponse.php
new file mode 100644
index 000000000..b3187b362
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponse.php
@@ -0,0 +1,74 @@
+ '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 DeletePlaylistResponse
+ */
+ 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 = DeletePlaylistResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponseBody.php
new file mode 100644
index 000000000..4d06b4d71
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponseBody.php
@@ -0,0 +1,59 @@
+ 'ProgramId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeletePlaylistResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomRequest.php
new file mode 100644
index 000000000..be91aefdb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'ownerId' => 'OwnerId',
+ 'roomId' => 'RoomId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteRoomRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponse.php
new file mode 100644
index 000000000..18cf7c5cf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteRoomResponse
+ */
+ 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 = DeleteRoomResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponseBody.php
new file mode 100644
index 000000000..be18fe1a6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteRoomResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthRequest.php
new file mode 100644
index 000000000..2acc757ff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteSnapshotCallbackAuthRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponse.php
new file mode 100644
index 000000000..1e614e380
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteSnapshotCallbackAuthResponse
+ */
+ 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 = DeleteSnapshotCallbackAuthResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponseBody.php
new file mode 100644
index 000000000..7ea9c30eb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteSnapshotCallbackAuthResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesRequest.php
new file mode 100644
index 000000000..a58a2538f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesRequest.php
@@ -0,0 +1,109 @@
+ 'AppName',
+ 'createTimestampList' => 'CreateTimestampList',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'removeFile' => 'RemoveFile',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTimestampList) {
+ $res['CreateTimestampList'] = $this->createTimestampList;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->removeFile) {
+ $res['RemoveFile'] = $this->removeFile;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteSnapshotFilesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTimestampList'])) {
+ if (!empty($map['CreateTimestampList'])) {
+ $model->createTimestampList = $map['CreateTimestampList'];
+ }
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RemoveFile'])) {
+ $model->removeFile = $map['RemoveFile'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponse.php
new file mode 100644
index 000000000..4f4ca3672
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteSnapshotFilesResponse
+ */
+ 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 = DeleteSnapshotFilesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody.php
new file mode 100644
index 000000000..9562c1a7d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody.php
@@ -0,0 +1,84 @@
+ 'FailureCount',
+ 'requestId' => 'RequestId',
+ 'snapshotDeleteInfoList' => 'SnapshotDeleteInfoList',
+ 'successCount' => 'SuccessCount',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->failureCount) {
+ $res['FailureCount'] = $this->failureCount;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->snapshotDeleteInfoList) {
+ $res['SnapshotDeleteInfoList'] = null !== $this->snapshotDeleteInfoList ? $this->snapshotDeleteInfoList->toMap() : null;
+ }
+ if (null !== $this->successCount) {
+ $res['SuccessCount'] = $this->successCount;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteSnapshotFilesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FailureCount'])) {
+ $model->failureCount = $map['FailureCount'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['SnapshotDeleteInfoList'])) {
+ $model->snapshotDeleteInfoList = snapshotDeleteInfoList::fromMap($map['SnapshotDeleteInfoList']);
+ }
+ if (isset($map['SuccessCount'])) {
+ $model->successCount = $map['SuccessCount'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList.php
new file mode 100644
index 000000000..bd692dec2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList.php
@@ -0,0 +1,60 @@
+ 'SnapshotDeleteInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->snapshotDeleteInfo) {
+ $res['SnapshotDeleteInfo'] = [];
+ if (null !== $this->snapshotDeleteInfo && \is_array($this->snapshotDeleteInfo)) {
+ $n = 0;
+ foreach ($this->snapshotDeleteInfo as $item) {
+ $res['SnapshotDeleteInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return snapshotDeleteInfoList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SnapshotDeleteInfo'])) {
+ if (!empty($map['SnapshotDeleteInfo'])) {
+ $model->snapshotDeleteInfo = [];
+ $n = 0;
+ foreach ($map['SnapshotDeleteInfo'] as $item) {
+ $model->snapshotDeleteInfo[$n++] = null !== $item ? snapshotDeleteInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList/snapshotDeleteInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList/snapshotDeleteInfo.php
new file mode 100644
index 000000000..7669fce26
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList/snapshotDeleteInfo.php
@@ -0,0 +1,59 @@
+ 'CreateTimestamp',
+ 'message' => 'Message',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->createTimestamp) {
+ $res['CreateTimestamp'] = $this->createTimestamp;
+ }
+ if (null !== $this->message) {
+ $res['Message'] = $this->message;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return snapshotDeleteInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CreateTimestamp'])) {
+ $model->createTimestamp = $map['CreateTimestamp'];
+ }
+ if (isset($map['Message'])) {
+ $model->message = $map['Message'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutRequest.php
new file mode 100644
index 000000000..bd52ed211
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'layoutId' => 'LayoutId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteStudioLayoutRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponse.php
new file mode 100644
index 000000000..4d7851c6b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponse.php
@@ -0,0 +1,74 @@
+ '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 DeleteStudioLayoutResponse
+ */
+ 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 = DeleteStudioLayoutResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponseBody.php
new file mode 100644
index 000000000..1382af00c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DeleteStudioLayoutResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksRequest.php
new file mode 100644
index 000000000..e0cd1f08e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeAutoShowListTasksRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponse.php
new file mode 100644
index 000000000..1505d5d4d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeAutoShowListTasksResponse
+ */
+ 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 = DescribeAutoShowListTasksResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponseBody.php
new file mode 100644
index 000000000..2aba6534c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponseBody.php
@@ -0,0 +1,59 @@
+ 'AutoShowListTasks',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->autoShowListTasks) {
+ $res['AutoShowListTasks'] = $this->autoShowListTasks;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeAutoShowListTasksResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AutoShowListTasks'])) {
+ $model->autoShowListTasks = $map['AutoShowListTasks'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsRequest.php
new file mode 100644
index 000000000..61e1b1466
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsRequest.php
@@ -0,0 +1,95 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'startTime' => 'StartTime',
+ 'endTime' => 'EndTime',
+ 'boardId' => 'BoardId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardEventsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponse.php
new file mode 100644
index 000000000..90b342770
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardEventsResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeBoardEventsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody.php
new file mode 100644
index 000000000..53c14c30c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'events' => 'Events',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->events) {
+ $res['Events'] = [];
+ if (null !== $this->events && \is_array($this->events)) {
+ $n = 0;
+ foreach ($this->events as $item) {
+ $res['Events'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardEventsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Events'])) {
+ if (!empty($map['Events'])) {
+ $model->events = [];
+ $n = 0;
+ foreach ($map['Events'] as $item) {
+ $model->events[$n++] = null !== $item ? events::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody/events.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody/events.php
new file mode 100644
index 000000000..376e9bf6b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody/events.php
@@ -0,0 +1,95 @@
+ 'EventId',
+ 'data' => 'Data',
+ 'eventType' => 'EventType',
+ 'userId' => 'UserId',
+ 'timestamp' => 'Timestamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->eventId) {
+ $res['EventId'] = $this->eventId;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->eventType) {
+ $res['EventType'] = $this->eventType;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+ if (null !== $this->timestamp) {
+ $res['Timestamp'] = $this->timestamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return events
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EventId'])) {
+ $model->eventId = $map['EventId'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['EventType'])) {
+ $model->eventType = $map['EventType'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+ if (isset($map['Timestamp'])) {
+ $model->timestamp = $map['Timestamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotRequest.php
new file mode 100644
index 000000000..97f95f133
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'boardId' => 'BoardId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardSnapshotRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponse.php
new file mode 100644
index 000000000..ec34a1c68
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardSnapshotResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeBoardSnapshotResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody.php
new file mode 100644
index 000000000..28851cf84
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody.php
@@ -0,0 +1,60 @@
+ 'Snapshot',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->snapshot) {
+ $res['Snapshot'] = null !== $this->snapshot ? $this->snapshot->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardSnapshotResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Snapshot'])) {
+ $model->snapshot = snapshot::fromMap($map['Snapshot']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot.php
new file mode 100644
index 000000000..1550ba607
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot.php
@@ -0,0 +1,48 @@
+ 'Board',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->board) {
+ $res['Board'] = null !== $this->board ? $this->board->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return snapshot
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Board'])) {
+ $model->board = board::fromMap($map['Board']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board.php
new file mode 100644
index 000000000..ea1b48246
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board.php
@@ -0,0 +1,145 @@
+ 'UpdateTimestamp',
+ 'appUid' => 'AppUid',
+ 'boardId' => 'BoardId',
+ 'configs' => 'Configs',
+ 'pages' => 'Pages',
+ 'eventTimestamp' => 'EventTimestamp',
+ 'createTimestamp' => 'CreateTimestamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->updateTimestamp) {
+ $res['UpdateTimestamp'] = $this->updateTimestamp;
+ }
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+ if (null !== $this->configs) {
+ $res['Configs'] = [];
+ if (null !== $this->configs && \is_array($this->configs)) {
+ $n = 0;
+ foreach ($this->configs as $item) {
+ $res['Configs'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->pages) {
+ $res['Pages'] = [];
+ if (null !== $this->pages && \is_array($this->pages)) {
+ $n = 0;
+ foreach ($this->pages as $item) {
+ $res['Pages'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->eventTimestamp) {
+ $res['EventTimestamp'] = $this->eventTimestamp;
+ }
+ if (null !== $this->createTimestamp) {
+ $res['CreateTimestamp'] = $this->createTimestamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return board
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['UpdateTimestamp'])) {
+ $model->updateTimestamp = $map['UpdateTimestamp'];
+ }
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+ if (isset($map['Configs'])) {
+ if (!empty($map['Configs'])) {
+ $model->configs = [];
+ $n = 0;
+ foreach ($map['Configs'] as $item) {
+ $model->configs[$n++] = null !== $item ? configs::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['Pages'])) {
+ if (!empty($map['Pages'])) {
+ $model->pages = [];
+ $n = 0;
+ foreach ($map['Pages'] as $item) {
+ $model->pages[$n++] = null !== $item ? pages::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['EventTimestamp'])) {
+ $model->eventTimestamp = $map['EventTimestamp'];
+ }
+ if (isset($map['CreateTimestamp'])) {
+ $model->createTimestamp = $map['CreateTimestamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/configs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/configs.php
new file mode 100644
index 000000000..b4ddd5805
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/configs.php
@@ -0,0 +1,59 @@
+ 'AppUid',
+ 'data' => 'Data',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return configs
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages.php
new file mode 100644
index 000000000..e4a5e12c3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages.php
@@ -0,0 +1,72 @@
+ 'PageIndex',
+ 'elements' => 'Elements',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pageIndex) {
+ $res['PageIndex'] = $this->pageIndex;
+ }
+ 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 pages
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PageIndex'])) {
+ $model->pageIndex = $map['PageIndex'];
+ }
+ 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;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages/elements.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages/elements.php
new file mode 100644
index 000000000..6faba605c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages/elements.php
@@ -0,0 +1,95 @@
+ 'UpdateTimestamp',
+ 'data' => 'Data',
+ 'elementIndex' => 'ElementIndex',
+ 'elementType' => 'ElementType',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->updateTimestamp) {
+ $res['UpdateTimestamp'] = $this->updateTimestamp;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->elementIndex) {
+ $res['ElementIndex'] = $this->elementIndex;
+ }
+ if (null !== $this->elementType) {
+ $res['ElementType'] = $this->elementType;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return elements
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['UpdateTimestamp'])) {
+ $model->updateTimestamp = $map['UpdateTimestamp'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['ElementIndex'])) {
+ $model->elementIndex = $map['ElementIndex'];
+ }
+ if (isset($map['ElementType'])) {
+ $model->elementType = $map['ElementType'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsRequest.php
new file mode 100644
index 000000000..261e7ad35
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponse.php
new file mode 100644
index 000000000..b4eaf2433
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardsResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeBoardsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody.php
new file mode 100644
index 000000000..1d7684012
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'boards' => 'Boards',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->boards) {
+ $res['Boards'] = [];
+ if (null !== $this->boards && \is_array($this->boards)) {
+ $n = 0;
+ foreach ($this->boards as $item) {
+ $res['Boards'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeBoardsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Boards'])) {
+ if (!empty($map['Boards'])) {
+ $model->boards = [];
+ $n = 0;
+ foreach ($map['Boards'] as $item) {
+ $model->boards[$n++] = null !== $item ? boards::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody/boards.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody/boards.php
new file mode 100644
index 000000000..4c42e8ffe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody/boards.php
@@ -0,0 +1,83 @@
+ 'BoardId',
+ 'state' => 'State',
+ 'userId' => 'UserId',
+ 'topic' => 'Topic',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+ if (null !== $this->state) {
+ $res['State'] = $this->state;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+ if (null !== $this->topic) {
+ $res['Topic'] = $this->topic;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return boards
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+ if (isset($map['State'])) {
+ $model->state = $map['State'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+ if (isset($map['Topic'])) {
+ $model->topic = $map['Topic'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsRequest.php
new file mode 100644
index 000000000..7add5e457
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterChannelsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponse.php
new file mode 100644
index 000000000..b3ae08222
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterChannelsResponse
+ */
+ 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 = DescribeCasterChannelsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody.php
new file mode 100644
index 000000000..fe3124612
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody.php
@@ -0,0 +1,72 @@
+ 'Channels',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->channels) {
+ $res['Channels'] = null !== $this->channels ? $this->channels->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterChannelsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Channels'])) {
+ $model->channels = channels::fromMap($map['Channels']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels.php
new file mode 100644
index 000000000..6a58569d8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels.php
@@ -0,0 +1,60 @@
+ 'Channel',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->channel) {
+ $res['Channel'] = [];
+ if (null !== $this->channel && \is_array($this->channel)) {
+ $n = 0;
+ foreach ($this->channel as $item) {
+ $res['Channel'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return channels
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Channel'])) {
+ if (!empty($map['Channel'])) {
+ $model->channel = [];
+ $n = 0;
+ foreach ($map['Channel'] as $item) {
+ $model->channel[$n++] = null !== $item ? channel::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels/channel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels/channel.php
new file mode 100644
index 000000000..9b93c9f47
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels/channel.php
@@ -0,0 +1,95 @@
+ 'ChannelId',
+ 'faceBeauty' => 'FaceBeauty',
+ 'resourceId' => 'ResourceId',
+ 'rtmpUrl' => 'RtmpUrl',
+ 'streamUrl' => 'StreamUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->channelId) {
+ $res['ChannelId'] = $this->channelId;
+ }
+ if (null !== $this->faceBeauty) {
+ $res['FaceBeauty'] = $this->faceBeauty;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->rtmpUrl) {
+ $res['RtmpUrl'] = $this->rtmpUrl;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return channel
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ChannelId'])) {
+ $model->channelId = $map['ChannelId'];
+ }
+ if (isset($map['FaceBeauty'])) {
+ $model->faceBeauty = $map['FaceBeauty'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['RtmpUrl'])) {
+ $model->rtmpUrl = $map['RtmpUrl'];
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsRequest.php
new file mode 100644
index 000000000..35513c77b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterComponentsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponse.php
new file mode 100644
index 000000000..7d1f9d32f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterComponentsResponse
+ */
+ 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 = DescribeCasterComponentsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody.php
new file mode 100644
index 000000000..fd53dd27f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody.php
@@ -0,0 +1,72 @@
+ 'Components',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->components) {
+ $res['Components'] = null !== $this->components ? $this->components->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterComponentsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Components'])) {
+ $model->components = components::fromMap($map['Components']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components.php
new file mode 100644
index 000000000..4a3865284
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components.php
@@ -0,0 +1,60 @@
+ 'Component',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->component) {
+ $res['Component'] = [];
+ if (null !== $this->component && \is_array($this->component)) {
+ $n = 0;
+ foreach ($this->component as $item) {
+ $res['Component'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return components
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Component'])) {
+ if (!empty($map['Component'])) {
+ $model->component = [];
+ $n = 0;
+ foreach ($map['Component'] as $item) {
+ $model->component[$n++] = null !== $item ? component::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component.php
new file mode 100644
index 000000000..622708712
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component.php
@@ -0,0 +1,147 @@
+ 'CaptionLayerContent',
+ 'componentId' => 'ComponentId',
+ 'componentLayer' => 'ComponentLayer',
+ 'componentName' => 'ComponentName',
+ 'componentType' => 'ComponentType',
+ 'effect' => 'Effect',
+ 'imageLayerContent' => 'ImageLayerContent',
+ 'locationId' => 'LocationId',
+ 'textLayerContent' => 'TextLayerContent',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->captionLayerContent) {
+ $res['CaptionLayerContent'] = null !== $this->captionLayerContent ? $this->captionLayerContent->toMap() : null;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->componentLayer) {
+ $res['ComponentLayer'] = null !== $this->componentLayer ? $this->componentLayer->toMap() : null;
+ }
+ if (null !== $this->componentName) {
+ $res['ComponentName'] = $this->componentName;
+ }
+ if (null !== $this->componentType) {
+ $res['ComponentType'] = $this->componentType;
+ }
+ if (null !== $this->effect) {
+ $res['Effect'] = $this->effect;
+ }
+ if (null !== $this->imageLayerContent) {
+ $res['ImageLayerContent'] = null !== $this->imageLayerContent ? $this->imageLayerContent->toMap() : null;
+ }
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+ if (null !== $this->textLayerContent) {
+ $res['TextLayerContent'] = null !== $this->textLayerContent ? $this->textLayerContent->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return component
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CaptionLayerContent'])) {
+ $model->captionLayerContent = captionLayerContent::fromMap($map['CaptionLayerContent']);
+ }
+ if (isset($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ if (isset($map['ComponentLayer'])) {
+ $model->componentLayer = componentLayer::fromMap($map['ComponentLayer']);
+ }
+ if (isset($map['ComponentName'])) {
+ $model->componentName = $map['ComponentName'];
+ }
+ if (isset($map['ComponentType'])) {
+ $model->componentType = $map['ComponentType'];
+ }
+ if (isset($map['Effect'])) {
+ $model->effect = $map['Effect'];
+ }
+ if (isset($map['ImageLayerContent'])) {
+ $model->imageLayerContent = imageLayerContent::fromMap($map['ImageLayerContent']);
+ }
+ if (isset($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ if (isset($map['TextLayerContent'])) {
+ $model->textLayerContent = textLayerContent::fromMap($map['TextLayerContent']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/captionLayerContent.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/captionLayerContent.php
new file mode 100644
index 000000000..111f43bff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/captionLayerContent.php
@@ -0,0 +1,203 @@
+ 'BorderColor',
+ 'borderWidthNormalized' => 'BorderWidthNormalized',
+ 'color' => 'Color',
+ 'fontName' => 'FontName',
+ 'lineSpaceNormalized' => 'LineSpaceNormalized',
+ 'locationId' => 'LocationId',
+ 'ptsOffset' => 'PtsOffset',
+ 'showSourceLan' => 'ShowSourceLan',
+ 'sizeNormalized' => 'SizeNormalized',
+ 'sourceLan' => 'SourceLan',
+ 'targetLan' => 'TargetLan',
+ 'wordCountPerLine' => 'WordCountPerLine',
+ 'wordSpaceNormalized' => 'WordSpaceNormalized',
+ 'wordsCount' => 'WordsCount',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->borderColor) {
+ $res['BorderColor'] = $this->borderColor;
+ }
+ if (null !== $this->borderWidthNormalized) {
+ $res['BorderWidthNormalized'] = $this->borderWidthNormalized;
+ }
+ if (null !== $this->color) {
+ $res['Color'] = $this->color;
+ }
+ if (null !== $this->fontName) {
+ $res['FontName'] = $this->fontName;
+ }
+ if (null !== $this->lineSpaceNormalized) {
+ $res['LineSpaceNormalized'] = $this->lineSpaceNormalized;
+ }
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+ if (null !== $this->ptsOffset) {
+ $res['PtsOffset'] = $this->ptsOffset;
+ }
+ if (null !== $this->showSourceLan) {
+ $res['ShowSourceLan'] = $this->showSourceLan;
+ }
+ if (null !== $this->sizeNormalized) {
+ $res['SizeNormalized'] = $this->sizeNormalized;
+ }
+ if (null !== $this->sourceLan) {
+ $res['SourceLan'] = $this->sourceLan;
+ }
+ if (null !== $this->targetLan) {
+ $res['TargetLan'] = $this->targetLan;
+ }
+ if (null !== $this->wordCountPerLine) {
+ $res['WordCountPerLine'] = $this->wordCountPerLine;
+ }
+ if (null !== $this->wordSpaceNormalized) {
+ $res['WordSpaceNormalized'] = $this->wordSpaceNormalized;
+ }
+ if (null !== $this->wordsCount) {
+ $res['WordsCount'] = $this->wordsCount;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return captionLayerContent
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BorderColor'])) {
+ $model->borderColor = $map['BorderColor'];
+ }
+ if (isset($map['BorderWidthNormalized'])) {
+ $model->borderWidthNormalized = $map['BorderWidthNormalized'];
+ }
+ if (isset($map['Color'])) {
+ $model->color = $map['Color'];
+ }
+ if (isset($map['FontName'])) {
+ $model->fontName = $map['FontName'];
+ }
+ if (isset($map['LineSpaceNormalized'])) {
+ $model->lineSpaceNormalized = $map['LineSpaceNormalized'];
+ }
+ if (isset($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ if (isset($map['PtsOffset'])) {
+ $model->ptsOffset = $map['PtsOffset'];
+ }
+ if (isset($map['ShowSourceLan'])) {
+ $model->showSourceLan = $map['ShowSourceLan'];
+ }
+ if (isset($map['SizeNormalized'])) {
+ $model->sizeNormalized = $map['SizeNormalized'];
+ }
+ if (isset($map['SourceLan'])) {
+ $model->sourceLan = $map['SourceLan'];
+ }
+ if (isset($map['TargetLan'])) {
+ $model->targetLan = $map['TargetLan'];
+ }
+ if (isset($map['WordCountPerLine'])) {
+ $model->wordCountPerLine = $map['WordCountPerLine'];
+ }
+ if (isset($map['WordSpaceNormalized'])) {
+ $model->wordSpaceNormalized = $map['WordSpaceNormalized'];
+ }
+ if (isset($map['WordsCount'])) {
+ $model->wordsCount = $map['WordsCount'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer.php
new file mode 100644
index 000000000..ed4d3cc7a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer.php
@@ -0,0 +1,96 @@
+ 'HeightNormalized',
+ 'positionNormalizeds' => 'PositionNormalizeds',
+ 'positionRefer' => 'PositionRefer',
+ 'transparency' => 'Transparency',
+ 'widthNormalized' => 'WidthNormalized',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->heightNormalized) {
+ $res['HeightNormalized'] = $this->heightNormalized;
+ }
+ if (null !== $this->positionNormalizeds) {
+ $res['PositionNormalizeds'] = null !== $this->positionNormalizeds ? $this->positionNormalizeds->toMap() : null;
+ }
+ if (null !== $this->positionRefer) {
+ $res['PositionRefer'] = $this->positionRefer;
+ }
+ if (null !== $this->transparency) {
+ $res['Transparency'] = $this->transparency;
+ }
+ if (null !== $this->widthNormalized) {
+ $res['WidthNormalized'] = $this->widthNormalized;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return componentLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HeightNormalized'])) {
+ $model->heightNormalized = $map['HeightNormalized'];
+ }
+ if (isset($map['PositionNormalizeds'])) {
+ $model->positionNormalizeds = positionNormalizeds::fromMap($map['PositionNormalizeds']);
+ }
+ if (isset($map['PositionRefer'])) {
+ $model->positionRefer = $map['PositionRefer'];
+ }
+ if (isset($map['Transparency'])) {
+ $model->transparency = $map['Transparency'];
+ }
+ if (isset($map['WidthNormalized'])) {
+ $model->widthNormalized = $map['WidthNormalized'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer/positionNormalizeds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer/positionNormalizeds.php
new file mode 100644
index 000000000..c51e179a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer/positionNormalizeds.php
@@ -0,0 +1,49 @@
+ 'Position',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->position) {
+ $res['Position'] = $this->position;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return positionNormalizeds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Position'])) {
+ if (!empty($map['Position'])) {
+ $model->position = $map['Position'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/imageLayerContent.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/imageLayerContent.php
new file mode 100644
index 000000000..624bd618c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/imageLayerContent.php
@@ -0,0 +1,47 @@
+ 'MaterialId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->materialId) {
+ $res['MaterialId'] = $this->materialId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return imageLayerContent
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MaterialId'])) {
+ $model->materialId = $map['MaterialId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/textLayerContent.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/textLayerContent.php
new file mode 100644
index 000000000..5228adaff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/textLayerContent.php
@@ -0,0 +1,107 @@
+ 'BorderColor',
+ 'borderWidthNormalized' => 'BorderWidthNormalized',
+ 'color' => 'Color',
+ 'fontName' => 'FontName',
+ 'sizeNormalized' => 'SizeNormalized',
+ 'text' => 'Text',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->borderColor) {
+ $res['BorderColor'] = $this->borderColor;
+ }
+ if (null !== $this->borderWidthNormalized) {
+ $res['BorderWidthNormalized'] = $this->borderWidthNormalized;
+ }
+ if (null !== $this->color) {
+ $res['Color'] = $this->color;
+ }
+ if (null !== $this->fontName) {
+ $res['FontName'] = $this->fontName;
+ }
+ if (null !== $this->sizeNormalized) {
+ $res['SizeNormalized'] = $this->sizeNormalized;
+ }
+ if (null !== $this->text) {
+ $res['Text'] = $this->text;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return textLayerContent
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BorderColor'])) {
+ $model->borderColor = $map['BorderColor'];
+ }
+ if (isset($map['BorderWidthNormalized'])) {
+ $model->borderWidthNormalized = $map['BorderWidthNormalized'];
+ }
+ if (isset($map['Color'])) {
+ $model->color = $map['Color'];
+ }
+ if (isset($map['FontName'])) {
+ $model->fontName = $map['FontName'];
+ }
+ if (isset($map['SizeNormalized'])) {
+ $model->sizeNormalized = $map['SizeNormalized'];
+ }
+ if (isset($map['Text'])) {
+ $model->text = $map['Text'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigRequest.php
new file mode 100644
index 000000000..7dd1cfc65
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponse.php
new file mode 100644
index 000000000..0240709b3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterConfigResponse
+ */
+ 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 = DescribeCasterConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody.php
new file mode 100644
index 000000000..53ca07695
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody.php
@@ -0,0 +1,230 @@
+ 'CallbackUrl',
+ 'casterId' => 'CasterId',
+ 'casterName' => 'CasterName',
+ 'channelEnable' => 'ChannelEnable',
+ 'delay' => 'Delay',
+ 'domainName' => 'DomainName',
+ 'programEffect' => 'ProgramEffect',
+ 'programName' => 'ProgramName',
+ 'recordConfig' => 'RecordConfig',
+ 'requestId' => 'RequestId',
+ 'sideOutputUrl' => 'SideOutputUrl',
+ 'sideOutputUrlList' => 'SideOutputUrlList',
+ 'syncGroupsConfig' => 'SyncGroupsConfig',
+ 'transcodeConfig' => 'TranscodeConfig',
+ 'urgentLiveStreamUrl' => 'UrgentLiveStreamUrl',
+ 'urgentMaterialId' => 'UrgentMaterialId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callbackUrl) {
+ $res['CallbackUrl'] = $this->callbackUrl;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->casterName) {
+ $res['CasterName'] = $this->casterName;
+ }
+ if (null !== $this->channelEnable) {
+ $res['ChannelEnable'] = $this->channelEnable;
+ }
+ if (null !== $this->delay) {
+ $res['Delay'] = $this->delay;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->programEffect) {
+ $res['ProgramEffect'] = $this->programEffect;
+ }
+ if (null !== $this->programName) {
+ $res['ProgramName'] = $this->programName;
+ }
+ if (null !== $this->recordConfig) {
+ $res['RecordConfig'] = null !== $this->recordConfig ? $this->recordConfig->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->sideOutputUrl) {
+ $res['SideOutputUrl'] = $this->sideOutputUrl;
+ }
+ if (null !== $this->sideOutputUrlList) {
+ $res['SideOutputUrlList'] = $this->sideOutputUrlList;
+ }
+ if (null !== $this->syncGroupsConfig) {
+ $res['SyncGroupsConfig'] = null !== $this->syncGroupsConfig ? $this->syncGroupsConfig->toMap() : null;
+ }
+ if (null !== $this->transcodeConfig) {
+ $res['TranscodeConfig'] = null !== $this->transcodeConfig ? $this->transcodeConfig->toMap() : null;
+ }
+ if (null !== $this->urgentLiveStreamUrl) {
+ $res['UrgentLiveStreamUrl'] = $this->urgentLiveStreamUrl;
+ }
+ if (null !== $this->urgentMaterialId) {
+ $res['UrgentMaterialId'] = $this->urgentMaterialId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CallbackUrl'])) {
+ $model->callbackUrl = $map['CallbackUrl'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['CasterName'])) {
+ $model->casterName = $map['CasterName'];
+ }
+ if (isset($map['ChannelEnable'])) {
+ $model->channelEnable = $map['ChannelEnable'];
+ }
+ if (isset($map['Delay'])) {
+ $model->delay = $map['Delay'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['ProgramEffect'])) {
+ $model->programEffect = $map['ProgramEffect'];
+ }
+ if (isset($map['ProgramName'])) {
+ $model->programName = $map['ProgramName'];
+ }
+ if (isset($map['RecordConfig'])) {
+ $model->recordConfig = recordConfig::fromMap($map['RecordConfig']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['SideOutputUrl'])) {
+ $model->sideOutputUrl = $map['SideOutputUrl'];
+ }
+ if (isset($map['SideOutputUrlList'])) {
+ $model->sideOutputUrlList = $map['SideOutputUrlList'];
+ }
+ if (isset($map['SyncGroupsConfig'])) {
+ $model->syncGroupsConfig = syncGroupsConfig::fromMap($map['SyncGroupsConfig']);
+ }
+ if (isset($map['TranscodeConfig'])) {
+ $model->transcodeConfig = transcodeConfig::fromMap($map['TranscodeConfig']);
+ }
+ if (isset($map['UrgentLiveStreamUrl'])) {
+ $model->urgentLiveStreamUrl = $map['UrgentLiveStreamUrl'];
+ }
+ if (isset($map['UrgentMaterialId'])) {
+ $model->urgentMaterialId = $map['UrgentMaterialId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig.php
new file mode 100644
index 000000000..867a6160f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig.php
@@ -0,0 +1,72 @@
+ 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'recordFormat' => 'RecordFormat',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->recordFormat) {
+ $res['RecordFormat'] = null !== $this->recordFormat ? $this->recordFormat->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['RecordFormat'])) {
+ $model->recordFormat = recordFormat::fromMap($map['RecordFormat']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat.php
new file mode 100644
index 000000000..16e8a3520
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat.php
@@ -0,0 +1,59 @@
+ 'RecordFormat',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordFormat) {
+ $res['RecordFormat'] = [];
+ if (null !== $this->recordFormat && \is_array($this->recordFormat)) {
+ $n = 0;
+ foreach ($this->recordFormat as $item) {
+ $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordFormat
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordFormat'])) {
+ if (!empty($map['RecordFormat'])) {
+ $model->recordFormat = [];
+ $n = 0;
+ foreach ($map['RecordFormat'] as $item) {
+ $model->recordFormat[$n++] = null !== $item ? \AlibabaCloud\SDK\Live\V20161101\Models\DescribeCasterConfigResponseBody\recordConfig\recordFormat\recordFormat::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat/recordFormat.php
new file mode 100644
index 000000000..62ae370e7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat/recordFormat.php
@@ -0,0 +1,83 @@
+ 'CycleDuration',
+ 'format' => 'Format',
+ 'ossObjectPrefix' => 'OssObjectPrefix',
+ 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cycleDuration) {
+ $res['CycleDuration'] = $this->cycleDuration;
+ }
+ if (null !== $this->format) {
+ $res['Format'] = $this->format;
+ }
+ if (null !== $this->ossObjectPrefix) {
+ $res['OssObjectPrefix'] = $this->ossObjectPrefix;
+ }
+ if (null !== $this->sliceOssObjectPrefix) {
+ $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordFormat
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CycleDuration'])) {
+ $model->cycleDuration = $map['CycleDuration'];
+ }
+ if (isset($map['Format'])) {
+ $model->format = $map['Format'];
+ }
+ if (isset($map['OssObjectPrefix'])) {
+ $model->ossObjectPrefix = $map['OssObjectPrefix'];
+ }
+ if (isset($map['SliceOssObjectPrefix'])) {
+ $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig.php
new file mode 100644
index 000000000..600fd1d6d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig.php
@@ -0,0 +1,60 @@
+ 'SyncGroup',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->syncGroup) {
+ $res['SyncGroup'] = [];
+ if (null !== $this->syncGroup && \is_array($this->syncGroup)) {
+ $n = 0;
+ foreach ($this->syncGroup as $item) {
+ $res['SyncGroup'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return syncGroupsConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SyncGroup'])) {
+ if (!empty($map['SyncGroup'])) {
+ $model->syncGroup = [];
+ $n = 0;
+ foreach ($map['SyncGroup'] as $item) {
+ $model->syncGroup[$n++] = null !== $item ? syncGroup::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup.php
new file mode 100644
index 000000000..8d27b96a6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup.php
@@ -0,0 +1,72 @@
+ 'HostResourceId',
+ 'mode' => 'Mode',
+ 'resourceIds' => 'ResourceIds',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->hostResourceId) {
+ $res['HostResourceId'] = $this->hostResourceId;
+ }
+ if (null !== $this->mode) {
+ $res['Mode'] = $this->mode;
+ }
+ if (null !== $this->resourceIds) {
+ $res['ResourceIds'] = null !== $this->resourceIds ? $this->resourceIds->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return syncGroup
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HostResourceId'])) {
+ $model->hostResourceId = $map['HostResourceId'];
+ }
+ if (isset($map['Mode'])) {
+ $model->mode = $map['Mode'];
+ }
+ if (isset($map['ResourceIds'])) {
+ $model->resourceIds = resourceIds::fromMap($map['ResourceIds']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup/resourceIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup/resourceIds.php
new file mode 100644
index 000000000..e70d7006b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup/resourceIds.php
@@ -0,0 +1,49 @@
+ 'ResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return resourceIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ResourceId'])) {
+ if (!empty($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig.php
new file mode 100644
index 000000000..d81dacd94
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig.php
@@ -0,0 +1,60 @@
+ 'CasterTemplate',
+ 'liveTemplateIds' => 'LiveTemplateIds',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterTemplate) {
+ $res['CasterTemplate'] = $this->casterTemplate;
+ }
+ if (null !== $this->liveTemplateIds) {
+ $res['LiveTemplateIds'] = null !== $this->liveTemplateIds ? $this->liveTemplateIds->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterTemplate'])) {
+ $model->casterTemplate = $map['CasterTemplate'];
+ }
+ if (isset($map['LiveTemplateIds'])) {
+ $model->liveTemplateIds = liveTemplateIds::fromMap($map['LiveTemplateIds']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig/liveTemplateIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig/liveTemplateIds.php
new file mode 100644
index 000000000..c6cc0c137
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig/liveTemplateIds.php
@@ -0,0 +1,49 @@
+ 'LocationId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveTemplateIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LocationId'])) {
+ if (!empty($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsRequest.php
new file mode 100644
index 000000000..4e91d1fc0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'layoutId' => 'LayoutId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterLayoutsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponse.php
new file mode 100644
index 000000000..094f97c14
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterLayoutsResponse
+ */
+ 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 = DescribeCasterLayoutsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody.php
new file mode 100644
index 000000000..6c653a00e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody.php
@@ -0,0 +1,72 @@
+ 'Layouts',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->layouts) {
+ $res['Layouts'] = null !== $this->layouts ? $this->layouts->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterLayoutsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Layouts'])) {
+ $model->layouts = layouts::fromMap($map['Layouts']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts.php
new file mode 100644
index 000000000..3e917160e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts.php
@@ -0,0 +1,60 @@
+ 'Layout',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->layout) {
+ $res['Layout'] = [];
+ if (null !== $this->layout && \is_array($this->layout)) {
+ $n = 0;
+ foreach ($this->layout as $item) {
+ $res['Layout'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return layouts
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Layout'])) {
+ if (!empty($map['Layout'])) {
+ $model->layout = [];
+ $n = 0;
+ foreach ($map['Layout'] as $item) {
+ $model->layout[$n++] = null !== $item ? layout::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout.php
new file mode 100644
index 000000000..56f5a361e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout.php
@@ -0,0 +1,99 @@
+ 'AudioLayers',
+ 'blendList' => 'BlendList',
+ 'layoutId' => 'LayoutId',
+ 'mixList' => 'MixList',
+ 'videoLayers' => 'VideoLayers',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioLayers) {
+ $res['AudioLayers'] = null !== $this->audioLayers ? $this->audioLayers->toMap() : null;
+ }
+ if (null !== $this->blendList) {
+ $res['BlendList'] = null !== $this->blendList ? $this->blendList->toMap() : null;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->mixList) {
+ $res['MixList'] = null !== $this->mixList ? $this->mixList->toMap() : null;
+ }
+ if (null !== $this->videoLayers) {
+ $res['VideoLayers'] = null !== $this->videoLayers ? $this->videoLayers->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return layout
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioLayers'])) {
+ $model->audioLayers = audioLayers::fromMap($map['AudioLayers']);
+ }
+ if (isset($map['BlendList'])) {
+ $model->blendList = blendList::fromMap($map['BlendList']);
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['MixList'])) {
+ $model->mixList = mixList::fromMap($map['MixList']);
+ }
+ if (isset($map['VideoLayers'])) {
+ $model->videoLayers = videoLayers::fromMap($map['VideoLayers']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers.php
new file mode 100644
index 000000000..62c6cab33
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers.php
@@ -0,0 +1,60 @@
+ 'AudioLayer',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioLayer) {
+ $res['AudioLayer'] = [];
+ if (null !== $this->audioLayer && \is_array($this->audioLayer)) {
+ $n = 0;
+ foreach ($this->audioLayer as $item) {
+ $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioLayers
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioLayer'])) {
+ if (!empty($map['AudioLayer'])) {
+ $model->audioLayer = [];
+ $n = 0;
+ foreach ($map['AudioLayer'] as $item) {
+ $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers/audioLayer.php
new file mode 100644
index 000000000..6fd8cd22b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers/audioLayer.php
@@ -0,0 +1,71 @@
+ 'FixedDelayDuration',
+ 'validChannel' => 'ValidChannel',
+ 'volumeRate' => 'VolumeRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->validChannel) {
+ $res['ValidChannel'] = $this->validChannel;
+ }
+ if (null !== $this->volumeRate) {
+ $res['VolumeRate'] = $this->volumeRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['ValidChannel'])) {
+ $model->validChannel = $map['ValidChannel'];
+ }
+ if (isset($map['VolumeRate'])) {
+ $model->volumeRate = $map['VolumeRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/blendList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/blendList.php
new file mode 100644
index 000000000..620aef54c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/blendList.php
@@ -0,0 +1,49 @@
+ 'LocationId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return blendList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LocationId'])) {
+ if (!empty($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/mixList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/mixList.php
new file mode 100644
index 000000000..105dc6bbc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/mixList.php
@@ -0,0 +1,49 @@
+ 'LocationId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return mixList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LocationId'])) {
+ if (!empty($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers.php
new file mode 100644
index 000000000..0f396abe9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers.php
@@ -0,0 +1,60 @@
+ 'VideoLayer',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->videoLayer) {
+ $res['VideoLayer'] = [];
+ if (null !== $this->videoLayer && \is_array($this->videoLayer)) {
+ $n = 0;
+ foreach ($this->videoLayer as $item) {
+ $res['VideoLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return videoLayers
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['VideoLayer'])) {
+ if (!empty($map['VideoLayer'])) {
+ $model->videoLayer = [];
+ $n = 0;
+ foreach ($map['VideoLayer'] as $item) {
+ $model->videoLayer[$n++] = null !== $item ? videoLayer::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer.php
new file mode 100644
index 000000000..8b20b00dd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer.php
@@ -0,0 +1,108 @@
+ 'FillMode',
+ 'fixedDelayDuration' => 'FixedDelayDuration',
+ 'heightNormalized' => 'HeightNormalized',
+ 'positionNormalizeds' => 'PositionNormalizeds',
+ 'positionRefer' => 'PositionRefer',
+ 'widthNormalized' => 'WidthNormalized',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fillMode) {
+ $res['FillMode'] = $this->fillMode;
+ }
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->heightNormalized) {
+ $res['HeightNormalized'] = $this->heightNormalized;
+ }
+ if (null !== $this->positionNormalizeds) {
+ $res['PositionNormalizeds'] = null !== $this->positionNormalizeds ? $this->positionNormalizeds->toMap() : null;
+ }
+ if (null !== $this->positionRefer) {
+ $res['PositionRefer'] = $this->positionRefer;
+ }
+ if (null !== $this->widthNormalized) {
+ $res['WidthNormalized'] = $this->widthNormalized;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return videoLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FillMode'])) {
+ $model->fillMode = $map['FillMode'];
+ }
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['HeightNormalized'])) {
+ $model->heightNormalized = $map['HeightNormalized'];
+ }
+ if (isset($map['PositionNormalizeds'])) {
+ $model->positionNormalizeds = positionNormalizeds::fromMap($map['PositionNormalizeds']);
+ }
+ if (isset($map['PositionRefer'])) {
+ $model->positionRefer = $map['PositionRefer'];
+ }
+ if (isset($map['WidthNormalized'])) {
+ $model->widthNormalized = $map['WidthNormalized'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer/positionNormalizeds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer/positionNormalizeds.php
new file mode 100644
index 000000000..978c16230
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer/positionNormalizeds.php
@@ -0,0 +1,49 @@
+ 'Position',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->position) {
+ $res['Position'] = $this->position;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return positionNormalizeds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Position'])) {
+ if (!empty($map['Position'])) {
+ $model->position = $map['Position'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramRequest.php
new file mode 100644
index 000000000..681090ed3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramRequest.php
@@ -0,0 +1,143 @@
+ 'CasterId',
+ 'endTime' => 'EndTime',
+ 'episodeId' => 'EpisodeId',
+ 'episodeType' => 'EpisodeType',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'startTime' => 'StartTime',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->episodeType) {
+ $res['EpisodeType'] = $this->episodeType;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterProgramRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['EpisodeType'])) {
+ $model->episodeType = $map['EpisodeType'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponse.php
new file mode 100644
index 000000000..a2c12cacf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterProgramResponse
+ */
+ 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 = DescribeCasterProgramResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody.php
new file mode 100644
index 000000000..1827b8b46
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody.php
@@ -0,0 +1,108 @@
+ 'CasterId',
+ 'episodes' => 'Episodes',
+ 'programEffect' => 'ProgramEffect',
+ 'programName' => 'ProgramName',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->episodes) {
+ $res['Episodes'] = null !== $this->episodes ? $this->episodes->toMap() : null;
+ }
+ if (null !== $this->programEffect) {
+ $res['ProgramEffect'] = $this->programEffect;
+ }
+ if (null !== $this->programName) {
+ $res['ProgramName'] = $this->programName;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterProgramResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['Episodes'])) {
+ $model->episodes = episodes::fromMap($map['Episodes']);
+ }
+ if (isset($map['ProgramEffect'])) {
+ $model->programEffect = $map['ProgramEffect'];
+ }
+ if (isset($map['ProgramName'])) {
+ $model->programName = $map['ProgramName'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes.php
new file mode 100644
index 000000000..688e5b0c4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes.php
@@ -0,0 +1,60 @@
+ 'Episode',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->episode) {
+ $res['Episode'] = [];
+ if (null !== $this->episode && \is_array($this->episode)) {
+ $n = 0;
+ foreach ($this->episode as $item) {
+ $res['Episode'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return episodes
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Episode'])) {
+ if (!empty($map['Episode'])) {
+ $model->episode = [];
+ $n = 0;
+ foreach ($map['Episode'] as $item) {
+ $model->episode[$n++] = null !== $item ? episode::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode.php
new file mode 100644
index 000000000..8d8b4e6ad
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode.php
@@ -0,0 +1,144 @@
+ 'ComponentIds',
+ 'endTime' => 'EndTime',
+ 'episodeId' => 'EpisodeId',
+ 'episodeName' => 'EpisodeName',
+ 'episodeType' => 'EpisodeType',
+ 'resourceId' => 'ResourceId',
+ 'startTime' => 'StartTime',
+ 'status' => 'Status',
+ 'switchType' => 'SwitchType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentIds) {
+ $res['ComponentIds'] = null !== $this->componentIds ? $this->componentIds->toMap() : null;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->episodeName) {
+ $res['EpisodeName'] = $this->episodeName;
+ }
+ if (null !== $this->episodeType) {
+ $res['EpisodeType'] = $this->episodeType;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+ if (null !== $this->switchType) {
+ $res['SwitchType'] = $this->switchType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return episode
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ComponentIds'])) {
+ $model->componentIds = componentIds::fromMap($map['ComponentIds']);
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['EpisodeName'])) {
+ $model->episodeName = $map['EpisodeName'];
+ }
+ if (isset($map['EpisodeType'])) {
+ $model->episodeType = $map['EpisodeType'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+ if (isset($map['SwitchType'])) {
+ $model->switchType = $map['SwitchType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode/componentIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode/componentIds.php
new file mode 100644
index 000000000..7cce85faa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode/componentIds.php
@@ -0,0 +1,49 @@
+ 'ComponentId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return componentIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ComponentId'])) {
+ if (!empty($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoRequest.php
new file mode 100644
index 000000000..768412c47
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'casterId' => 'CasterId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterRtcInfoRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponse.php
new file mode 100644
index 000000000..517bd1140
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterRtcInfoResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeCasterRtcInfoResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponseBody.php
new file mode 100644
index 000000000..c462f7e7d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponseBody.php
@@ -0,0 +1,71 @@
+ 'RequestId',
+ 'authToken' => 'AuthToken',
+ 'casterId' => 'CasterId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->authToken) {
+ $res['AuthToken'] = $this->authToken;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterRtcInfoResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['AuthToken'])) {
+ $model->authToken = $map['AuthToken'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioRequest.php
new file mode 100644
index 000000000..832046806
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterSceneAudioRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponse.php
new file mode 100644
index 000000000..a1d39d650
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterSceneAudioResponse
+ */
+ 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 = DescribeCasterSceneAudioResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody.php
new file mode 100644
index 000000000..868241b9b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody.php
@@ -0,0 +1,97 @@
+ 'AudioLayers',
+ 'casterId' => 'CasterId',
+ 'followEnable' => 'FollowEnable',
+ 'mixList' => 'MixList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioLayers) {
+ $res['AudioLayers'] = null !== $this->audioLayers ? $this->audioLayers->toMap() : null;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->followEnable) {
+ $res['FollowEnable'] = $this->followEnable;
+ }
+ if (null !== $this->mixList) {
+ $res['MixList'] = null !== $this->mixList ? $this->mixList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterSceneAudioResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioLayers'])) {
+ $model->audioLayers = audioLayers::fromMap($map['AudioLayers']);
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['FollowEnable'])) {
+ $model->followEnable = $map['FollowEnable'];
+ }
+ if (isset($map['MixList'])) {
+ $model->mixList = mixList::fromMap($map['MixList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers.php
new file mode 100644
index 000000000..9d2802dc1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers.php
@@ -0,0 +1,60 @@
+ 'AudioLayer',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioLayer) {
+ $res['AudioLayer'] = [];
+ if (null !== $this->audioLayer && \is_array($this->audioLayer)) {
+ $n = 0;
+ foreach ($this->audioLayer as $item) {
+ $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioLayers
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioLayer'])) {
+ if (!empty($map['AudioLayer'])) {
+ $model->audioLayer = [];
+ $n = 0;
+ foreach ($map['AudioLayer'] as $item) {
+ $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers/audioLayer.php
new file mode 100644
index 000000000..8517f7a9e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers/audioLayer.php
@@ -0,0 +1,71 @@
+ 'FixedDelayDuration',
+ 'validChannel' => 'ValidChannel',
+ 'volumeRate' => 'VolumeRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->validChannel) {
+ $res['ValidChannel'] = $this->validChannel;
+ }
+ if (null !== $this->volumeRate) {
+ $res['VolumeRate'] = $this->volumeRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['ValidChannel'])) {
+ $model->validChannel = $map['ValidChannel'];
+ }
+ if (isset($map['VolumeRate'])) {
+ $model->volumeRate = $map['VolumeRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/mixList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/mixList.php
new file mode 100644
index 000000000..c0c4afde9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/mixList.php
@@ -0,0 +1,49 @@
+ 'LocationId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return mixList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LocationId'])) {
+ if (!empty($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesRequest.php
new file mode 100644
index 000000000..849a978d5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterScenesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponse.php
new file mode 100644
index 000000000..1866cc049
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterScenesResponse
+ */
+ 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 = DescribeCasterScenesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody.php
new file mode 100644
index 000000000..105a47c6c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'sceneList' => 'SceneList',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->sceneList) {
+ $res['SceneList'] = null !== $this->sceneList ? $this->sceneList->toMap() : null;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterScenesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['SceneList'])) {
+ $model->sceneList = sceneList::fromMap($map['SceneList']);
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList.php
new file mode 100644
index 000000000..04c91a9b2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList.php
@@ -0,0 +1,60 @@
+ 'Scene',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->scene) {
+ $res['Scene'] = [];
+ if (null !== $this->scene && \is_array($this->scene)) {
+ $n = 0;
+ foreach ($this->scene as $item) {
+ $res['Scene'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return sceneList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Scene'])) {
+ if (!empty($map['Scene'])) {
+ $model->scene = [];
+ $n = 0;
+ foreach ($map['Scene'] as $item) {
+ $model->scene[$n++] = null !== $item ? scene::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene.php
new file mode 100644
index 000000000..d855bb177
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene.php
@@ -0,0 +1,133 @@
+ 'ComponentIds',
+ 'layoutId' => 'LayoutId',
+ 'outputType' => 'OutputType',
+ 'sceneId' => 'SceneId',
+ 'sceneName' => 'SceneName',
+ 'status' => 'Status',
+ 'streamInfos' => 'StreamInfos',
+ 'streamUrl' => 'StreamUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentIds) {
+ $res['ComponentIds'] = null !== $this->componentIds ? $this->componentIds->toMap() : null;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->outputType) {
+ $res['OutputType'] = $this->outputType;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+ if (null !== $this->sceneName) {
+ $res['SceneName'] = $this->sceneName;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+ if (null !== $this->streamInfos) {
+ $res['StreamInfos'] = null !== $this->streamInfos ? $this->streamInfos->toMap() : null;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return scene
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ComponentIds'])) {
+ $model->componentIds = componentIds::fromMap($map['ComponentIds']);
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OutputType'])) {
+ $model->outputType = $map['OutputType'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+ if (isset($map['SceneName'])) {
+ $model->sceneName = $map['SceneName'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+ if (isset($map['StreamInfos'])) {
+ $model->streamInfos = streamInfos::fromMap($map['StreamInfos']);
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/componentIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/componentIds.php
new file mode 100644
index 000000000..13cc67f50
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/componentIds.php
@@ -0,0 +1,49 @@
+ 'componentId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentId) {
+ $res['componentId'] = $this->componentId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return componentIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['componentId'])) {
+ if (!empty($map['componentId'])) {
+ $model->componentId = $map['componentId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos.php
new file mode 100644
index 000000000..9b25d0a55
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos.php
@@ -0,0 +1,60 @@
+ 'StreamInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamInfo) {
+ $res['StreamInfo'] = [];
+ if (null !== $this->streamInfo && \is_array($this->streamInfo)) {
+ $n = 0;
+ foreach ($this->streamInfo as $item) {
+ $res['StreamInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamInfo'])) {
+ if (!empty($map['StreamInfo'])) {
+ $model->streamInfo = [];
+ $n = 0;
+ foreach ($map['StreamInfo'] as $item) {
+ $model->streamInfo[$n++] = null !== $item ? streamInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos/streamInfo.php
new file mode 100644
index 000000000..9e56351c3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos/streamInfo.php
@@ -0,0 +1,71 @@
+ 'OutputStreamUrl',
+ 'transcodeConfig' => 'TranscodeConfig',
+ 'videoFormat' => 'VideoFormat',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->outputStreamUrl) {
+ $res['OutputStreamUrl'] = $this->outputStreamUrl;
+ }
+ if (null !== $this->transcodeConfig) {
+ $res['TranscodeConfig'] = $this->transcodeConfig;
+ }
+ if (null !== $this->videoFormat) {
+ $res['VideoFormat'] = $this->videoFormat;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OutputStreamUrl'])) {
+ $model->outputStreamUrl = $map['OutputStreamUrl'];
+ }
+ if (isset($map['TranscodeConfig'])) {
+ $model->transcodeConfig = $map['TranscodeConfig'];
+ }
+ if (isset($map['VideoFormat'])) {
+ $model->videoFormat = $map['VideoFormat'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlRequest.php
new file mode 100644
index 000000000..eae7be963
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterStreamUrlRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponse.php
new file mode 100644
index 000000000..f381a436c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterStreamUrlResponse
+ */
+ 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 = DescribeCasterStreamUrlResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody.php
new file mode 100644
index 000000000..c2a47ab38
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody.php
@@ -0,0 +1,84 @@
+ 'CasterId',
+ 'casterStreams' => 'CasterStreams',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->casterStreams) {
+ $res['CasterStreams'] = null !== $this->casterStreams ? $this->casterStreams->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterStreamUrlResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['CasterStreams'])) {
+ $model->casterStreams = casterStreams::fromMap($map['CasterStreams']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams.php
new file mode 100644
index 000000000..317028b8e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams.php
@@ -0,0 +1,60 @@
+ 'CasterStream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterStream) {
+ $res['CasterStream'] = [];
+ if (null !== $this->casterStream && \is_array($this->casterStream)) {
+ $n = 0;
+ foreach ($this->casterStream as $item) {
+ $res['CasterStream'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return casterStreams
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterStream'])) {
+ if (!empty($map['CasterStream'])) {
+ $model->casterStream = [];
+ $n = 0;
+ foreach ($map['CasterStream'] as $item) {
+ $model->casterStream[$n++] = null !== $item ? casterStream::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream.php
new file mode 100644
index 000000000..aa96faf67
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream.php
@@ -0,0 +1,96 @@
+ 'OutputType',
+ 'rtmpUrl' => 'RtmpUrl',
+ 'sceneId' => 'SceneId',
+ 'streamInfos' => 'StreamInfos',
+ 'streamUrl' => 'StreamUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->outputType) {
+ $res['OutputType'] = $this->outputType;
+ }
+ if (null !== $this->rtmpUrl) {
+ $res['RtmpUrl'] = $this->rtmpUrl;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+ if (null !== $this->streamInfos) {
+ $res['StreamInfos'] = null !== $this->streamInfos ? $this->streamInfos->toMap() : null;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return casterStream
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OutputType'])) {
+ $model->outputType = $map['OutputType'];
+ }
+ if (isset($map['RtmpUrl'])) {
+ $model->rtmpUrl = $map['RtmpUrl'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+ if (isset($map['StreamInfos'])) {
+ $model->streamInfos = streamInfos::fromMap($map['StreamInfos']);
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos.php
new file mode 100644
index 000000000..f2a01e8da
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos.php
@@ -0,0 +1,60 @@
+ 'StreamInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamInfo) {
+ $res['StreamInfo'] = [];
+ if (null !== $this->streamInfo && \is_array($this->streamInfo)) {
+ $n = 0;
+ foreach ($this->streamInfo as $item) {
+ $res['StreamInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamInfo'])) {
+ if (!empty($map['StreamInfo'])) {
+ $model->streamInfo = [];
+ $n = 0;
+ foreach ($map['StreamInfo'] as $item) {
+ $model->streamInfo[$n++] = null !== $item ? streamInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos/streamInfo.php
new file mode 100644
index 000000000..492120015
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos/streamInfo.php
@@ -0,0 +1,71 @@
+ 'OutputStreamUrl',
+ 'transcodeConfig' => 'TranscodeConfig',
+ 'videoFormat' => 'VideoFormat',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->outputStreamUrl) {
+ $res['OutputStreamUrl'] = $this->outputStreamUrl;
+ }
+ if (null !== $this->transcodeConfig) {
+ $res['TranscodeConfig'] = $this->transcodeConfig;
+ }
+ if (null !== $this->videoFormat) {
+ $res['VideoFormat'] = $this->videoFormat;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OutputStreamUrl'])) {
+ $model->outputStreamUrl = $map['OutputStreamUrl'];
+ }
+ if (isset($map['TranscodeConfig'])) {
+ $model->transcodeConfig = $map['TranscodeConfig'];
+ }
+ if (isset($map['VideoFormat'])) {
+ $model->videoFormat = $map['VideoFormat'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupRequest.php
new file mode 100644
index 000000000..ab676f235
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterSyncGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponse.php
new file mode 100644
index 000000000..f57f6f019
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterSyncGroupResponse
+ */
+ 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 = DescribeCasterSyncGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody.php
new file mode 100644
index 000000000..dda6b259e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody.php
@@ -0,0 +1,72 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ 'syncGroups' => 'SyncGroups',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->syncGroups) {
+ $res['SyncGroups'] = null !== $this->syncGroups ? $this->syncGroups->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterSyncGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['SyncGroups'])) {
+ $model->syncGroups = syncGroups::fromMap($map['SyncGroups']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups.php
new file mode 100644
index 000000000..355da7f8c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups.php
@@ -0,0 +1,60 @@
+ 'SyncGroup',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->syncGroup) {
+ $res['SyncGroup'] = [];
+ if (null !== $this->syncGroup && \is_array($this->syncGroup)) {
+ $n = 0;
+ foreach ($this->syncGroup as $item) {
+ $res['SyncGroup'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return syncGroups
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SyncGroup'])) {
+ if (!empty($map['SyncGroup'])) {
+ $model->syncGroup = [];
+ $n = 0;
+ foreach ($map['SyncGroup'] as $item) {
+ $model->syncGroup[$n++] = null !== $item ? syncGroup::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup.php
new file mode 100644
index 000000000..f5bb71db1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup.php
@@ -0,0 +1,72 @@
+ 'HostResourceId',
+ 'mode' => 'Mode',
+ 'resourceIds' => 'ResourceIds',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->hostResourceId) {
+ $res['HostResourceId'] = $this->hostResourceId;
+ }
+ if (null !== $this->mode) {
+ $res['Mode'] = $this->mode;
+ }
+ if (null !== $this->resourceIds) {
+ $res['ResourceIds'] = null !== $this->resourceIds ? $this->resourceIds->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return syncGroup
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HostResourceId'])) {
+ $model->hostResourceId = $map['HostResourceId'];
+ }
+ if (isset($map['Mode'])) {
+ $model->mode = $map['Mode'];
+ }
+ if (isset($map['ResourceIds'])) {
+ $model->resourceIds = resourceIds::fromMap($map['ResourceIds']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup/resourceIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup/resourceIds.php
new file mode 100644
index 000000000..1aa58ecc6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup/resourceIds.php
@@ -0,0 +1,49 @@
+ 'ResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return resourceIds
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ResourceId'])) {
+ if (!empty($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesRequest.php
new file mode 100644
index 000000000..f338059f6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterVideoResourcesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponse.php
new file mode 100644
index 000000000..633736bb1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCasterVideoResourcesResponse
+ */
+ 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 = DescribeCasterVideoResourcesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody.php
new file mode 100644
index 000000000..1cd1675da
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'total' => 'Total',
+ 'videoResources' => 'VideoResources',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+ if (null !== $this->videoResources) {
+ $res['VideoResources'] = null !== $this->videoResources ? $this->videoResources->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCasterVideoResourcesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+ if (isset($map['VideoResources'])) {
+ $model->videoResources = videoResources::fromMap($map['VideoResources']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources.php
new file mode 100644
index 000000000..95a92dfbb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources.php
@@ -0,0 +1,60 @@
+ 'VideoResource',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->videoResource) {
+ $res['VideoResource'] = [];
+ if (null !== $this->videoResource && \is_array($this->videoResource)) {
+ $n = 0;
+ foreach ($this->videoResource as $item) {
+ $res['VideoResource'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return videoResources
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['VideoResource'])) {
+ if (!empty($map['VideoResource'])) {
+ $model->videoResource = [];
+ $n = 0;
+ foreach ($map['VideoResource'] as $item) {
+ $model->videoResource[$n++] = null !== $item ? videoResource::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources/videoResource.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources/videoResource.php
new file mode 100644
index 000000000..0c1efc0b4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources/videoResource.php
@@ -0,0 +1,167 @@
+ 'BeginOffset',
+ 'endOffset' => 'EndOffset',
+ 'flvUrl' => 'FlvUrl',
+ 'liveStreamUrl' => 'LiveStreamUrl',
+ 'locationId' => 'LocationId',
+ 'materialId' => 'MaterialId',
+ 'ptsCallbackInterval' => 'PtsCallbackInterval',
+ 'repeatNum' => 'RepeatNum',
+ 'resourceId' => 'ResourceId',
+ 'resourceName' => 'ResourceName',
+ 'vodUrl' => 'VodUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->beginOffset) {
+ $res['BeginOffset'] = $this->beginOffset;
+ }
+ if (null !== $this->endOffset) {
+ $res['EndOffset'] = $this->endOffset;
+ }
+ if (null !== $this->flvUrl) {
+ $res['FlvUrl'] = $this->flvUrl;
+ }
+ if (null !== $this->liveStreamUrl) {
+ $res['LiveStreamUrl'] = $this->liveStreamUrl;
+ }
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+ if (null !== $this->materialId) {
+ $res['MaterialId'] = $this->materialId;
+ }
+ if (null !== $this->ptsCallbackInterval) {
+ $res['PtsCallbackInterval'] = $this->ptsCallbackInterval;
+ }
+ if (null !== $this->repeatNum) {
+ $res['RepeatNum'] = $this->repeatNum;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceName) {
+ $res['ResourceName'] = $this->resourceName;
+ }
+ if (null !== $this->vodUrl) {
+ $res['VodUrl'] = $this->vodUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return videoResource
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BeginOffset'])) {
+ $model->beginOffset = $map['BeginOffset'];
+ }
+ if (isset($map['EndOffset'])) {
+ $model->endOffset = $map['EndOffset'];
+ }
+ if (isset($map['FlvUrl'])) {
+ $model->flvUrl = $map['FlvUrl'];
+ }
+ if (isset($map['LiveStreamUrl'])) {
+ $model->liveStreamUrl = $map['LiveStreamUrl'];
+ }
+ if (isset($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ if (isset($map['MaterialId'])) {
+ $model->materialId = $map['MaterialId'];
+ }
+ if (isset($map['PtsCallbackInterval'])) {
+ $model->ptsCallbackInterval = $map['PtsCallbackInterval'];
+ }
+ if (isset($map['RepeatNum'])) {
+ $model->repeatNum = $map['RepeatNum'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['ResourceName'])) {
+ $model->resourceName = $map['ResourceName'];
+ }
+ if (isset($map['VodUrl'])) {
+ $model->vodUrl = $map['VodUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersRequest.php
new file mode 100644
index 000000000..3bc09da2d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersRequest.php
@@ -0,0 +1,167 @@
+ 'CasterId',
+ 'casterName' => 'CasterName',
+ 'chargeType' => 'ChargeType',
+ 'endTime' => 'EndTime',
+ 'normType' => 'NormType',
+ 'orderByModifyAsc' => 'OrderByModifyAsc',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'startTime' => 'StartTime',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->casterName) {
+ $res['CasterName'] = $this->casterName;
+ }
+ if (null !== $this->chargeType) {
+ $res['ChargeType'] = $this->chargeType;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->normType) {
+ $res['NormType'] = $this->normType;
+ }
+ if (null !== $this->orderByModifyAsc) {
+ $res['OrderByModifyAsc'] = $this->orderByModifyAsc;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCastersRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['CasterName'])) {
+ $model->casterName = $map['CasterName'];
+ }
+ if (isset($map['ChargeType'])) {
+ $model->chargeType = $map['ChargeType'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['NormType'])) {
+ $model->normType = $map['NormType'];
+ }
+ if (isset($map['OrderByModifyAsc'])) {
+ $model->orderByModifyAsc = $map['OrderByModifyAsc'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponse.php
new file mode 100644
index 000000000..a9fddc71b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeCastersResponse
+ */
+ 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 = DescribeCastersResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody.php
new file mode 100644
index 000000000..c94ea6ae7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody.php
@@ -0,0 +1,72 @@
+ 'CasterList',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterList) {
+ $res['CasterList'] = null !== $this->casterList ? $this->casterList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeCastersResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterList'])) {
+ $model->casterList = casterList::fromMap($map['CasterList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList.php
new file mode 100644
index 000000000..c9facafa1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList.php
@@ -0,0 +1,60 @@
+ 'Caster',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->caster) {
+ $res['Caster'] = [];
+ if (null !== $this->caster && \is_array($this->caster)) {
+ $n = 0;
+ foreach ($this->caster as $item) {
+ $res['Caster'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return casterList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Caster'])) {
+ if (!empty($map['Caster'])) {
+ $model->caster = [];
+ $n = 0;
+ foreach ($map['Caster'] as $item) {
+ $model->caster[$n++] = null !== $item ? caster::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList/caster.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList/caster.php
new file mode 100644
index 000000000..d33504351
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList/caster.php
@@ -0,0 +1,191 @@
+ 'CasterId',
+ 'casterName' => 'CasterName',
+ 'casterTemplate' => 'CasterTemplate',
+ 'channelEnable' => 'ChannelEnable',
+ 'chargeType' => 'ChargeType',
+ 'createTime' => 'CreateTime',
+ 'duration' => 'Duration',
+ 'expireTime' => 'ExpireTime',
+ 'lastModified' => 'LastModified',
+ 'normType' => 'NormType',
+ 'purchaseTime' => 'PurchaseTime',
+ 'startTime' => 'StartTime',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->casterName) {
+ $res['CasterName'] = $this->casterName;
+ }
+ if (null !== $this->casterTemplate) {
+ $res['CasterTemplate'] = $this->casterTemplate;
+ }
+ if (null !== $this->channelEnable) {
+ $res['ChannelEnable'] = $this->channelEnable;
+ }
+ if (null !== $this->chargeType) {
+ $res['ChargeType'] = $this->chargeType;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->expireTime) {
+ $res['ExpireTime'] = $this->expireTime;
+ }
+ if (null !== $this->lastModified) {
+ $res['LastModified'] = $this->lastModified;
+ }
+ if (null !== $this->normType) {
+ $res['NormType'] = $this->normType;
+ }
+ if (null !== $this->purchaseTime) {
+ $res['PurchaseTime'] = $this->purchaseTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return caster
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['CasterName'])) {
+ $model->casterName = $map['CasterName'];
+ }
+ if (isset($map['CasterTemplate'])) {
+ $model->casterTemplate = $map['CasterTemplate'];
+ }
+ if (isset($map['ChannelEnable'])) {
+ $model->channelEnable = $map['ChannelEnable'];
+ }
+ if (isset($map['ChargeType'])) {
+ $model->chargeType = $map['ChargeType'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['ExpireTime'])) {
+ $model->expireTime = $map['ExpireTime'];
+ }
+ if (isset($map['LastModified'])) {
+ $model->lastModified = $map['LastModified'];
+ }
+ if (isset($map['NormType'])) {
+ $model->normType = $map['NormType'];
+ }
+ if (isset($map['PurchaseTime'])) {
+ $model->purchaseTime = $map['PurchaseTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListRequest.php
new file mode 100644
index 000000000..b28e7f523
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeDRMCertListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponse.php
new file mode 100644
index 000000000..3be211fea
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeDRMCertListResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeDRMCertListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody.php
new file mode 100644
index 000000000..86889aa9c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody.php
@@ -0,0 +1,60 @@
+ 'DRMCertInfoListList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->DRMCertInfoListList) {
+ $res['DRMCertInfoListList'] = null !== $this->DRMCertInfoListList ? $this->DRMCertInfoListList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeDRMCertListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DRMCertInfoListList'])) {
+ $model->DRMCertInfoListList = DRMCertInfoListList::fromMap($map['DRMCertInfoListList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList.php
new file mode 100644
index 000000000..79928a2a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList.php
@@ -0,0 +1,60 @@
+ 'CertInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certInfo) {
+ $res['CertInfo'] = [];
+ if (null !== $this->certInfo && \is_array($this->certInfo)) {
+ $n = 0;
+ foreach ($this->certInfo as $item) {
+ $res['CertInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DRMCertInfoListList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertInfo'])) {
+ if (!empty($map['CertInfo'])) {
+ $model->certInfo = [];
+ $n = 0;
+ foreach ($map['CertInfo'] as $item) {
+ $model->certInfo[$n++] = null !== $item ? certInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList/certInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList/certInfo.php
new file mode 100644
index 000000000..eac15c2ae
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList/certInfo.php
@@ -0,0 +1,119 @@
+ 'Description',
+ 'privateKey' => 'PrivateKey',
+ 'servCert' => 'ServCert',
+ 'certName' => 'CertName',
+ 'passphrase' => 'Passphrase',
+ 'certId' => 'CertId',
+ 'ask' => 'Ask',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->privateKey) {
+ $res['PrivateKey'] = $this->privateKey;
+ }
+ if (null !== $this->servCert) {
+ $res['ServCert'] = $this->servCert;
+ }
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->passphrase) {
+ $res['Passphrase'] = $this->passphrase;
+ }
+ if (null !== $this->certId) {
+ $res['CertId'] = $this->certId;
+ }
+ if (null !== $this->ask) {
+ $res['Ask'] = $this->ask;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return certInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['PrivateKey'])) {
+ $model->privateKey = $map['PrivateKey'];
+ }
+ if (isset($map['ServCert'])) {
+ $model->servCert = $map['ServCert'];
+ }
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['Passphrase'])) {
+ $model->passphrase = $map['Passphrase'];
+ }
+ if (isset($map['CertId'])) {
+ $model->certId = $map['CertId'];
+ }
+ if (isset($map['Ask'])) {
+ $model->ask = $map['Ask'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataRequest.php
new file mode 100644
index 000000000..1b130d045
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataRequest.php
@@ -0,0 +1,143 @@
+ 'Area',
+ 'dataProtocol' => 'DataProtocol',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'field' => 'Field',
+ 'interval' => 'Interval',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->area) {
+ $res['Area'] = $this->area;
+ }
+ if (null !== $this->dataProtocol) {
+ $res['DataProtocol'] = $this->dataProtocol;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->field) {
+ $res['Field'] = $this->field;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeDomainUsageDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Area'])) {
+ $model->area = $map['Area'];
+ }
+ if (isset($map['DataProtocol'])) {
+ $model->dataProtocol = $map['DataProtocol'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Field'])) {
+ $model->field = $map['Field'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponse.php
new file mode 100644
index 000000000..2a45e0ce4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeDomainUsageDataResponse
+ */
+ 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 = DescribeDomainUsageDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody.php
new file mode 100644
index 000000000..f72537f88
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody.php
@@ -0,0 +1,132 @@
+ 'Area',
+ 'dataInterval' => 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ 'type' => 'Type',
+ 'usageDataPerInterval' => 'UsageDataPerInterval',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->area) {
+ $res['Area'] = $this->area;
+ }
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+ if (null !== $this->usageDataPerInterval) {
+ $res['UsageDataPerInterval'] = null !== $this->usageDataPerInterval ? $this->usageDataPerInterval->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeDomainUsageDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Area'])) {
+ $model->area = $map['Area'];
+ }
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+ if (isset($map['UsageDataPerInterval'])) {
+ $model->usageDataPerInterval = usageDataPerInterval::fromMap($map['UsageDataPerInterval']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval.php
new file mode 100644
index 000000000..7741119cb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return usageDataPerInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval/dataModule.php
new file mode 100644
index 000000000..4c57f06fd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval/dataModule.php
@@ -0,0 +1,59 @@
+ 'TimeStamp',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityRequest.php
new file mode 100644
index 000000000..ef75c1e62
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityRequest.php
@@ -0,0 +1,83 @@
+ 'EndTime',
+ 'integrity' => 'Integrity',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->integrity) {
+ $res['Integrity'] = $this->integrity;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeDomainWithIntegrityRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Integrity'])) {
+ $model->integrity = $map['Integrity'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponse.php
new file mode 100644
index 000000000..5a7640020
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeDomainWithIntegrityResponse
+ */
+ 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 = DescribeDomainWithIntegrityResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody.php
new file mode 100644
index 000000000..9e0d0dcc2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody.php
@@ -0,0 +1,72 @@
+ 'Content',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = [];
+ if (null !== $this->content && \is_array($this->content)) {
+ $n = 0;
+ foreach ($this->content as $item) {
+ $res['Content'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeDomainWithIntegrityResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ if (!empty($map['Content'])) {
+ $model->content = [];
+ $n = 0;
+ foreach ($map['Content'] as $item) {
+ $model->content[$n++] = null !== $item ? content::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody/content.php
new file mode 100644
index 000000000..6097bd3da
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody/content.php
@@ -0,0 +1,75 @@
+ 'Columns',
+ 'name' => 'Name',
+ 'points' => 'Points',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->columns) {
+ $res['Columns'] = $this->columns;
+ }
+ if (null !== $this->name) {
+ $res['Name'] = $this->name;
+ }
+ if (null !== $this->points) {
+ $res['Points'] = $this->points;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return content
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Columns'])) {
+ if (!empty($map['Columns'])) {
+ $model->columns = $map['Columns'];
+ }
+ }
+ if (isset($map['Name'])) {
+ $model->name = $map['Name'];
+ }
+ if (isset($map['Points'])) {
+ if (!empty($map['Points'])) {
+ $model->points = $map['Points'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListRequest.php
new file mode 100644
index 000000000..5e26a9785
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeForbidPushStreamRoomListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponse.php
new file mode 100644
index 000000000..5d3ef97d7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeForbidPushStreamRoomListResponse
+ */
+ 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 = DescribeForbidPushStreamRoomListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody.php
new file mode 100644
index 000000000..6f0d1bac9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody.php
@@ -0,0 +1,96 @@
+ 'RequestId',
+ 'roomList' => 'RoomList',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->roomList) {
+ $res['RoomList'] = [];
+ if (null !== $this->roomList && \is_array($this->roomList)) {
+ $n = 0;
+ foreach ($this->roomList as $item) {
+ $res['RoomList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeForbidPushStreamRoomListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['RoomList'])) {
+ if (!empty($map['RoomList'])) {
+ $model->roomList = [];
+ $n = 0;
+ foreach ($map['RoomList'] as $item) {
+ $model->roomList[$n++] = null !== $item ? roomList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody/roomList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody/roomList.php
new file mode 100644
index 000000000..4514f02be
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody/roomList.php
@@ -0,0 +1,83 @@
+ 'AnchorId',
+ 'opEndTime' => 'OpEndTime',
+ 'opStartTime' => 'OpStartTime',
+ 'roomId' => 'RoomId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->anchorId) {
+ $res['AnchorId'] = $this->anchorId;
+ }
+ if (null !== $this->opEndTime) {
+ $res['OpEndTime'] = $this->opEndTime;
+ }
+ if (null !== $this->opStartTime) {
+ $res['OpStartTime'] = $this->opStartTime;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return roomList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AnchorId'])) {
+ $model->anchorId = $map['AnchorId'];
+ }
+ if (isset($map['OpEndTime'])) {
+ $model->opEndTime = $map['OpEndTime'];
+ }
+ if (isset($map['OpStartTime'])) {
+ $model->opStartTime = $map['OpStartTime'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataRequest.php
new file mode 100644
index 000000000..efa10ec65
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'time' => 'Time',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->time) {
+ $res['Time'] = $this->time;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeHlsLiveStreamRealTimeBpsDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Time'])) {
+ $model->time = $map['Time'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponse.php
new file mode 100644
index 000000000..4472cd5c2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeHlsLiveStreamRealTimeBpsDataResponse
+ */
+ 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 = DescribeHlsLiveStreamRealTimeBpsDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody.php
new file mode 100644
index 000000000..f41378bdc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody.php
@@ -0,0 +1,84 @@
+ 'RequestId',
+ 'time' => 'Time',
+ 'usageData' => 'UsageData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->time) {
+ $res['Time'] = $this->time;
+ }
+ if (null !== $this->usageData) {
+ $res['UsageData'] = [];
+ if (null !== $this->usageData && \is_array($this->usageData)) {
+ $n = 0;
+ foreach ($this->usageData as $item) {
+ $res['UsageData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeHlsLiveStreamRealTimeBpsDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Time'])) {
+ $model->time = $map['Time'];
+ }
+ if (isset($map['UsageData'])) {
+ if (!empty($map['UsageData'])) {
+ $model->usageData = [];
+ $n = 0;
+ foreach ($map['UsageData'] as $item) {
+ $model->usageData[$n++] = null !== $item ? usageData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData.php
new file mode 100644
index 000000000..0f972b93f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData.php
@@ -0,0 +1,72 @@
+ 'DomainName',
+ 'streamInfos' => 'StreamInfos',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->streamInfos) {
+ $res['StreamInfos'] = [];
+ if (null !== $this->streamInfos && \is_array($this->streamInfos)) {
+ $n = 0;
+ foreach ($this->streamInfos as $item) {
+ $res['StreamInfos'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return usageData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['StreamInfos'])) {
+ if (!empty($map['StreamInfos'])) {
+ $model->streamInfos = [];
+ $n = 0;
+ foreach ($map['StreamInfos'] as $item) {
+ $model->streamInfos[$n++] = null !== $item ? streamInfos::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos.php
new file mode 100644
index 000000000..10ded95fc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos.php
@@ -0,0 +1,72 @@
+ 'Infos',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->infos) {
+ $res['Infos'] = [];
+ if (null !== $this->infos && \is_array($this->infos)) {
+ $n = 0;
+ foreach ($this->infos as $item) {
+ $res['Infos'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Infos'])) {
+ if (!empty($map['Infos'])) {
+ $model->infos = [];
+ $n = 0;
+ foreach ($map['Infos'] as $item) {
+ $model->infos[$n++] = null !== $item ? infos::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos/infos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos/infos.php
new file mode 100644
index 000000000..7aed01028
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos/infos.php
@@ -0,0 +1,71 @@
+ 'DownFlow',
+ 'online' => 'Online',
+ 'rate' => 'Rate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->downFlow) {
+ $res['DownFlow'] = $this->downFlow;
+ }
+ if (null !== $this->online) {
+ $res['Online'] = $this->online;
+ }
+ if (null !== $this->rate) {
+ $res['Rate'] = $this->rate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return infos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DownFlow'])) {
+ $model->downFlow = $map['DownFlow'];
+ }
+ if (isset($map['Online'])) {
+ $model->online = $map['Online'];
+ }
+ if (isset($map['Rate'])) {
+ $model->rate = $map['Rate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceRequest.php
new file mode 100644
index 000000000..2f527fb80
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'htmlResourceId' => 'HtmlResourceId',
+ 'htmlUrl' => 'htmlUrl',
+ 'casterId' => 'CasterId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->htmlResourceId) {
+ $res['HtmlResourceId'] = $this->htmlResourceId;
+ }
+ if (null !== $this->htmlUrl) {
+ $res['htmlUrl'] = $this->htmlUrl;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeHtmlResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['HtmlResourceId'])) {
+ $model->htmlResourceId = $map['HtmlResourceId'];
+ }
+ if (isset($map['htmlUrl'])) {
+ $model->htmlUrl = $map['htmlUrl'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponse.php
new file mode 100644
index 000000000..1d1f2e02f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeHtmlResourceResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeHtmlResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody.php
new file mode 100644
index 000000000..ee4076769
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'htmlResource' => 'HtmlResource',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->htmlResource) {
+ $res['HtmlResource'] = null !== $this->htmlResource ? $this->htmlResource->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeHtmlResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['HtmlResource'])) {
+ $model->htmlResource = htmlResource::fromMap($map['HtmlResource']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody/htmlResource.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody/htmlResource.php
new file mode 100644
index 000000000..5aeb2eb85
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody/htmlResource.php
@@ -0,0 +1,107 @@
+ 'HtmlUrl',
+ 'casterId' => 'CasterId',
+ 'streamId' => 'StreamId',
+ 'config' => 'Config',
+ 'htmlResourceId' => 'HtmlResourceId',
+ 'htmlContent' => 'HtmlContent',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->htmlUrl) {
+ $res['HtmlUrl'] = $this->htmlUrl;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->streamId) {
+ $res['StreamId'] = $this->streamId;
+ }
+ if (null !== $this->config) {
+ $res['Config'] = $this->config;
+ }
+ if (null !== $this->htmlResourceId) {
+ $res['HtmlResourceId'] = $this->htmlResourceId;
+ }
+ if (null !== $this->htmlContent) {
+ $res['HtmlContent'] = $this->htmlContent;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return htmlResource
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HtmlUrl'])) {
+ $model->htmlUrl = $map['HtmlUrl'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['StreamId'])) {
+ $model->streamId = $map['StreamId'];
+ }
+ if (isset($map['Config'])) {
+ $model->config = $map['Config'];
+ }
+ if (isset($map['HtmlResourceId'])) {
+ $model->htmlResourceId = $map['HtmlResourceId'];
+ }
+ if (isset($map['HtmlContent'])) {
+ $model->htmlContent = $map['HtmlContent'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigRequest.php
new file mode 100644
index 000000000..c1d044d72
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'domainName' => 'DomainName',
+ 'appName' => 'AppName',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveAsrConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponse.php
new file mode 100644
index 000000000..a6c8155e6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveAsrConfigResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeLiveAsrConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody.php
new file mode 100644
index 000000000..b7da67d48
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'liveAsrConfig' => 'LiveAsrConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->liveAsrConfig) {
+ $res['LiveAsrConfig'] = null !== $this->liveAsrConfig ? $this->liveAsrConfig->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveAsrConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['LiveAsrConfig'])) {
+ $model->liveAsrConfig = liveAsrConfig::fromMap($map['LiveAsrConfig']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig.php
new file mode 100644
index 000000000..23ec69a29
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig.php
@@ -0,0 +1,60 @@
+ 'LiveAsrConfigList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAsrConfigList) {
+ $res['LiveAsrConfigList'] = [];
+ if (null !== $this->liveAsrConfigList && \is_array($this->liveAsrConfigList)) {
+ $n = 0;
+ foreach ($this->liveAsrConfigList as $item) {
+ $res['LiveAsrConfigList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAsrConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAsrConfigList'])) {
+ if (!empty($map['LiveAsrConfigList'])) {
+ $model->liveAsrConfigList = [];
+ $n = 0;
+ foreach ($map['LiveAsrConfigList'] as $item) {
+ $model->liveAsrConfigList[$n++] = null !== $item ? liveAsrConfigList::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig/liveAsrConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig/liveAsrConfigList.php
new file mode 100644
index 000000000..4c4bae138
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig/liveAsrConfigList.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'mnsRegion' => 'MnsRegion',
+ 'streamName' => 'StreamName',
+ 'httpCallbackURL' => 'HttpCallbackURL',
+ 'domainName' => 'DomainName',
+ 'period' => 'Period',
+ 'mnsTopic' => 'MnsTopic',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->mnsRegion) {
+ $res['MnsRegion'] = $this->mnsRegion;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->httpCallbackURL) {
+ $res['HttpCallbackURL'] = $this->httpCallbackURL;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->period) {
+ $res['Period'] = $this->period;
+ }
+ if (null !== $this->mnsTopic) {
+ $res['MnsTopic'] = $this->mnsTopic;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAsrConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['MnsRegion'])) {
+ $model->mnsRegion = $map['MnsRegion'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['HttpCallbackURL'])) {
+ $model->httpCallbackURL = $map['HttpCallbackURL'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Period'])) {
+ $model->period = $map['Period'];
+ }
+ if (isset($map['MnsTopic'])) {
+ $model->mnsTopic = $map['MnsTopic'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigRequest.php
new file mode 100644
index 000000000..0d38fb1ae
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveAudioAuditConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponse.php
new file mode 100644
index 000000000..42bb5ff6a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveAudioAuditConfigResponse
+ */
+ 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 = DescribeLiveAudioAuditConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody.php
new file mode 100644
index 000000000..db76c361b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveAudioAuditConfigList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAudioAuditConfigList) {
+ $res['LiveAudioAuditConfigList'] = null !== $this->liveAudioAuditConfigList ? $this->liveAudioAuditConfigList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveAudioAuditConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAudioAuditConfigList'])) {
+ $model->liveAudioAuditConfigList = liveAudioAuditConfigList::fromMap($map['LiveAudioAuditConfigList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList.php
new file mode 100644
index 000000000..8a249ef16
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList.php
@@ -0,0 +1,60 @@
+ 'LiveAudioAuditConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAudioAuditConfig) {
+ $res['LiveAudioAuditConfig'] = [];
+ if (null !== $this->liveAudioAuditConfig && \is_array($this->liveAudioAuditConfig)) {
+ $n = 0;
+ foreach ($this->liveAudioAuditConfig as $item) {
+ $res['LiveAudioAuditConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAudioAuditConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAudioAuditConfig'])) {
+ if (!empty($map['LiveAudioAuditConfig'])) {
+ $model->liveAudioAuditConfig = [];
+ $n = 0;
+ foreach ($map['LiveAudioAuditConfig'] as $item) {
+ $model->liveAudioAuditConfig[$n++] = null !== $item ? liveAudioAuditConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig.php
new file mode 100644
index 000000000..098c754ee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig.php
@@ -0,0 +1,96 @@
+ 'AppName',
+ 'bizType' => 'BizType',
+ 'domainName' => 'DomainName',
+ 'scenes' => 'Scenes',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->bizType) {
+ $res['BizType'] = $this->bizType;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->scenes) {
+ $res['Scenes'] = null !== $this->scenes ? $this->scenes->toMap() : null;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAudioAuditConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['BizType'])) {
+ $model->bizType = $map['BizType'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Scenes'])) {
+ $model->scenes = scenes::fromMap($map['Scenes']);
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig/scenes.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig/scenes.php
new file mode 100644
index 000000000..2b5dadcd3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig/scenes.php
@@ -0,0 +1,49 @@
+ 'scene',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->scene) {
+ $res['scene'] = $this->scene;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return scenes
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['scene'])) {
+ if (!empty($map['scene'])) {
+ $model->scene = $map['scene'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigRequest.php
new file mode 100644
index 000000000..d63356fd7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveAudioAuditNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponse.php
new file mode 100644
index 000000000..2d070b334
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveAudioAuditNotifyConfigResponse
+ */
+ 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 = DescribeLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody.php
new file mode 100644
index 000000000..2ec917f6a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveAudioAuditNotifyConfigList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAudioAuditNotifyConfigList) {
+ $res['LiveAudioAuditNotifyConfigList'] = null !== $this->liveAudioAuditNotifyConfigList ? $this->liveAudioAuditNotifyConfigList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveAudioAuditNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAudioAuditNotifyConfigList'])) {
+ $model->liveAudioAuditNotifyConfigList = liveAudioAuditNotifyConfigList::fromMap($map['LiveAudioAuditNotifyConfigList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList.php
new file mode 100644
index 000000000..dde714df3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList.php
@@ -0,0 +1,60 @@
+ 'LiveAudioAuditNotifyConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAudioAuditNotifyConfig) {
+ $res['LiveAudioAuditNotifyConfig'] = [];
+ if (null !== $this->liveAudioAuditNotifyConfig && \is_array($this->liveAudioAuditNotifyConfig)) {
+ $n = 0;
+ foreach ($this->liveAudioAuditNotifyConfig as $item) {
+ $res['LiveAudioAuditNotifyConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAudioAuditNotifyConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAudioAuditNotifyConfig'])) {
+ if (!empty($map['LiveAudioAuditNotifyConfig'])) {
+ $model->liveAudioAuditNotifyConfig = [];
+ $n = 0;
+ foreach ($map['LiveAudioAuditNotifyConfig'] as $item) {
+ $model->liveAudioAuditNotifyConfig[$n++] = null !== $item ? liveAudioAuditNotifyConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList/liveAudioAuditNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList/liveAudioAuditNotifyConfig.php
new file mode 100644
index 000000000..a8cca0ce5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList/liveAudioAuditNotifyConfig.php
@@ -0,0 +1,71 @@
+ 'Callback',
+ 'callbackTemplate' => 'CallbackTemplate',
+ 'domainName' => 'DomainName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callback) {
+ $res['Callback'] = $this->callback;
+ }
+ if (null !== $this->callbackTemplate) {
+ $res['CallbackTemplate'] = $this->callbackTemplate;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAudioAuditNotifyConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Callback'])) {
+ $model->callback = $map['Callback'];
+ }
+ if (isset($map['CallbackTemplate'])) {
+ $model->callbackTemplate = $map['CallbackTemplate'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailRequest.php
new file mode 100644
index 000000000..8e46d9862
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailRequest.php
@@ -0,0 +1,71 @@
+ 'CertName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveCertificateDetailRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponse.php
new file mode 100644
index 000000000..7442a59cd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveCertificateDetailResponse
+ */
+ 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 = DescribeLiveCertificateDetailResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponseBody.php
new file mode 100644
index 000000000..9425bfe80
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponseBody.php
@@ -0,0 +1,83 @@
+ 'Cert',
+ 'certId' => 'CertId',
+ 'certName' => 'CertName',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cert) {
+ $res['Cert'] = $this->cert;
+ }
+ if (null !== $this->certId) {
+ $res['CertId'] = $this->certId;
+ }
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveCertificateDetailResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Cert'])) {
+ $model->cert = $map['Cert'];
+ }
+ if (isset($map['CertId'])) {
+ $model->certId = $map['CertId'];
+ }
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListRequest.php
new file mode 100644
index 000000000..630772422
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveCertificateListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponse.php
new file mode 100644
index 000000000..ae25532c5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveCertificateListResponse
+ */
+ 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 = DescribeLiveCertificateListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody.php
new file mode 100644
index 000000000..04051d33c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody.php
@@ -0,0 +1,60 @@
+ 'CertificateListModel',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certificateListModel) {
+ $res['CertificateListModel'] = null !== $this->certificateListModel ? $this->certificateListModel->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveCertificateListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertificateListModel'])) {
+ $model->certificateListModel = certificateListModel::fromMap($map['CertificateListModel']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel.php
new file mode 100644
index 000000000..0cf2e4d8d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel.php
@@ -0,0 +1,60 @@
+ 'CertList',
+ 'count' => 'Count',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certList) {
+ $res['CertList'] = null !== $this->certList ? $this->certList->toMap() : null;
+ }
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return certificateListModel
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertList'])) {
+ $model->certList = certList::fromMap($map['CertList']);
+ }
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList.php
new file mode 100644
index 000000000..5bc9d55eb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList.php
@@ -0,0 +1,60 @@
+ 'Cert',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cert) {
+ $res['Cert'] = [];
+ if (null !== $this->cert && \is_array($this->cert)) {
+ $n = 0;
+ foreach ($this->cert as $item) {
+ $res['Cert'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return certList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Cert'])) {
+ if (!empty($map['Cert'])) {
+ $model->cert = [];
+ $n = 0;
+ foreach ($map['Cert'] as $item) {
+ $model->cert[$n++] = null !== $item ? cert::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList/cert.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList/cert.php
new file mode 100644
index 000000000..02b6edb77
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList/cert.php
@@ -0,0 +1,107 @@
+ 'CertId',
+ 'certName' => 'CertName',
+ 'common' => 'Common',
+ 'fingerprint' => 'Fingerprint',
+ 'issuer' => 'Issuer',
+ 'lastTime' => 'LastTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certId) {
+ $res['CertId'] = $this->certId;
+ }
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->common) {
+ $res['Common'] = $this->common;
+ }
+ if (null !== $this->fingerprint) {
+ $res['Fingerprint'] = $this->fingerprint;
+ }
+ if (null !== $this->issuer) {
+ $res['Issuer'] = $this->issuer;
+ }
+ if (null !== $this->lastTime) {
+ $res['LastTime'] = $this->lastTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return cert
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertId'])) {
+ $model->certId = $map['CertId'];
+ }
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['Common'])) {
+ $model->common = $map['Common'];
+ }
+ if (isset($map['Fingerprint'])) {
+ $model->fingerprint = $map['Fingerprint'];
+ }
+ if (isset($map['Issuer'])) {
+ $model->issuer = $map['Issuer'];
+ }
+ if (isset($map['LastTime'])) {
+ $model->lastTime = $map['LastTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigRequest.php
new file mode 100644
index 000000000..354846f04
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDetectNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponse.php
new file mode 100644
index 000000000..87683f60c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDetectNotifyConfigResponse
+ */
+ 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 = DescribeLiveDetectNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody.php
new file mode 100644
index 000000000..b54f3444a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveDetectNotifyConfig',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveDetectNotifyConfig) {
+ $res['LiveDetectNotifyConfig'] = null !== $this->liveDetectNotifyConfig ? $this->liveDetectNotifyConfig->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDetectNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveDetectNotifyConfig'])) {
+ $model->liveDetectNotifyConfig = liveDetectNotifyConfig::fromMap($map['LiveDetectNotifyConfig']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody/liveDetectNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody/liveDetectNotifyConfig.php
new file mode 100644
index 000000000..2e68d6e22
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody/liveDetectNotifyConfig.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'notifyUrl' => 'NotifyUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveDetectNotifyConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataRequest.php
new file mode 100644
index 000000000..0c46a7904
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataRequest.php
@@ -0,0 +1,155 @@
+ 'App',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'fee' => 'Fee',
+ 'ownerId' => 'OwnerId',
+ 'region' => 'Region',
+ 'scene' => 'Scene',
+ 'splitBy' => 'SplitBy',
+ 'startTime' => 'StartTime',
+ 'stream' => 'Stream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->fee) {
+ $res['Fee'] = $this->fee;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->scene) {
+ $res['Scene'] = $this->scene;
+ }
+ if (null !== $this->splitBy) {
+ $res['SplitBy'] = $this->splitBy;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDetectPornDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Fee'])) {
+ $model->fee = $map['Fee'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['Scene'])) {
+ $model->scene = $map['Scene'];
+ }
+ if (isset($map['SplitBy'])) {
+ $model->splitBy = $map['SplitBy'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponse.php
new file mode 100644
index 000000000..5b0d55980
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDetectPornDataResponse
+ */
+ 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 = DescribeLiveDetectPornDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody.php
new file mode 100644
index 000000000..12f79562b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'DetectPornData',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->detectPornData) {
+ $res['DetectPornData'] = null !== $this->detectPornData ? $this->detectPornData->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDetectPornDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DetectPornData'])) {
+ $model->detectPornData = detectPornData::fromMap($map['DetectPornData']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData.php
new file mode 100644
index 000000000..ec71c2fad
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return detectPornData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData/dataModule.php
new file mode 100644
index 000000000..dd4b4ccda
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData/dataModule.php
@@ -0,0 +1,131 @@
+ 'App',
+ 'count' => 'Count',
+ 'domain' => 'Domain',
+ 'fee' => 'Fee',
+ 'region' => 'Region',
+ 'scene' => 'Scene',
+ 'stream' => 'Stream',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->fee) {
+ $res['Fee'] = $this->fee;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->scene) {
+ $res['Scene'] = $this->scene;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['Fee'])) {
+ $model->fee = $map['Fee'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['Scene'])) {
+ $model->scene = $map['Scene'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerRequest.php
new file mode 100644
index 000000000..32324c1d5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerRequest.php
@@ -0,0 +1,131 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ispNameEn' => 'IspNameEn',
+ 'layer' => 'Layer',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->layer) {
+ $res['Layer'] = $this->layer;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainBpsDataByLayerRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['Layer'])) {
+ $model->layer = $map['Layer'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponse.php
new file mode 100644
index 000000000..1ad316bc8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainBpsDataByLayerResponse
+ */
+ 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 = DescribeLiveDomainBpsDataByLayerResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody.php
new file mode 100644
index 000000000..a61507c45
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody.php
@@ -0,0 +1,72 @@
+ 'BpsDataInterval',
+ 'dataInterval' => 'DataInterval',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bpsDataInterval) {
+ $res['BpsDataInterval'] = null !== $this->bpsDataInterval ? $this->bpsDataInterval->toMap() : null;
+ }
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainBpsDataByLayerResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BpsDataInterval'])) {
+ $model->bpsDataInterval = bpsDataInterval::fromMap($map['BpsDataInterval']);
+ }
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval.php
new file mode 100644
index 000000000..ceaddcaf1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return bpsDataInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval/dataModule.php
new file mode 100644
index 000000000..55d8ecb8d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval/dataModule.php
@@ -0,0 +1,71 @@
+ 'TimeStamp',
+ 'trafficValue' => 'TrafficValue',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->trafficValue) {
+ $res['TrafficValue'] = $this->trafficValue;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['TrafficValue'])) {
+ $model->trafficValue = $map['TrafficValue'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampRequest.php
new file mode 100644
index 000000000..db44b34e3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'ispNames' => 'IspNames',
+ 'locationNames' => 'LocationNames',
+ 'ownerId' => 'OwnerId',
+ 'timePoint' => 'TimePoint',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ispNames) {
+ $res['IspNames'] = $this->ispNames;
+ }
+ if (null !== $this->locationNames) {
+ $res['LocationNames'] = $this->locationNames;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->timePoint) {
+ $res['TimePoint'] = $this->timePoint;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainBpsDataByTimeStampRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['IspNames'])) {
+ $model->ispNames = $map['IspNames'];
+ }
+ if (isset($map['LocationNames'])) {
+ $model->locationNames = $map['LocationNames'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['TimePoint'])) {
+ $model->timePoint = $map['TimePoint'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponse.php
new file mode 100644
index 000000000..091df8d4b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainBpsDataByTimeStampResponse
+ */
+ 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 = DescribeLiveDomainBpsDataByTimeStampResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody.php
new file mode 100644
index 000000000..84acdcd6f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody.php
@@ -0,0 +1,84 @@
+ 'BpsDataList',
+ 'domainName' => 'DomainName',
+ 'requestId' => 'RequestId',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bpsDataList) {
+ $res['BpsDataList'] = null !== $this->bpsDataList ? $this->bpsDataList->toMap() : null;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainBpsDataByTimeStampResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BpsDataList'])) {
+ $model->bpsDataList = bpsDataList::fromMap($map['BpsDataList']);
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList.php
new file mode 100644
index 000000000..4440a6108
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList.php
@@ -0,0 +1,60 @@
+ 'BpsDataModel',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bpsDataModel) {
+ $res['BpsDataModel'] = [];
+ if (null !== $this->bpsDataModel && \is_array($this->bpsDataModel)) {
+ $n = 0;
+ foreach ($this->bpsDataModel as $item) {
+ $res['BpsDataModel'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return bpsDataList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BpsDataModel'])) {
+ if (!empty($map['BpsDataModel'])) {
+ $model->bpsDataModel = [];
+ $n = 0;
+ foreach ($map['BpsDataModel'] as $item) {
+ $model->bpsDataModel[$n++] = null !== $item ? bpsDataModel::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList/bpsDataModel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList/bpsDataModel.php
new file mode 100644
index 000000000..2737465d3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList/bpsDataModel.php
@@ -0,0 +1,83 @@
+ 'Bps',
+ 'ispName' => 'IspName',
+ 'locationName' => 'LocationName',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bps) {
+ $res['Bps'] = $this->bps;
+ }
+ if (null !== $this->ispName) {
+ $res['IspName'] = $this->ispName;
+ }
+ if (null !== $this->locationName) {
+ $res['LocationName'] = $this->locationName;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return bpsDataModel
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Bps'])) {
+ $model->bps = $map['Bps'];
+ }
+ if (isset($map['IspName'])) {
+ $model->ispName = $map['IspName'];
+ }
+ if (isset($map['LocationName'])) {
+ $model->locationName = $map['LocationName'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataRequest.php
new file mode 100644
index 000000000..b587c408d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataRequest.php
@@ -0,0 +1,119 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ispNameEn' => 'IspNameEn',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainBpsDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponse.php
new file mode 100644
index 000000000..2dc4e409e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainBpsDataResponse
+ */
+ 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 = DescribeLiveDomainBpsDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody.php
new file mode 100644
index 000000000..ff0981ab8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'BpsDataPerInterval',
+ 'dataInterval' => 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bpsDataPerInterval) {
+ $res['BpsDataPerInterval'] = null !== $this->bpsDataPerInterval ? $this->bpsDataPerInterval->toMap() : null;
+ }
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainBpsDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BpsDataPerInterval'])) {
+ $model->bpsDataPerInterval = bpsDataPerInterval::fromMap($map['BpsDataPerInterval']);
+ }
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval.php
new file mode 100644
index 000000000..aaa967e57
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return bpsDataPerInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval/dataModule.php
new file mode 100644
index 000000000..65aba7c54
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval/dataModule.php
@@ -0,0 +1,83 @@
+ 'BpsValue',
+ 'httpBpsValue' => 'HttpBpsValue',
+ 'httpsBpsValue' => 'HttpsBpsValue',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bpsValue) {
+ $res['BpsValue'] = $this->bpsValue;
+ }
+ if (null !== $this->httpBpsValue) {
+ $res['HttpBpsValue'] = $this->httpBpsValue;
+ }
+ if (null !== $this->httpsBpsValue) {
+ $res['HttpsBpsValue'] = $this->httpsBpsValue;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BpsValue'])) {
+ $model->bpsValue = $map['BpsValue'];
+ }
+ if (isset($map['HttpBpsValue'])) {
+ $model->httpBpsValue = $map['HttpBpsValue'];
+ }
+ if (isset($map['HttpsBpsValue'])) {
+ $model->httpsBpsValue = $map['HttpsBpsValue'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoRequest.php
new file mode 100644
index 000000000..f23ff8461
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainCertificateInfoRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponse.php
new file mode 100644
index 000000000..af37291f5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainCertificateInfoResponse
+ */
+ 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 = DescribeLiveDomainCertificateInfoResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody.php
new file mode 100644
index 000000000..ed1b93eb2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody.php
@@ -0,0 +1,60 @@
+ 'CertInfos',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certInfos) {
+ $res['CertInfos'] = null !== $this->certInfos ? $this->certInfos->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainCertificateInfoResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertInfos'])) {
+ $model->certInfos = certInfos::fromMap($map['CertInfos']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos.php
new file mode 100644
index 000000000..2e868fd5c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos.php
@@ -0,0 +1,60 @@
+ 'CertInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certInfo) {
+ $res['CertInfo'] = [];
+ if (null !== $this->certInfo && \is_array($this->certInfo)) {
+ $n = 0;
+ foreach ($this->certInfo as $item) {
+ $res['CertInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return certInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertInfo'])) {
+ if (!empty($map['CertInfo'])) {
+ $model->certInfo = [];
+ $n = 0;
+ foreach ($map['CertInfo'] as $item) {
+ $model->certInfo[$n++] = null !== $item ? certInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos/certInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos/certInfo.php
new file mode 100644
index 000000000..849e24e6e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos/certInfo.php
@@ -0,0 +1,155 @@
+ 'CertDomainName',
+ 'certExpireTime' => 'CertExpireTime',
+ 'certLife' => 'CertLife',
+ 'certName' => 'CertName',
+ 'certOrg' => 'CertOrg',
+ 'certType' => 'CertType',
+ 'domainName' => 'DomainName',
+ 'SSLProtocol' => 'SSLProtocol',
+ 'SSLPub' => 'SSLPub',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certDomainName) {
+ $res['CertDomainName'] = $this->certDomainName;
+ }
+ if (null !== $this->certExpireTime) {
+ $res['CertExpireTime'] = $this->certExpireTime;
+ }
+ if (null !== $this->certLife) {
+ $res['CertLife'] = $this->certLife;
+ }
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->certOrg) {
+ $res['CertOrg'] = $this->certOrg;
+ }
+ if (null !== $this->certType) {
+ $res['CertType'] = $this->certType;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->SSLProtocol) {
+ $res['SSLProtocol'] = $this->SSLProtocol;
+ }
+ if (null !== $this->SSLPub) {
+ $res['SSLPub'] = $this->SSLPub;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return certInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertDomainName'])) {
+ $model->certDomainName = $map['CertDomainName'];
+ }
+ if (isset($map['CertExpireTime'])) {
+ $model->certExpireTime = $map['CertExpireTime'];
+ }
+ if (isset($map['CertLife'])) {
+ $model->certLife = $map['CertLife'];
+ }
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['CertOrg'])) {
+ $model->certOrg = $map['CertOrg'];
+ }
+ if (isset($map['CertType'])) {
+ $model->certType = $map['CertType'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['SSLProtocol'])) {
+ $model->SSLProtocol = $map['SSLProtocol'];
+ }
+ if (isset($map['SSLPub'])) {
+ $model->SSLPub = $map['SSLPub'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsRequest.php
new file mode 100644
index 000000000..923b6d4ea
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsRequest.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'functionNames' => 'FunctionNames',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->functionNames) {
+ $res['FunctionNames'] = $this->functionNames;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainConfigsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['FunctionNames'])) {
+ $model->functionNames = $map['FunctionNames'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponse.php
new file mode 100644
index 000000000..188d8ebe5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainConfigsResponse
+ */
+ 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 = DescribeLiveDomainConfigsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody.php
new file mode 100644
index 000000000..b0e6e2e13
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody.php
@@ -0,0 +1,60 @@
+ 'DomainConfigs',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainConfigs) {
+ $res['DomainConfigs'] = null !== $this->domainConfigs ? $this->domainConfigs->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainConfigsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainConfigs'])) {
+ $model->domainConfigs = domainConfigs::fromMap($map['DomainConfigs']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs.php
new file mode 100644
index 000000000..59f253cf1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs.php
@@ -0,0 +1,60 @@
+ 'DomainConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainConfig) {
+ $res['DomainConfig'] = [];
+ if (null !== $this->domainConfig && \is_array($this->domainConfig)) {
+ $n = 0;
+ foreach ($this->domainConfig as $item) {
+ $res['DomainConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainConfigs
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainConfig'])) {
+ if (!empty($map['DomainConfig'])) {
+ $model->domainConfig = [];
+ $n = 0;
+ foreach ($map['DomainConfig'] as $item) {
+ $model->domainConfig[$n++] = null !== $item ? domainConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig.php
new file mode 100644
index 000000000..a454c9451
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig.php
@@ -0,0 +1,84 @@
+ 'ConfigId',
+ 'functionArgs' => 'FunctionArgs',
+ 'functionName' => 'FunctionName',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->configId) {
+ $res['ConfigId'] = $this->configId;
+ }
+ if (null !== $this->functionArgs) {
+ $res['FunctionArgs'] = null !== $this->functionArgs ? $this->functionArgs->toMap() : null;
+ }
+ if (null !== $this->functionName) {
+ $res['FunctionName'] = $this->functionName;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ConfigId'])) {
+ $model->configId = $map['ConfigId'];
+ }
+ if (isset($map['FunctionArgs'])) {
+ $model->functionArgs = functionArgs::fromMap($map['FunctionArgs']);
+ }
+ if (isset($map['FunctionName'])) {
+ $model->functionName = $map['FunctionName'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs.php
new file mode 100644
index 000000000..e9da3571b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs.php
@@ -0,0 +1,60 @@
+ 'FunctionArg',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->functionArg) {
+ $res['FunctionArg'] = [];
+ if (null !== $this->functionArg && \is_array($this->functionArg)) {
+ $n = 0;
+ foreach ($this->functionArg as $item) {
+ $res['FunctionArg'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return functionArgs
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FunctionArg'])) {
+ if (!empty($map['FunctionArg'])) {
+ $model->functionArg = [];
+ $n = 0;
+ foreach ($map['FunctionArg'] as $item) {
+ $model->functionArg[$n++] = null !== $item ? functionArg::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs/functionArg.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs/functionArg.php
new file mode 100644
index 000000000..6720f356e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs/functionArg.php
@@ -0,0 +1,59 @@
+ 'ArgName',
+ 'argValue' => 'ArgValue',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->argName) {
+ $res['ArgName'] = $this->argName;
+ }
+ if (null !== $this->argValue) {
+ $res['ArgValue'] = $this->argValue;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return functionArg
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ArgName'])) {
+ $model->argName = $map['ArgName'];
+ }
+ if (isset($map['ArgValue'])) {
+ $model->argValue = $map['ArgValue'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailRequest.php
new file mode 100644
index 000000000..b151bf4f8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainDetailRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponse.php
new file mode 100644
index 000000000..b8402f1b3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainDetailResponse
+ */
+ 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 = DescribeLiveDomainDetailResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody.php
new file mode 100644
index 000000000..20bf80332
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody.php
@@ -0,0 +1,60 @@
+ 'DomainDetail',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainDetail) {
+ $res['DomainDetail'] = null !== $this->domainDetail ? $this->domainDetail->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainDetailResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainDetail'])) {
+ $model->domainDetail = domainDetail::fromMap($map['DomainDetail']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody/domainDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody/domainDetail.php
new file mode 100644
index 000000000..cf4c43e92
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody/domainDetail.php
@@ -0,0 +1,179 @@
+ 'CertName',
+ 'cname' => 'Cname',
+ 'description' => 'Description',
+ 'domainName' => 'DomainName',
+ 'domainStatus' => 'DomainStatus',
+ 'gmtCreated' => 'GmtCreated',
+ 'gmtModified' => 'GmtModified',
+ 'liveDomainType' => 'LiveDomainType',
+ 'region' => 'Region',
+ 'SSLProtocol' => 'SSLProtocol',
+ 'SSLPub' => 'SSLPub',
+ 'scope' => 'Scope',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->cname) {
+ $res['Cname'] = $this->cname;
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->domainStatus) {
+ $res['DomainStatus'] = $this->domainStatus;
+ }
+ if (null !== $this->gmtCreated) {
+ $res['GmtCreated'] = $this->gmtCreated;
+ }
+ if (null !== $this->gmtModified) {
+ $res['GmtModified'] = $this->gmtModified;
+ }
+ if (null !== $this->liveDomainType) {
+ $res['LiveDomainType'] = $this->liveDomainType;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->SSLProtocol) {
+ $res['SSLProtocol'] = $this->SSLProtocol;
+ }
+ if (null !== $this->SSLPub) {
+ $res['SSLPub'] = $this->SSLPub;
+ }
+ if (null !== $this->scope) {
+ $res['Scope'] = $this->scope;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainDetail
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['Cname'])) {
+ $model->cname = $map['Cname'];
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['DomainStatus'])) {
+ $model->domainStatus = $map['DomainStatus'];
+ }
+ if (isset($map['GmtCreated'])) {
+ $model->gmtCreated = $map['GmtCreated'];
+ }
+ if (isset($map['GmtModified'])) {
+ $model->gmtModified = $map['GmtModified'];
+ }
+ if (isset($map['LiveDomainType'])) {
+ $model->liveDomainType = $map['LiveDomainType'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['SSLProtocol'])) {
+ $model->SSLProtocol = $map['SSLProtocol'];
+ }
+ if (isset($map['SSLPub'])) {
+ $model->SSLPub = $map['SSLPub'];
+ }
+ if (isset($map['Scope'])) {
+ $model->scope = $map['Scope'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataRequest.php
new file mode 100644
index 000000000..c2c211f84
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'queryTime' => 'QueryTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->queryTime) {
+ $res['QueryTime'] = $this->queryTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainFrameRateAndBitRateDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['QueryTime'])) {
+ $model->queryTime = $map['QueryTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponse.php
new file mode 100644
index 000000000..f85a499a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainFrameRateAndBitRateDataResponse
+ */
+ 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 = DescribeLiveDomainFrameRateAndBitRateDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody.php
new file mode 100644
index 000000000..0b368127b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'FrameRateAndBitRateInfos',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->frameRateAndBitRateInfos) {
+ $res['FrameRateAndBitRateInfos'] = null !== $this->frameRateAndBitRateInfos ? $this->frameRateAndBitRateInfos->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainFrameRateAndBitRateDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FrameRateAndBitRateInfos'])) {
+ $model->frameRateAndBitRateInfos = frameRateAndBitRateInfos::fromMap($map['FrameRateAndBitRateInfos']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos.php
new file mode 100644
index 000000000..a5c356288
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos.php
@@ -0,0 +1,60 @@
+ 'FrameRateAndBitRateInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->frameRateAndBitRateInfo) {
+ $res['FrameRateAndBitRateInfo'] = [];
+ if (null !== $this->frameRateAndBitRateInfo && \is_array($this->frameRateAndBitRateInfo)) {
+ $n = 0;
+ foreach ($this->frameRateAndBitRateInfo as $item) {
+ $res['FrameRateAndBitRateInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return frameRateAndBitRateInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FrameRateAndBitRateInfo'])) {
+ if (!empty($map['FrameRateAndBitRateInfo'])) {
+ $model->frameRateAndBitRateInfo = [];
+ $n = 0;
+ foreach ($map['FrameRateAndBitRateInfo'] as $item) {
+ $model->frameRateAndBitRateInfo[$n++] = null !== $item ? frameRateAndBitRateInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php
new file mode 100644
index 000000000..e3f6e57e4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php
@@ -0,0 +1,83 @@
+ 'AudioFrameRate',
+ 'bitRate' => 'BitRate',
+ 'streamUrl' => 'StreamUrl',
+ 'videoFrameRate' => 'VideoFrameRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioFrameRate) {
+ $res['AudioFrameRate'] = $this->audioFrameRate;
+ }
+ if (null !== $this->bitRate) {
+ $res['BitRate'] = $this->bitRate;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+ if (null !== $this->videoFrameRate) {
+ $res['VideoFrameRate'] = $this->videoFrameRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return frameRateAndBitRateInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioFrameRate'])) {
+ $model->audioFrameRate = $map['AudioFrameRate'];
+ }
+ if (isset($map['BitRate'])) {
+ $model->bitRate = $map['BitRate'];
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+ if (isset($map['VideoFrameRate'])) {
+ $model->videoFrameRate = $map['VideoFrameRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitRequest.php
new file mode 100644
index 000000000..d3b3ac21d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainLimitRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponse.php
new file mode 100644
index 000000000..4247874f5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainLimitResponse
+ */
+ 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 = DescribeLiveDomainLimitResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody.php
new file mode 100644
index 000000000..03057e709
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveDomainLimitList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveDomainLimitList) {
+ $res['LiveDomainLimitList'] = null !== $this->liveDomainLimitList ? $this->liveDomainLimitList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainLimitResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveDomainLimitList'])) {
+ $model->liveDomainLimitList = liveDomainLimitList::fromMap($map['LiveDomainLimitList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList.php
new file mode 100644
index 000000000..6630811d9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList.php
@@ -0,0 +1,60 @@
+ 'LiveDomainLimit',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveDomainLimit) {
+ $res['LiveDomainLimit'] = [];
+ if (null !== $this->liveDomainLimit && \is_array($this->liveDomainLimit)) {
+ $n = 0;
+ foreach ($this->liveDomainLimit as $item) {
+ $res['LiveDomainLimit'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveDomainLimitList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveDomainLimit'])) {
+ if (!empty($map['LiveDomainLimit'])) {
+ $model->liveDomainLimit = [];
+ $n = 0;
+ foreach ($map['LiveDomainLimit'] as $item) {
+ $model->liveDomainLimit[$n++] = null !== $item ? liveDomainLimit::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList/liveDomainLimit.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList/liveDomainLimit.php
new file mode 100644
index 000000000..2ddb3a580
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList/liveDomainLimit.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'limitNum' => 'LimitNum',
+ 'limitTranscodeNum' => 'LimitTranscodeNum',
+ 'limitTransferNum' => 'LimitTransferNum',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->limitNum) {
+ $res['LimitNum'] = $this->limitNum;
+ }
+ if (null !== $this->limitTranscodeNum) {
+ $res['LimitTranscodeNum'] = $this->limitTranscodeNum;
+ }
+ if (null !== $this->limitTransferNum) {
+ $res['LimitTransferNum'] = $this->limitTransferNum;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveDomainLimit
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['LimitNum'])) {
+ $model->limitNum = $map['LimitNum'];
+ }
+ if (isset($map['LimitTranscodeNum'])) {
+ $model->limitTranscodeNum = $map['LimitTranscodeNum'];
+ }
+ if (isset($map['LimitTransferNum'])) {
+ $model->limitTransferNum = $map['LimitTransferNum'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogRequest.php
new file mode 100644
index 000000000..f92fc80c0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'pageNumber' => 'PageNumber',
+ 'pageSize' => 'PageSize',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNumber) {
+ $res['PageNumber'] = $this->pageNumber;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainLogRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNumber'])) {
+ $model->pageNumber = $map['PageNumber'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponse.php
new file mode 100644
index 000000000..ff0e32d8f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainLogResponse
+ */
+ 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 = DescribeLiveDomainLogResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody.php
new file mode 100644
index 000000000..f3551feb8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody.php
@@ -0,0 +1,72 @@
+ 'DomainLogDetails',
+ 'domainName' => 'DomainName',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainLogDetails) {
+ $res['DomainLogDetails'] = null !== $this->domainLogDetails ? $this->domainLogDetails->toMap() : null;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainLogResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainLogDetails'])) {
+ $model->domainLogDetails = domainLogDetails::fromMap($map['DomainLogDetails']);
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails.php
new file mode 100644
index 000000000..a455b7aaf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails.php
@@ -0,0 +1,60 @@
+ 'DomainLogDetail',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainLogDetail) {
+ $res['DomainLogDetail'] = [];
+ if (null !== $this->domainLogDetail && \is_array($this->domainLogDetail)) {
+ $n = 0;
+ foreach ($this->domainLogDetail as $item) {
+ $res['DomainLogDetail'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainLogDetails
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainLogDetail'])) {
+ if (!empty($map['DomainLogDetail'])) {
+ $model->domainLogDetail = [];
+ $n = 0;
+ foreach ($map['DomainLogDetail'] as $item) {
+ $model->domainLogDetail[$n++] = null !== $item ? domainLogDetail::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail.php
new file mode 100644
index 000000000..eacee3838
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail.php
@@ -0,0 +1,73 @@
+ 'LogCount',
+ 'logInfos' => 'LogInfos',
+ 'pageInfos' => 'PageInfos',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->logCount) {
+ $res['LogCount'] = $this->logCount;
+ }
+ if (null !== $this->logInfos) {
+ $res['LogInfos'] = null !== $this->logInfos ? $this->logInfos->toMap() : null;
+ }
+ if (null !== $this->pageInfos) {
+ $res['PageInfos'] = null !== $this->pageInfos ? $this->pageInfos->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainLogDetail
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LogCount'])) {
+ $model->logCount = $map['LogCount'];
+ }
+ if (isset($map['LogInfos'])) {
+ $model->logInfos = logInfos::fromMap($map['LogInfos']);
+ }
+ if (isset($map['PageInfos'])) {
+ $model->pageInfos = pageInfos::fromMap($map['PageInfos']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos.php
new file mode 100644
index 000000000..dc0cfd037
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos.php
@@ -0,0 +1,60 @@
+ 'LogInfoDetail',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->logInfoDetail) {
+ $res['LogInfoDetail'] = [];
+ if (null !== $this->logInfoDetail && \is_array($this->logInfoDetail)) {
+ $n = 0;
+ foreach ($this->logInfoDetail as $item) {
+ $res['LogInfoDetail'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return logInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LogInfoDetail'])) {
+ if (!empty($map['LogInfoDetail'])) {
+ $model->logInfoDetail = [];
+ $n = 0;
+ foreach ($map['LogInfoDetail'] as $item) {
+ $model->logInfoDetail[$n++] = null !== $item ? logInfoDetail::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos/logInfoDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos/logInfoDetail.php
new file mode 100644
index 000000000..8cdbc247d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos/logInfoDetail.php
@@ -0,0 +1,95 @@
+ 'EndTime',
+ 'logName' => 'LogName',
+ 'logPath' => 'LogPath',
+ 'logSize' => 'LogSize',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->logName) {
+ $res['LogName'] = $this->logName;
+ }
+ if (null !== $this->logPath) {
+ $res['LogPath'] = $this->logPath;
+ }
+ if (null !== $this->logSize) {
+ $res['LogSize'] = $this->logSize;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return logInfoDetail
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['LogName'])) {
+ $model->logName = $map['LogName'];
+ }
+ if (isset($map['LogPath'])) {
+ $model->logPath = $map['LogPath'];
+ }
+ if (isset($map['LogSize'])) {
+ $model->logSize = $map['LogSize'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/pageInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/pageInfos.php
new file mode 100644
index 000000000..0342244a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/pageInfos.php
@@ -0,0 +1,71 @@
+ 'PageIndex',
+ 'pageSize' => 'PageSize',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pageIndex) {
+ $res['PageIndex'] = $this->pageIndex;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return pageInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PageIndex'])) {
+ $model->pageIndex = $map['PageIndex'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingRequest.php
new file mode 100644
index 000000000..cd66e8d08
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainMappingRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponse.php
new file mode 100644
index 000000000..2937702fb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainMappingResponse
+ */
+ 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 = DescribeLiveDomainMappingResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody.php
new file mode 100644
index 000000000..8003d4e45
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveDomainModels',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveDomainModels) {
+ $res['LiveDomainModels'] = null !== $this->liveDomainModels ? $this->liveDomainModels->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainMappingResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveDomainModels'])) {
+ $model->liveDomainModels = liveDomainModels::fromMap($map['LiveDomainModels']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels.php
new file mode 100644
index 000000000..7d9c3e303
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels.php
@@ -0,0 +1,60 @@
+ 'LiveDomainModel',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveDomainModel) {
+ $res['LiveDomainModel'] = [];
+ if (null !== $this->liveDomainModel && \is_array($this->liveDomainModel)) {
+ $n = 0;
+ foreach ($this->liveDomainModel as $item) {
+ $res['LiveDomainModel'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveDomainModels
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveDomainModel'])) {
+ if (!empty($map['LiveDomainModel'])) {
+ $model->liveDomainModel = [];
+ $n = 0;
+ foreach ($map['LiveDomainModel'] as $item) {
+ $model->liveDomainModel[$n++] = null !== $item ? liveDomainModel::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels/liveDomainModel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels/liveDomainModel.php
new file mode 100644
index 000000000..aa2fdf2e9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels/liveDomainModel.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveDomainModel
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumRequest.php
new file mode 100644
index 000000000..4c8a933fb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'queryTime' => 'QueryTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->queryTime) {
+ $res['QueryTime'] = $this->queryTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainOnlineUserNumRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['QueryTime'])) {
+ $model->queryTime = $map['QueryTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponse.php
new file mode 100644
index 000000000..2cc1254df
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainOnlineUserNumResponse
+ */
+ 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 = DescribeLiveDomainOnlineUserNumResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody.php
new file mode 100644
index 000000000..492038753
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody.php
@@ -0,0 +1,84 @@
+ 'OnlineUserInfo',
+ 'requestId' => 'RequestId',
+ 'streamCount' => 'StreamCount',
+ 'userCount' => 'UserCount',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->onlineUserInfo) {
+ $res['OnlineUserInfo'] = null !== $this->onlineUserInfo ? $this->onlineUserInfo->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamCount) {
+ $res['StreamCount'] = $this->streamCount;
+ }
+ if (null !== $this->userCount) {
+ $res['UserCount'] = $this->userCount;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainOnlineUserNumResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OnlineUserInfo'])) {
+ $model->onlineUserInfo = onlineUserInfo::fromMap($map['OnlineUserInfo']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamCount'])) {
+ $model->streamCount = $map['StreamCount'];
+ }
+ if (isset($map['UserCount'])) {
+ $model->userCount = $map['UserCount'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo.php
new file mode 100644
index 000000000..c2fff2bbc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo.php
@@ -0,0 +1,60 @@
+ 'LiveStreamOnlineUserNumInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamOnlineUserNumInfo) {
+ $res['LiveStreamOnlineUserNumInfo'] = [];
+ if (null !== $this->liveStreamOnlineUserNumInfo && \is_array($this->liveStreamOnlineUserNumInfo)) {
+ $n = 0;
+ foreach ($this->liveStreamOnlineUserNumInfo as $item) {
+ $res['LiveStreamOnlineUserNumInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return onlineUserInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamOnlineUserNumInfo'])) {
+ if (!empty($map['LiveStreamOnlineUserNumInfo'])) {
+ $model->liveStreamOnlineUserNumInfo = [];
+ $n = 0;
+ foreach ($map['LiveStreamOnlineUserNumInfo'] as $item) {
+ $model->liveStreamOnlineUserNumInfo[$n++] = null !== $item ? liveStreamOnlineUserNumInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo.php
new file mode 100644
index 000000000..4767c488e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo.php
@@ -0,0 +1,60 @@
+ 'Infos',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->infos) {
+ $res['Infos'] = null !== $this->infos ? $this->infos->toMap() : null;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamOnlineUserNumInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Infos'])) {
+ $model->infos = infos::fromMap($map['Infos']);
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos.php
new file mode 100644
index 000000000..1f775430a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos.php
@@ -0,0 +1,60 @@
+ 'Info',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->info) {
+ $res['Info'] = [];
+ if (null !== $this->info && \is_array($this->info)) {
+ $n = 0;
+ foreach ($this->info as $item) {
+ $res['Info'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return infos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Info'])) {
+ if (!empty($map['Info'])) {
+ $model->info = [];
+ $n = 0;
+ foreach ($map['Info'] as $item) {
+ $model->info[$n++] = null !== $item ? info::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos/info.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos/info.php
new file mode 100644
index 000000000..4a07c4f5b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos/info.php
@@ -0,0 +1,59 @@
+ 'TranscodeTemplate',
+ 'userNumber' => 'UserNumber',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->transcodeTemplate) {
+ $res['TranscodeTemplate'] = $this->transcodeTemplate;
+ }
+ if (null !== $this->userNumber) {
+ $res['UserNumber'] = $this->userNumber;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return info
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TranscodeTemplate'])) {
+ $model->transcodeTemplate = $map['TranscodeTemplate'];
+ }
+ if (isset($map['UserNumber'])) {
+ $model->userNumber = $map['UserNumber'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataRequest.php
new file mode 100644
index 000000000..85eb019f1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataRequest.php
@@ -0,0 +1,119 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ispNameEn' => 'IspNameEn',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainPushBpsDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponse.php
new file mode 100644
index 000000000..ef5330c40
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainPushBpsDataResponse
+ */
+ 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 = DescribeLiveDomainPushBpsDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody.php
new file mode 100644
index 000000000..728a521f8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'BpsDataPerInterval',
+ 'dataInterval' => 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bpsDataPerInterval) {
+ $res['BpsDataPerInterval'] = null !== $this->bpsDataPerInterval ? $this->bpsDataPerInterval->toMap() : null;
+ }
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainPushBpsDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BpsDataPerInterval'])) {
+ $model->bpsDataPerInterval = bpsDataPerInterval::fromMap($map['BpsDataPerInterval']);
+ }
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval.php
new file mode 100644
index 000000000..ed360059c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return bpsDataPerInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval/dataModule.php
new file mode 100644
index 000000000..42f81342d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval/dataModule.php
@@ -0,0 +1,59 @@
+ 'BpsValue',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bpsValue) {
+ $res['BpsValue'] = $this->bpsValue;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BpsValue'])) {
+ $model->bpsValue = $map['BpsValue'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataRequest.php
new file mode 100644
index 000000000..919e02c89
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataRequest.php
@@ -0,0 +1,119 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ispNameEn' => 'IspNameEn',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainPushTrafficDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponse.php
new file mode 100644
index 000000000..de49beb04
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainPushTrafficDataResponse
+ */
+ 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 = DescribeLiveDomainPushTrafficDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody.php
new file mode 100644
index 000000000..931657cb4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ 'trafficDataPerInterval' => 'TrafficDataPerInterval',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->trafficDataPerInterval) {
+ $res['TrafficDataPerInterval'] = null !== $this->trafficDataPerInterval ? $this->trafficDataPerInterval->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainPushTrafficDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['TrafficDataPerInterval'])) {
+ $model->trafficDataPerInterval = trafficDataPerInterval::fromMap($map['TrafficDataPerInterval']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval.php
new file mode 100644
index 000000000..01a2bae21
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return trafficDataPerInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval/dataModule.php
new file mode 100644
index 000000000..90ce6bb6d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval/dataModule.php
@@ -0,0 +1,59 @@
+ 'TimeStamp',
+ 'trafficValue' => 'TrafficValue',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->trafficValue) {
+ $res['TrafficValue'] = $this->trafficValue;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['TrafficValue'])) {
+ $model->trafficValue = $map['TrafficValue'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataRequest.php
new file mode 100644
index 000000000..aeb270f34
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataRequest.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainPvUvDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponse.php
new file mode 100644
index 000000000..8d2f09078
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainPvUvDataResponse
+ */
+ 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 = DescribeLiveDomainPvUvDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody.php
new file mode 100644
index 000000000..6476b1b8f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'pvUvDataInfos' => 'PvUvDataInfos',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->pvUvDataInfos) {
+ $res['PvUvDataInfos'] = null !== $this->pvUvDataInfos ? $this->pvUvDataInfos->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainPvUvDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['PvUvDataInfos'])) {
+ $model->pvUvDataInfos = pvUvDataInfos::fromMap($map['PvUvDataInfos']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos.php
new file mode 100644
index 000000000..4cef0fe10
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos.php
@@ -0,0 +1,60 @@
+ 'PvUvDataInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pvUvDataInfo) {
+ $res['PvUvDataInfo'] = [];
+ if (null !== $this->pvUvDataInfo && \is_array($this->pvUvDataInfo)) {
+ $n = 0;
+ foreach ($this->pvUvDataInfo as $item) {
+ $res['PvUvDataInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return pvUvDataInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PvUvDataInfo'])) {
+ if (!empty($map['PvUvDataInfo'])) {
+ $model->pvUvDataInfo = [];
+ $n = 0;
+ foreach ($map['PvUvDataInfo'] as $item) {
+ $model->pvUvDataInfo[$n++] = null !== $item ? pvUvDataInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos/pvUvDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos/pvUvDataInfo.php
new file mode 100644
index 000000000..faec57386
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos/pvUvDataInfo.php
@@ -0,0 +1,71 @@
+ 'PV',
+ 'timeStamp' => 'TimeStamp',
+ 'UV' => 'UV',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->PV) {
+ $res['PV'] = $this->PV;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->UV) {
+ $res['UV'] = $this->UV;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return pvUvDataInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PV'])) {
+ $model->PV = $map['PV'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['UV'])) {
+ $model->UV = $map['UV'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataRequest.php
new file mode 100644
index 000000000..a7e465ba1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ispNameEn' => 'IspNameEn',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealTimeBpsDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponse.php
new file mode 100644
index 000000000..d78f56ffc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainRealTimeBpsDataResponse
+ */
+ 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 = DescribeLiveDomainRealTimeBpsDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody.php
new file mode 100644
index 000000000..89ab73bdf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'realTimeBpsDataPerInterval' => 'RealTimeBpsDataPerInterval',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->realTimeBpsDataPerInterval) {
+ $res['RealTimeBpsDataPerInterval'] = null !== $this->realTimeBpsDataPerInterval ? $this->realTimeBpsDataPerInterval->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealTimeBpsDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RealTimeBpsDataPerInterval'])) {
+ $model->realTimeBpsDataPerInterval = realTimeBpsDataPerInterval::fromMap($map['RealTimeBpsDataPerInterval']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval.php
new file mode 100644
index 000000000..84df73fc3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return realTimeBpsDataPerInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval/dataModule.php
new file mode 100644
index 000000000..fd8a4809a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval/dataModule.php
@@ -0,0 +1,59 @@
+ 'TimeStamp',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataRequest.php
new file mode 100644
index 000000000..445792e6e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ispNameEn' => 'IspNameEn',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealTimeHttpCodeDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponse.php
new file mode 100644
index 000000000..5d6c3ac56
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainRealTimeHttpCodeDataResponse
+ */
+ 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 = DescribeLiveDomainRealTimeHttpCodeDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody.php
new file mode 100644
index 000000000..70af8a5dd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'realTimeHttpCodeData' => 'RealTimeHttpCodeData',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->realTimeHttpCodeData) {
+ $res['RealTimeHttpCodeData'] = null !== $this->realTimeHttpCodeData ? $this->realTimeHttpCodeData->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealTimeHttpCodeDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RealTimeHttpCodeData'])) {
+ $model->realTimeHttpCodeData = realTimeHttpCodeData::fromMap($map['RealTimeHttpCodeData']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData.php
new file mode 100644
index 000000000..19abf3ff7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData.php
@@ -0,0 +1,60 @@
+ 'UsageData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->usageData) {
+ $res['UsageData'] = [];
+ if (null !== $this->usageData && \is_array($this->usageData)) {
+ $n = 0;
+ foreach ($this->usageData as $item) {
+ $res['UsageData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return realTimeHttpCodeData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['UsageData'])) {
+ if (!empty($map['UsageData'])) {
+ $model->usageData = [];
+ $n = 0;
+ foreach ($map['UsageData'] as $item) {
+ $model->usageData[$n++] = null !== $item ? usageData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData.php
new file mode 100644
index 000000000..119f0815a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData.php
@@ -0,0 +1,60 @@
+ 'TimeStamp',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = null !== $this->value ? $this->value->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return usageData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = value::fromMap($map['Value']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value.php
new file mode 100644
index 000000000..0eabf154d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value.php
@@ -0,0 +1,60 @@
+ 'RealTimeCodeProportionData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->realTimeCodeProportionData) {
+ $res['RealTimeCodeProportionData'] = [];
+ if (null !== $this->realTimeCodeProportionData && \is_array($this->realTimeCodeProportionData)) {
+ $n = 0;
+ foreach ($this->realTimeCodeProportionData as $item) {
+ $res['RealTimeCodeProportionData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return value
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RealTimeCodeProportionData'])) {
+ if (!empty($map['RealTimeCodeProportionData'])) {
+ $model->realTimeCodeProportionData = [];
+ $n = 0;
+ foreach ($map['RealTimeCodeProportionData'] as $item) {
+ $model->realTimeCodeProportionData[$n++] = null !== $item ? realTimeCodeProportionData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value/realTimeCodeProportionData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value/realTimeCodeProportionData.php
new file mode 100644
index 000000000..6188ea698
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value/realTimeCodeProportionData.php
@@ -0,0 +1,71 @@
+ 'Code',
+ 'count' => 'Count',
+ 'proportion' => 'Proportion',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->code) {
+ $res['Code'] = $this->code;
+ }
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->proportion) {
+ $res['Proportion'] = $this->proportion;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return realTimeCodeProportionData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Code'])) {
+ $model->code = $map['Code'];
+ }
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['Proportion'])) {
+ $model->proportion = $map['Proportion'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataRequest.php
new file mode 100644
index 000000000..d8531fc80
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ispNameEn' => 'IspNameEn',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealTimeTrafficDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponse.php
new file mode 100644
index 000000000..4595d73ec
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainRealTimeTrafficDataResponse
+ */
+ 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 = DescribeLiveDomainRealTimeTrafficDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody.php
new file mode 100644
index 000000000..dbd8f596e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'realTimeTrafficDataPerInterval' => 'RealTimeTrafficDataPerInterval',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->realTimeTrafficDataPerInterval) {
+ $res['RealTimeTrafficDataPerInterval'] = null !== $this->realTimeTrafficDataPerInterval ? $this->realTimeTrafficDataPerInterval->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealTimeTrafficDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RealTimeTrafficDataPerInterval'])) {
+ $model->realTimeTrafficDataPerInterval = realTimeTrafficDataPerInterval::fromMap($map['RealTimeTrafficDataPerInterval']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval.php
new file mode 100644
index 000000000..ca00a3cfa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return realTimeTrafficDataPerInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval/dataModule.php
new file mode 100644
index 000000000..da9c92468
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval/dataModule.php
@@ -0,0 +1,59 @@
+ 'TimeStamp',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryRequest.php
new file mode 100644
index 000000000..0e12124c2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealtimeLogDeliveryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponse.php
new file mode 100644
index 000000000..099ba0b1a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainRealtimeLogDeliveryResponse
+ */
+ 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 = DescribeLiveDomainRealtimeLogDeliveryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponseBody.php
new file mode 100644
index 000000000..58d4d03db
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponseBody.php
@@ -0,0 +1,95 @@
+ 'Logstore',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ 'requestId' => 'RequestId',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRealtimeLogDeliveryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataRequest.php
new file mode 100644
index 000000000..8371c0c99
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'recordType' => 'RecordType',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->recordType) {
+ $res['RecordType'] = $this->recordType;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRecordDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RecordType'])) {
+ $model->recordType = $map['RecordType'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponse.php
new file mode 100644
index 000000000..adc830ca4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainRecordDataResponse
+ */
+ 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 = DescribeLiveDomainRecordDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody.php
new file mode 100644
index 000000000..23a17f4b0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'RecordDataInfos',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordDataInfos) {
+ $res['RecordDataInfos'] = null !== $this->recordDataInfos ? $this->recordDataInfos->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRecordDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordDataInfos'])) {
+ $model->recordDataInfos = recordDataInfos::fromMap($map['RecordDataInfos']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos.php
new file mode 100644
index 000000000..9abf225a5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos.php
@@ -0,0 +1,60 @@
+ 'RecordDataInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordDataInfo) {
+ $res['RecordDataInfo'] = [];
+ if (null !== $this->recordDataInfo && \is_array($this->recordDataInfo)) {
+ $n = 0;
+ foreach ($this->recordDataInfo as $item) {
+ $res['RecordDataInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordDataInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordDataInfo'])) {
+ if (!empty($map['RecordDataInfo'])) {
+ $model->recordDataInfo = [];
+ $n = 0;
+ foreach ($map['RecordDataInfo'] as $item) {
+ $model->recordDataInfo[$n++] = null !== $item ? recordDataInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo.php
new file mode 100644
index 000000000..74cf16ffe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo.php
@@ -0,0 +1,72 @@
+ 'Date',
+ 'detail' => 'Detail',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->date) {
+ $res['Date'] = $this->date;
+ }
+ if (null !== $this->detail) {
+ $res['Detail'] = null !== $this->detail ? $this->detail->toMap() : null;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordDataInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Date'])) {
+ $model->date = $map['Date'];
+ }
+ if (isset($map['Detail'])) {
+ $model->detail = detail::fromMap($map['Detail']);
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo/detail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo/detail.php
new file mode 100644
index 000000000..d3086d6e9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo/detail.php
@@ -0,0 +1,71 @@
+ 'FLV',
+ 'MP4' => 'MP4',
+ 'TS' => 'TS',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->FLV) {
+ $res['FLV'] = $this->FLV;
+ }
+ if (null !== $this->MP4) {
+ $res['MP4'] = $this->MP4;
+ }
+ if (null !== $this->TS) {
+ $res['TS'] = $this->TS;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return detail
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FLV'])) {
+ $model->FLV = $map['FLV'];
+ }
+ if (isset($map['MP4'])) {
+ $model->MP4 = $map['MP4'];
+ }
+ if (isset($map['TS'])) {
+ $model->TS = $map['TS'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataRequest.php
new file mode 100644
index 000000000..8d47ea12e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'splitBy' => 'SplitBy',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->splitBy) {
+ $res['SplitBy'] = $this->splitBy;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRecordUsageDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SplitBy'])) {
+ $model->splitBy = $map['SplitBy'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponse.php
new file mode 100644
index 000000000..a8282d5bd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainRecordUsageDataResponse
+ */
+ 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 = DescribeLiveDomainRecordUsageDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody.php
new file mode 100644
index 000000000..8a08e00dd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'RecordUsageData',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordUsageData) {
+ $res['RecordUsageData'] = null !== $this->recordUsageData ? $this->recordUsageData->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainRecordUsageDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordUsageData'])) {
+ $model->recordUsageData = recordUsageData::fromMap($map['RecordUsageData']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData.php
new file mode 100644
index 000000000..44ca273ce
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordUsageData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData/dataModule.php
new file mode 100644
index 000000000..4ef7be0f8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData/dataModule.php
@@ -0,0 +1,95 @@
+ 'Count',
+ 'domain' => 'Domain',
+ 'duration' => 'Duration',
+ 'timeStamp' => 'TimeStamp',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataRequest.php
new file mode 100644
index 000000000..e3a892c4b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataRequest.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainSnapshotDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponse.php
new file mode 100644
index 000000000..84370c01b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainSnapshotDataResponse
+ */
+ 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 = DescribeLiveDomainSnapshotDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody.php
new file mode 100644
index 000000000..ada2a887a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'snapshotDataInfos' => 'SnapshotDataInfos',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->snapshotDataInfos) {
+ $res['SnapshotDataInfos'] = null !== $this->snapshotDataInfos ? $this->snapshotDataInfos->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainSnapshotDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['SnapshotDataInfos'])) {
+ $model->snapshotDataInfos = snapshotDataInfos::fromMap($map['SnapshotDataInfos']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos.php
new file mode 100644
index 000000000..8af76103c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos.php
@@ -0,0 +1,60 @@
+ 'SnapshotDataInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->snapshotDataInfo) {
+ $res['SnapshotDataInfo'] = [];
+ if (null !== $this->snapshotDataInfo && \is_array($this->snapshotDataInfo)) {
+ $n = 0;
+ foreach ($this->snapshotDataInfo as $item) {
+ $res['SnapshotDataInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return snapshotDataInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SnapshotDataInfo'])) {
+ if (!empty($map['SnapshotDataInfo'])) {
+ $model->snapshotDataInfo = [];
+ $n = 0;
+ foreach ($map['SnapshotDataInfo'] as $item) {
+ $model->snapshotDataInfo[$n++] = null !== $item ? snapshotDataInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos/snapshotDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos/snapshotDataInfo.php
new file mode 100644
index 000000000..706dd91cd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos/snapshotDataInfo.php
@@ -0,0 +1,59 @@
+ 'Date',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->date) {
+ $res['Date'] = $this->date;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return snapshotDataInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Date'])) {
+ $model->date = $map['Date'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigRequest.php
new file mode 100644
index 000000000..aa02a71c8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'functionNames' => 'FunctionNames',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->functionNames) {
+ $res['FunctionNames'] = $this->functionNames;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainStagingConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['FunctionNames'])) {
+ $model->functionNames = $map['FunctionNames'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponse.php
new file mode 100644
index 000000000..7999fca0b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainStagingConfigResponse
+ */
+ 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 = DescribeLiveDomainStagingConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody.php
new file mode 100644
index 000000000..46359280e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody.php
@@ -0,0 +1,72 @@
+ 'DomainConfigs',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainConfigs) {
+ $res['DomainConfigs'] = [];
+ if (null !== $this->domainConfigs && \is_array($this->domainConfigs)) {
+ $n = 0;
+ foreach ($this->domainConfigs as $item) {
+ $res['DomainConfigs'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainStagingConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainConfigs'])) {
+ if (!empty($map['DomainConfigs'])) {
+ $model->domainConfigs = [];
+ $n = 0;
+ foreach ($map['DomainConfigs'] as $item) {
+ $model->domainConfigs[$n++] = null !== $item ? domainConfigs::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs.php
new file mode 100644
index 000000000..655c456d1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs.php
@@ -0,0 +1,96 @@
+ 'ConfigId',
+ 'functionArgs' => 'FunctionArgs',
+ 'functionName' => 'FunctionName',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->configId) {
+ $res['ConfigId'] = $this->configId;
+ }
+ if (null !== $this->functionArgs) {
+ $res['FunctionArgs'] = [];
+ if (null !== $this->functionArgs && \is_array($this->functionArgs)) {
+ $n = 0;
+ foreach ($this->functionArgs as $item) {
+ $res['FunctionArgs'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->functionName) {
+ $res['FunctionName'] = $this->functionName;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainConfigs
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ConfigId'])) {
+ $model->configId = $map['ConfigId'];
+ }
+ if (isset($map['FunctionArgs'])) {
+ if (!empty($map['FunctionArgs'])) {
+ $model->functionArgs = [];
+ $n = 0;
+ foreach ($map['FunctionArgs'] as $item) {
+ $model->functionArgs[$n++] = null !== $item ? functionArgs::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['FunctionName'])) {
+ $model->functionName = $map['FunctionName'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs/functionArgs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs/functionArgs.php
new file mode 100644
index 000000000..3b5e027f3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs/functionArgs.php
@@ -0,0 +1,59 @@
+ 'ArgName',
+ 'argValue' => 'ArgValue',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->argName) {
+ $res['ArgName'] = $this->argName;
+ }
+ if (null !== $this->argValue) {
+ $res['ArgValue'] = $this->argValue;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return functionArgs
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ArgName'])) {
+ $model->argName = $map['ArgName'];
+ }
+ if (isset($map['ArgValue'])) {
+ $model->argValue = $map['ArgValue'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataRequest.php
new file mode 100644
index 000000000..fa564b9bc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ownerId' => 'OwnerId',
+ 'split' => 'Split',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->split) {
+ $res['Split'] = $this->split;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainStreamTranscodeDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Split'])) {
+ $model->split = $map['Split'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponse.php
new file mode 100644
index 000000000..58185d18e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainStreamTranscodeDataResponse
+ */
+ 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 = DescribeLiveDomainStreamTranscodeDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody.php
new file mode 100644
index 000000000..515828bd1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'transcodeDataList' => 'TranscodeDataList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->transcodeDataList) {
+ $res['TranscodeDataList'] = null !== $this->transcodeDataList ? $this->transcodeDataList->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainStreamTranscodeDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TranscodeDataList'])) {
+ $model->transcodeDataList = transcodeDataList::fromMap($map['TranscodeDataList']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList.php
new file mode 100644
index 000000000..d1d4e31b2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList.php
@@ -0,0 +1,60 @@
+ 'TranscodeData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->transcodeData) {
+ $res['TranscodeData'] = [];
+ if (null !== $this->transcodeData && \is_array($this->transcodeData)) {
+ $n = 0;
+ foreach ($this->transcodeData as $item) {
+ $res['TranscodeData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeDataList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TranscodeData'])) {
+ if (!empty($map['TranscodeData'])) {
+ $model->transcodeData = [];
+ $n = 0;
+ foreach ($map['TranscodeData'] as $item) {
+ $model->transcodeData[$n++] = null !== $item ? transcodeData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList/transcodeData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList/transcodeData.php
new file mode 100644
index 000000000..a092d30a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList/transcodeData.php
@@ -0,0 +1,119 @@
+ 'Domain',
+ 'duration' => 'Duration',
+ 'fps' => 'Fps',
+ 'region' => 'Region',
+ 'resolution' => 'Resolution',
+ 'tanscodeType' => 'TanscodeType',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->fps) {
+ $res['Fps'] = $this->fps;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->resolution) {
+ $res['Resolution'] = $this->resolution;
+ }
+ if (null !== $this->tanscodeType) {
+ $res['TanscodeType'] = $this->tanscodeType;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['Fps'])) {
+ $model->fps = $map['Fps'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['Resolution'])) {
+ $model->resolution = $map['Resolution'];
+ }
+ if (isset($map['TanscodeType'])) {
+ $model->tanscodeType = $map['TanscodeType'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataRequest.php
new file mode 100644
index 000000000..a8caa8de9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainTimeShiftDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponse.php
new file mode 100644
index 000000000..4ce4446e4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainTimeShiftDataResponse
+ */
+ 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 = DescribeLiveDomainTimeShiftDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody.php
new file mode 100644
index 000000000..ac3ec2f9d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'timeShiftData' => 'TimeShiftData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->timeShiftData) {
+ $res['TimeShiftData'] = null !== $this->timeShiftData ? $this->timeShiftData->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainTimeShiftDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TimeShiftData'])) {
+ $model->timeShiftData = timeShiftData::fromMap($map['TimeShiftData']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData.php
new file mode 100644
index 000000000..da919667d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return timeShiftData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData/dataModule.php
new file mode 100644
index 000000000..a08314c09
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData/dataModule.php
@@ -0,0 +1,71 @@
+ 'Size',
+ 'timeStamp' => 'TimeStamp',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->size) {
+ $res['Size'] = $this->size;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Size'])) {
+ $model->size = $map['Size'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataRequest.php
new file mode 100644
index 000000000..b6d4ccaa1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataRequest.php
@@ -0,0 +1,119 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ispNameEn' => 'IspNameEn',
+ 'locationNameEn' => 'LocationNameEn',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ispNameEn) {
+ $res['IspNameEn'] = $this->ispNameEn;
+ }
+ if (null !== $this->locationNameEn) {
+ $res['LocationNameEn'] = $this->locationNameEn;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainTrafficDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['IspNameEn'])) {
+ $model->ispNameEn = $map['IspNameEn'];
+ }
+ if (isset($map['LocationNameEn'])) {
+ $model->locationNameEn = $map['LocationNameEn'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponse.php
new file mode 100644
index 000000000..dbd72aa66
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainTrafficDataResponse
+ */
+ 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 = DescribeLiveDomainTrafficDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody.php
new file mode 100644
index 000000000..99a741cd6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ 'trafficDataPerInterval' => 'TrafficDataPerInterval',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->trafficDataPerInterval) {
+ $res['TrafficDataPerInterval'] = null !== $this->trafficDataPerInterval ? $this->trafficDataPerInterval->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainTrafficDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['TrafficDataPerInterval'])) {
+ $model->trafficDataPerInterval = trafficDataPerInterval::fromMap($map['TrafficDataPerInterval']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval.php
new file mode 100644
index 000000000..bd36a2070
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return trafficDataPerInterval
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval/dataModule.php
new file mode 100644
index 000000000..afa584d77
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval/dataModule.php
@@ -0,0 +1,83 @@
+ 'HttpTrafficValue',
+ 'httpsTrafficValue' => 'HttpsTrafficValue',
+ 'timeStamp' => 'TimeStamp',
+ 'trafficValue' => 'TrafficValue',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->httpTrafficValue) {
+ $res['HttpTrafficValue'] = $this->httpTrafficValue;
+ }
+ if (null !== $this->httpsTrafficValue) {
+ $res['HttpsTrafficValue'] = $this->httpsTrafficValue;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->trafficValue) {
+ $res['TrafficValue'] = $this->trafficValue;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HttpTrafficValue'])) {
+ $model->httpTrafficValue = $map['HttpTrafficValue'];
+ }
+ if (isset($map['HttpsTrafficValue'])) {
+ $model->httpsTrafficValue = $map['HttpsTrafficValue'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['TrafficValue'])) {
+ $model->trafficValue = $map['TrafficValue'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataRequest.php
new file mode 100644
index 000000000..fb16e759f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataRequest.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainTranscodeDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponse.php
new file mode 100644
index 000000000..1571eee01
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDomainTranscodeDataResponse
+ */
+ 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 = DescribeLiveDomainTranscodeDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody.php
new file mode 100644
index 000000000..7883a80a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'transcodeDataInfos' => 'TranscodeDataInfos',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->transcodeDataInfos) {
+ $res['TranscodeDataInfos'] = null !== $this->transcodeDataInfos ? $this->transcodeDataInfos->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDomainTranscodeDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TranscodeDataInfos'])) {
+ $model->transcodeDataInfos = transcodeDataInfos::fromMap($map['TranscodeDataInfos']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos.php
new file mode 100644
index 000000000..a830afd0b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos.php
@@ -0,0 +1,60 @@
+ 'TranscodeDataInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->transcodeDataInfo) {
+ $res['TranscodeDataInfo'] = [];
+ if (null !== $this->transcodeDataInfo && \is_array($this->transcodeDataInfo)) {
+ $n = 0;
+ foreach ($this->transcodeDataInfo as $item) {
+ $res['TranscodeDataInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeDataInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TranscodeDataInfo'])) {
+ if (!empty($map['TranscodeDataInfo'])) {
+ $model->transcodeDataInfo = [];
+ $n = 0;
+ foreach ($map['TranscodeDataInfo'] as $item) {
+ $model->transcodeDataInfo[$n++] = null !== $item ? transcodeDataInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos/transcodeDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos/transcodeDataInfo.php
new file mode 100644
index 000000000..8b766f5b1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos/transcodeDataInfo.php
@@ -0,0 +1,71 @@
+ 'Date',
+ 'detail' => 'Detail',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->date) {
+ $res['Date'] = $this->date;
+ }
+ if (null !== $this->detail) {
+ $res['Detail'] = $this->detail;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeDataInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Date'])) {
+ $model->date = $map['Date'];
+ }
+ if (isset($map['Detail'])) {
+ $model->detail = $map['Detail'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataRequest.php
new file mode 100644
index 000000000..fe7c7686e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'ownerId' => 'OwnerId',
+ 'splitBy' => 'SplitBy',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->splitBy) {
+ $res['SplitBy'] = $this->splitBy;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDrmUsageDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SplitBy'])) {
+ $model->splitBy = $map['SplitBy'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponse.php
new file mode 100644
index 000000000..d6106018b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveDrmUsageDataResponse
+ */
+ 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 = DescribeLiveDrmUsageDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody.php
new file mode 100644
index 000000000..dc638b55c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'DrmUsageData',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->drmUsageData) {
+ $res['DrmUsageData'] = null !== $this->drmUsageData ? $this->drmUsageData->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveDrmUsageDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DrmUsageData'])) {
+ $model->drmUsageData = drmUsageData::fromMap($map['DrmUsageData']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData.php
new file mode 100644
index 000000000..d7a1f1853
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData.php
@@ -0,0 +1,60 @@
+ 'DataModule',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataModule) {
+ $res['DataModule'] = [];
+ if (null !== $this->dataModule && \is_array($this->dataModule)) {
+ $n = 0;
+ foreach ($this->dataModule as $item) {
+ $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return drmUsageData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataModule'])) {
+ if (!empty($map['DataModule'])) {
+ $model->dataModule = [];
+ $n = 0;
+ foreach ($map['DataModule'] as $item) {
+ $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData/dataModule.php
new file mode 100644
index 000000000..433b488fe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData/dataModule.php
@@ -0,0 +1,95 @@
+ 'Count',
+ 'domain' => 'Domain',
+ 'drmType' => 'DrmType',
+ 'region' => 'Region',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->drmType) {
+ $res['DrmType'] = $this->drmType;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return dataModule
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['DrmType'])) {
+ $model->drmType = $map['DrmType'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferRequest.php
new file mode 100644
index 000000000..d257b6204
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveEdgeTransferRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponse.php
new file mode 100644
index 000000000..7a098d7b5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveEdgeTransferResponse
+ */
+ 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 = DescribeLiveEdgeTransferResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponseBody.php
new file mode 100644
index 000000000..023b269d7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponseBody.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'httpDns' => 'HttpDns',
+ 'requestId' => 'RequestId',
+ 'streamName' => 'StreamName',
+ 'targetDomainList' => 'TargetDomainList',
+ 'transferArgs' => 'TransferArgs',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->httpDns) {
+ $res['HttpDns'] = $this->httpDns;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->targetDomainList) {
+ $res['TargetDomainList'] = $this->targetDomainList;
+ }
+ if (null !== $this->transferArgs) {
+ $res['TransferArgs'] = $this->transferArgs;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveEdgeTransferResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['HttpDns'])) {
+ $model->httpDns = $map['HttpDns'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TargetDomainList'])) {
+ $model->targetDomainList = $map['TargetDomainList'];
+ }
+ if (isset($map['TransferArgs'])) {
+ $model->transferArgs = $map['TransferArgs'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigRequest.php
new file mode 100644
index 000000000..df152fbde
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigRequest.php
@@ -0,0 +1,71 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveLazyPullStreamConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponse.php
new file mode 100644
index 000000000..cdebd6ea9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveLazyPullStreamConfigResponse
+ */
+ 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 = DescribeLiveLazyPullStreamConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody.php
new file mode 100644
index 000000000..328cee7fd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveLazyPullConfigList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveLazyPullConfigList) {
+ $res['LiveLazyPullConfigList'] = null !== $this->liveLazyPullConfigList ? $this->liveLazyPullConfigList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveLazyPullStreamConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveLazyPullConfigList'])) {
+ $model->liveLazyPullConfigList = liveLazyPullConfigList::fromMap($map['LiveLazyPullConfigList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList.php
new file mode 100644
index 000000000..e5124e0ea
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList.php
@@ -0,0 +1,60 @@
+ 'LiveLazyPullConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveLazyPullConfig) {
+ $res['LiveLazyPullConfig'] = [];
+ if (null !== $this->liveLazyPullConfig && \is_array($this->liveLazyPullConfig)) {
+ $n = 0;
+ foreach ($this->liveLazyPullConfig as $item) {
+ $res['LiveLazyPullConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveLazyPullConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveLazyPullConfig'])) {
+ if (!empty($map['LiveLazyPullConfig'])) {
+ $model->liveLazyPullConfig = [];
+ $n = 0;
+ foreach ($map['LiveLazyPullConfig'] as $item) {
+ $model->liveLazyPullConfig[$n++] = null !== $item ? liveLazyPullConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList/liveLazyPullConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList/liveLazyPullConfig.php
new file mode 100644
index 000000000..b7ef50216
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList/liveLazyPullConfig.php
@@ -0,0 +1,95 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'pullAppName' => 'PullAppName',
+ 'pullDomainName' => 'PullDomainName',
+ 'pullProtocol' => 'PullProtocol',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->pullAppName) {
+ $res['PullAppName'] = $this->pullAppName;
+ }
+ if (null !== $this->pullDomainName) {
+ $res['PullDomainName'] = $this->pullDomainName;
+ }
+ if (null !== $this->pullProtocol) {
+ $res['PullProtocol'] = $this->pullProtocol;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveLazyPullConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['PullAppName'])) {
+ $model->pullAppName = $map['PullAppName'];
+ }
+ if (isset($map['PullDomainName'])) {
+ $model->pullDomainName = $map['PullDomainName'];
+ }
+ if (isset($map['PullProtocol'])) {
+ $model->pullProtocol = $map['PullProtocol'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataRequest.php
new file mode 100644
index 000000000..f97879418
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataRequest.php
@@ -0,0 +1,155 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'instance' => 'Instance',
+ 'interval' => 'Interval',
+ 'ownerId' => 'OwnerId',
+ 'region' => 'Region',
+ 'splitBy' => 'SplitBy',
+ 'startTime' => 'StartTime',
+ 'type' => 'Type',
+ 'app' => 'app',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->instance) {
+ $res['Instance'] = $this->instance;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->splitBy) {
+ $res['SplitBy'] = $this->splitBy;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+ if (null !== $this->app) {
+ $res['app'] = $this->app;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveProducerUsageDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Instance'])) {
+ $model->instance = $map['Instance'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['SplitBy'])) {
+ $model->splitBy = $map['SplitBy'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+ if (isset($map['app'])) {
+ $model->app = $map['app'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponse.php
new file mode 100644
index 000000000..ee69d6fd1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveProducerUsageDataResponse
+ */
+ 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 = DescribeLiveProducerUsageDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody.php
new file mode 100644
index 000000000..c428ef45c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody.php
@@ -0,0 +1,84 @@
+ 'BillProducerData',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->billProducerData) {
+ $res['BillProducerData'] = null !== $this->billProducerData ? $this->billProducerData->toMap() : null;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveProducerUsageDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BillProducerData'])) {
+ $model->billProducerData = billProducerData::fromMap($map['BillProducerData']);
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData.php
new file mode 100644
index 000000000..162abeb62
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData.php
@@ -0,0 +1,60 @@
+ 'BillProducerDataItem',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->billProducerDataItem) {
+ $res['BillProducerDataItem'] = [];
+ if (null !== $this->billProducerDataItem && \is_array($this->billProducerDataItem)) {
+ $n = 0;
+ foreach ($this->billProducerDataItem as $item) {
+ $res['BillProducerDataItem'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return billProducerData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BillProducerDataItem'])) {
+ if (!empty($map['BillProducerDataItem'])) {
+ $model->billProducerDataItem = [];
+ $n = 0;
+ foreach ($map['BillProducerDataItem'] as $item) {
+ $model->billProducerDataItem[$n++] = null !== $item ? billProducerDataItem::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData/billProducerDataItem.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData/billProducerDataItem.php
new file mode 100644
index 000000000..c1fd9053d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData/billProducerDataItem.php
@@ -0,0 +1,167 @@
+ 'DomainName',
+ 'instance' => 'Instance',
+ 'outputHdDuration' => 'OutputHdDuration',
+ 'outputLdDuration' => 'OutputLdDuration',
+ 'outputSdDuration' => 'OutputSdDuration',
+ 'region' => 'Region',
+ 'timeStamp' => 'TimeStamp',
+ 'tranHdDuration' => 'TranHdDuration',
+ 'tranLdDuration' => 'TranLdDuration',
+ 'tranSdDuration' => 'TranSdDuration',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->instance) {
+ $res['Instance'] = $this->instance;
+ }
+ if (null !== $this->outputHdDuration) {
+ $res['OutputHdDuration'] = $this->outputHdDuration;
+ }
+ if (null !== $this->outputLdDuration) {
+ $res['OutputLdDuration'] = $this->outputLdDuration;
+ }
+ if (null !== $this->outputSdDuration) {
+ $res['OutputSdDuration'] = $this->outputSdDuration;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->tranHdDuration) {
+ $res['TranHdDuration'] = $this->tranHdDuration;
+ }
+ if (null !== $this->tranLdDuration) {
+ $res['TranLdDuration'] = $this->tranLdDuration;
+ }
+ if (null !== $this->tranSdDuration) {
+ $res['TranSdDuration'] = $this->tranSdDuration;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return billProducerDataItem
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Instance'])) {
+ $model->instance = $map['Instance'];
+ }
+ if (isset($map['OutputHdDuration'])) {
+ $model->outputHdDuration = $map['OutputHdDuration'];
+ }
+ if (isset($map['OutputLdDuration'])) {
+ $model->outputLdDuration = $map['OutputLdDuration'];
+ }
+ if (isset($map['OutputSdDuration'])) {
+ $model->outputSdDuration = $map['OutputSdDuration'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['TranHdDuration'])) {
+ $model->tranHdDuration = $map['TranHdDuration'];
+ }
+ if (isset($map['TranLdDuration'])) {
+ $model->tranLdDuration = $map['TranLdDuration'];
+ }
+ if (isset($map['TranSdDuration'])) {
+ $model->tranSdDuration = $map['TranSdDuration'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigRequest.php
new file mode 100644
index 000000000..05fd66758
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLivePullStreamConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponse.php
new file mode 100644
index 000000000..2418f098d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLivePullStreamConfigResponse
+ */
+ 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 = DescribeLivePullStreamConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody.php
new file mode 100644
index 000000000..9c9a48c88
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveAppRecordList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAppRecordList) {
+ $res['LiveAppRecordList'] = null !== $this->liveAppRecordList ? $this->liveAppRecordList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLivePullStreamConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAppRecordList'])) {
+ $model->liveAppRecordList = liveAppRecordList::fromMap($map['LiveAppRecordList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList.php
new file mode 100644
index 000000000..1646723ff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList.php
@@ -0,0 +1,60 @@
+ 'LiveAppRecord',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAppRecord) {
+ $res['LiveAppRecord'] = [];
+ if (null !== $this->liveAppRecord && \is_array($this->liveAppRecord)) {
+ $n = 0;
+ foreach ($this->liveAppRecord as $item) {
+ $res['LiveAppRecord'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAppRecordList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAppRecord'])) {
+ if (!empty($map['LiveAppRecord'])) {
+ $model->liveAppRecord = [];
+ $n = 0;
+ foreach ($map['LiveAppRecord'] as $item) {
+ $model->liveAppRecord[$n++] = null !== $item ? liveAppRecord::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList/liveAppRecord.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList/liveAppRecord.php
new file mode 100644
index 000000000..4b40d796e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList/liveAppRecord.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'sourceUrl' => 'SourceUrl',
+ 'sourceUsing' => 'SourceUsing',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->sourceUrl) {
+ $res['SourceUrl'] = $this->sourceUrl;
+ }
+ if (null !== $this->sourceUsing) {
+ $res['SourceUsing'] = $this->sourceUsing;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAppRecord
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['SourceUrl'])) {
+ $model->sourceUrl = $map['SourceUrl'];
+ }
+ if (isset($map['SourceUsing'])) {
+ $model->sourceUsing = $map['SourceUsing'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccRequest.php
new file mode 100644
index 000000000..20334e084
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccRequest.php
@@ -0,0 +1,119 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'interval' => 'Interval',
+ 'logStore' => 'LogStore',
+ 'ownerId' => 'OwnerId',
+ 'project' => 'Project',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->logStore) {
+ $res['LogStore'] = $this->logStore;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRealtimeDeliveryAccRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['LogStore'])) {
+ $model->logStore = $map['LogStore'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponse.php
new file mode 100644
index 000000000..498bd6124
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveRealtimeDeliveryAccResponse
+ */
+ 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 = DescribeLiveRealtimeDeliveryAccResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody.php
new file mode 100644
index 000000000..54d6ebf72
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody.php
@@ -0,0 +1,60 @@
+ 'RealTimeDeliveryAccData',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->realTimeDeliveryAccData) {
+ $res['RealTimeDeliveryAccData'] = null !== $this->realTimeDeliveryAccData ? $this->realTimeDeliveryAccData->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRealtimeDeliveryAccResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RealTimeDeliveryAccData'])) {
+ $model->realTimeDeliveryAccData = realTimeDeliveryAccData::fromMap($map['RealTimeDeliveryAccData']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData.php
new file mode 100644
index 000000000..d1ee6e6e6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData.php
@@ -0,0 +1,60 @@
+ 'AccData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->accData) {
+ $res['AccData'] = [];
+ if (null !== $this->accData && \is_array($this->accData)) {
+ $n = 0;
+ foreach ($this->accData as $item) {
+ $res['AccData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return realTimeDeliveryAccData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AccData'])) {
+ if (!empty($map['AccData'])) {
+ $model->accData = [];
+ $n = 0;
+ foreach ($map['AccData'] as $item) {
+ $model->accData[$n++] = null !== $item ? accData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData/accData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData/accData.php
new file mode 100644
index 000000000..b8103e4a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData/accData.php
@@ -0,0 +1,71 @@
+ 'FailedNum',
+ 'successNum' => 'SuccessNum',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->failedNum) {
+ $res['FailedNum'] = $this->failedNum;
+ }
+ if (null !== $this->successNum) {
+ $res['SuccessNum'] = $this->successNum;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return accData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FailedNum'])) {
+ $model->failedNum = $map['FailedNum'];
+ }
+ if (isset($map['SuccessNum'])) {
+ $model->successNum = $map['SuccessNum'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedRequest.php
new file mode 100644
index 000000000..b075e7e08
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedRequest.php
@@ -0,0 +1,59 @@
+ 'LiveOpenapiReserve',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveOpenapiReserve) {
+ $res['LiveOpenapiReserve'] = $this->liveOpenapiReserve;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRealtimeLogAuthorizedRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveOpenapiReserve'])) {
+ $model->liveOpenapiReserve = $map['LiveOpenapiReserve'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponse.php
new file mode 100644
index 000000000..73bf5cdc4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveRealtimeLogAuthorizedResponse
+ */
+ 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 = DescribeLiveRealtimeLogAuthorizedResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponseBody.php
new file mode 100644
index 000000000..1808a4d53
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponseBody.php
@@ -0,0 +1,59 @@
+ 'AuthorizedStatus',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->authorizedStatus) {
+ $res['AuthorizedStatus'] = $this->authorizedStatus;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRealtimeLogAuthorizedResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AuthorizedStatus'])) {
+ $model->authorizedStatus = $map['AuthorizedStatus'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigRequest.php
new file mode 100644
index 000000000..1d20dab20
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigRequest.php
@@ -0,0 +1,131 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'securityToken' => 'SecurityToken',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRecordConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponse.php
new file mode 100644
index 000000000..8f824c7d4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveRecordConfigResponse
+ */
+ 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 = DescribeLiveRecordConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody.php
new file mode 100644
index 000000000..6cf4161fe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody.php
@@ -0,0 +1,120 @@
+ 'LiveAppRecordList',
+ 'order' => 'Order',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAppRecordList) {
+ $res['LiveAppRecordList'] = null !== $this->liveAppRecordList ? $this->liveAppRecordList->toMap() : null;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRecordConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAppRecordList'])) {
+ $model->liveAppRecordList = liveAppRecordList::fromMap($map['LiveAppRecordList']);
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList.php
new file mode 100644
index 000000000..3a690eec5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList.php
@@ -0,0 +1,60 @@
+ 'LiveAppRecord',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveAppRecord) {
+ $res['LiveAppRecord'] = [];
+ if (null !== $this->liveAppRecord && \is_array($this->liveAppRecord)) {
+ $n = 0;
+ foreach ($this->liveAppRecord as $item) {
+ $res['LiveAppRecord'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAppRecordList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveAppRecord'])) {
+ if (!empty($map['LiveAppRecord'])) {
+ $model->liveAppRecord = [];
+ $n = 0;
+ foreach ($map['LiveAppRecord'] as $item) {
+ $model->liveAppRecord[$n++] = null !== $item ? liveAppRecord::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord.php
new file mode 100644
index 000000000..d47d48673
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord.php
@@ -0,0 +1,182 @@
+ 'AppName',
+ 'createTime' => 'CreateTime',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'onDemond' => 'OnDemond',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'recordFormatList' => 'RecordFormatList',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ 'transcodeRecordFormatList' => 'TranscodeRecordFormatList',
+ 'transcodeTemplates' => 'TranscodeTemplates',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->onDemond) {
+ $res['OnDemond'] = $this->onDemond;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->recordFormatList) {
+ $res['RecordFormatList'] = null !== $this->recordFormatList ? $this->recordFormatList->toMap() : null;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->transcodeRecordFormatList) {
+ $res['TranscodeRecordFormatList'] = null !== $this->transcodeRecordFormatList ? $this->transcodeRecordFormatList->toMap() : null;
+ }
+ if (null !== $this->transcodeTemplates) {
+ $res['TranscodeTemplates'] = null !== $this->transcodeTemplates ? $this->transcodeTemplates->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveAppRecord
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OnDemond'])) {
+ $model->onDemond = $map['OnDemond'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['RecordFormatList'])) {
+ $model->recordFormatList = recordFormatList::fromMap($map['RecordFormatList']);
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TranscodeRecordFormatList'])) {
+ $model->transcodeRecordFormatList = transcodeRecordFormatList::fromMap($map['TranscodeRecordFormatList']);
+ }
+ if (isset($map['TranscodeTemplates'])) {
+ $model->transcodeTemplates = transcodeTemplates::fromMap($map['TranscodeTemplates']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList.php
new file mode 100644
index 000000000..74ae5acd1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList.php
@@ -0,0 +1,60 @@
+ 'RecordFormat',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordFormat) {
+ $res['RecordFormat'] = [];
+ if (null !== $this->recordFormat && \is_array($this->recordFormat)) {
+ $n = 0;
+ foreach ($this->recordFormat as $item) {
+ $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordFormatList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordFormat'])) {
+ if (!empty($map['RecordFormat'])) {
+ $model->recordFormat = [];
+ $n = 0;
+ foreach ($map['RecordFormat'] as $item) {
+ $model->recordFormat[$n++] = null !== $item ? recordFormat::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList/recordFormat.php
new file mode 100644
index 000000000..7143e063c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList/recordFormat.php
@@ -0,0 +1,95 @@
+ 'CycleDuration',
+ 'format' => 'Format',
+ 'ossObjectPrefix' => 'OssObjectPrefix',
+ 'sliceDuration' => 'SliceDuration',
+ 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cycleDuration) {
+ $res['CycleDuration'] = $this->cycleDuration;
+ }
+ if (null !== $this->format) {
+ $res['Format'] = $this->format;
+ }
+ if (null !== $this->ossObjectPrefix) {
+ $res['OssObjectPrefix'] = $this->ossObjectPrefix;
+ }
+ if (null !== $this->sliceDuration) {
+ $res['SliceDuration'] = $this->sliceDuration;
+ }
+ if (null !== $this->sliceOssObjectPrefix) {
+ $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordFormat
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CycleDuration'])) {
+ $model->cycleDuration = $map['CycleDuration'];
+ }
+ if (isset($map['Format'])) {
+ $model->format = $map['Format'];
+ }
+ if (isset($map['OssObjectPrefix'])) {
+ $model->ossObjectPrefix = $map['OssObjectPrefix'];
+ }
+ if (isset($map['SliceDuration'])) {
+ $model->sliceDuration = $map['SliceDuration'];
+ }
+ if (isset($map['SliceOssObjectPrefix'])) {
+ $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList.php
new file mode 100644
index 000000000..dfb847df2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList.php
@@ -0,0 +1,60 @@
+ 'RecordFormat',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordFormat) {
+ $res['RecordFormat'] = [];
+ if (null !== $this->recordFormat && \is_array($this->recordFormat)) {
+ $n = 0;
+ foreach ($this->recordFormat as $item) {
+ $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeRecordFormatList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordFormat'])) {
+ if (!empty($map['RecordFormat'])) {
+ $model->recordFormat = [];
+ $n = 0;
+ foreach ($map['RecordFormat'] as $item) {
+ $model->recordFormat[$n++] = null !== $item ? recordFormat::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList/recordFormat.php
new file mode 100644
index 000000000..63f1b5f0a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList/recordFormat.php
@@ -0,0 +1,95 @@
+ 'CycleDuration',
+ 'format' => 'Format',
+ 'ossObjectPrefix' => 'OssObjectPrefix',
+ 'sliceDuration' => 'SliceDuration',
+ 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cycleDuration) {
+ $res['CycleDuration'] = $this->cycleDuration;
+ }
+ if (null !== $this->format) {
+ $res['Format'] = $this->format;
+ }
+ if (null !== $this->ossObjectPrefix) {
+ $res['OssObjectPrefix'] = $this->ossObjectPrefix;
+ }
+ if (null !== $this->sliceDuration) {
+ $res['SliceDuration'] = $this->sliceDuration;
+ }
+ if (null !== $this->sliceOssObjectPrefix) {
+ $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordFormat
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CycleDuration'])) {
+ $model->cycleDuration = $map['CycleDuration'];
+ }
+ if (isset($map['Format'])) {
+ $model->format = $map['Format'];
+ }
+ if (isset($map['OssObjectPrefix'])) {
+ $model->ossObjectPrefix = $map['OssObjectPrefix'];
+ }
+ if (isset($map['SliceDuration'])) {
+ $model->sliceDuration = $map['SliceDuration'];
+ }
+ if (isset($map['SliceOssObjectPrefix'])) {
+ $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeTemplates.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeTemplates.php
new file mode 100644
index 000000000..5ab9f09b7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeTemplates.php
@@ -0,0 +1,49 @@
+ 'Templates',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->templates) {
+ $res['Templates'] = $this->templates;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return transcodeTemplates
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Templates'])) {
+ if (!empty($map['Templates'])) {
+ $model->templates = $map['Templates'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigRequest.php
new file mode 100644
index 000000000..ad783fc69
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRecordNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponse.php
new file mode 100644
index 000000000..81d60e0c9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveRecordNotifyConfigResponse
+ */
+ 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 = DescribeLiveRecordNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody.php
new file mode 100644
index 000000000..1d3394582
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveRecordNotifyConfig',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveRecordNotifyConfig) {
+ $res['LiveRecordNotifyConfig'] = null !== $this->liveRecordNotifyConfig ? $this->liveRecordNotifyConfig->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRecordNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveRecordNotifyConfig'])) {
+ $model->liveRecordNotifyConfig = liveRecordNotifyConfig::fromMap($map['LiveRecordNotifyConfig']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody/liveRecordNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody/liveRecordNotifyConfig.php
new file mode 100644
index 000000000..950843a27
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody/liveRecordNotifyConfig.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'needStatusNotify' => 'NeedStatusNotify',
+ 'notifyUrl' => 'NotifyUrl',
+ 'onDemandUrl' => 'OnDemandUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->needStatusNotify) {
+ $res['NeedStatusNotify'] = $this->needStatusNotify;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->onDemandUrl) {
+ $res['OnDemandUrl'] = $this->onDemandUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveRecordNotifyConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NeedStatusNotify'])) {
+ $model->needStatusNotify = $map['NeedStatusNotify'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OnDemandUrl'])) {
+ $model->onDemandUrl = $map['OnDemandUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsRequest.php
new file mode 100644
index 000000000..08136ba32
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsRequest.php
@@ -0,0 +1,107 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRecordVodConfigsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponse.php
new file mode 100644
index 000000000..c4a18dc0a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveRecordVodConfigsResponse
+ */
+ 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 = DescribeLiveRecordVodConfigsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody.php
new file mode 100644
index 000000000..bff3ca35a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody.php
@@ -0,0 +1,96 @@
+ 'LiveRecordVodConfigs',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveRecordVodConfigs) {
+ $res['LiveRecordVodConfigs'] = null !== $this->liveRecordVodConfigs ? $this->liveRecordVodConfigs->toMap() : null;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveRecordVodConfigsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveRecordVodConfigs'])) {
+ $model->liveRecordVodConfigs = liveRecordVodConfigs::fromMap($map['LiveRecordVodConfigs']);
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs.php
new file mode 100644
index 000000000..7926963cc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs.php
@@ -0,0 +1,60 @@
+ 'LiveRecordVodConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveRecordVodConfig) {
+ $res['LiveRecordVodConfig'] = [];
+ if (null !== $this->liveRecordVodConfig && \is_array($this->liveRecordVodConfig)) {
+ $n = 0;
+ foreach ($this->liveRecordVodConfig as $item) {
+ $res['LiveRecordVodConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveRecordVodConfigs
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveRecordVodConfig'])) {
+ if (!empty($map['LiveRecordVodConfig'])) {
+ $model->liveRecordVodConfig = [];
+ $n = 0;
+ foreach ($map['LiveRecordVodConfig'] as $item) {
+ $model->liveRecordVodConfig[$n++] = null !== $item ? liveRecordVodConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs/liveRecordVodConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs/liveRecordVodConfig.php
new file mode 100644
index 000000000..2dec957af
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs/liveRecordVodConfig.php
@@ -0,0 +1,131 @@
+ 'AppName',
+ 'autoCompose' => 'AutoCompose',
+ 'composeVodTranscodeGroupId' => 'ComposeVodTranscodeGroupId',
+ 'createTime' => 'CreateTime',
+ 'cycleDuration' => 'CycleDuration',
+ 'domainName' => 'DomainName',
+ 'streamName' => 'StreamName',
+ 'vodTranscodeGroupId' => 'VodTranscodeGroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->autoCompose) {
+ $res['AutoCompose'] = $this->autoCompose;
+ }
+ if (null !== $this->composeVodTranscodeGroupId) {
+ $res['ComposeVodTranscodeGroupId'] = $this->composeVodTranscodeGroupId;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->cycleDuration) {
+ $res['CycleDuration'] = $this->cycleDuration;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->vodTranscodeGroupId) {
+ $res['VodTranscodeGroupId'] = $this->vodTranscodeGroupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveRecordVodConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['AutoCompose'])) {
+ $model->autoCompose = $map['AutoCompose'];
+ }
+ if (isset($map['ComposeVodTranscodeGroupId'])) {
+ $model->composeVodTranscodeGroupId = $map['ComposeVodTranscodeGroupId'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['CycleDuration'])) {
+ $model->cycleDuration = $map['CycleDuration'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['VodTranscodeGroupId'])) {
+ $model->vodTranscodeGroupId = $map['VodTranscodeGroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsRequest.php
new file mode 100644
index 000000000..e4efd8976
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveShiftConfigsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponse.php
new file mode 100644
index 000000000..40b9fbdff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveShiftConfigsResponse
+ */
+ 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 = DescribeLiveShiftConfigsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody.php
new file mode 100644
index 000000000..44a5698bd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody.php
@@ -0,0 +1,60 @@
+ 'Content',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = null !== $this->content ? $this->content->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveShiftConfigsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ $model->content = content::fromMap($map['Content']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content.php
new file mode 100644
index 000000000..57117ad3a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content.php
@@ -0,0 +1,60 @@
+ 'Config',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->config) {
+ $res['Config'] = [];
+ if (null !== $this->config && \is_array($this->config)) {
+ $n = 0;
+ foreach ($this->config as $item) {
+ $res['Config'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return content
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Config'])) {
+ if (!empty($map['Config'])) {
+ $model->config = [];
+ $n = 0;
+ foreach ($map['Config'] as $item) {
+ $model->config[$n++] = null !== $item ? config::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content/config.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content/config.php
new file mode 100644
index 000000000..e74ea8afc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content/config.php
@@ -0,0 +1,95 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ignoreTranscode' => 'IgnoreTranscode',
+ 'streamName' => 'StreamName',
+ 'vision' => 'Vision',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ignoreTranscode) {
+ $res['IgnoreTranscode'] = $this->ignoreTranscode;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->vision) {
+ $res['Vision'] = $this->vision;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return config
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['IgnoreTranscode'])) {
+ $model->ignoreTranscode = $map['IgnoreTranscode'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Vision'])) {
+ $model->vision = $map['Vision'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigRequest.php
new file mode 100644
index 000000000..0ca1861da
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveSnapshotConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponse.php
new file mode 100644
index 000000000..28e1fdecb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveSnapshotConfigResponse
+ */
+ 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 = DescribeLiveSnapshotConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody.php
new file mode 100644
index 000000000..2d50cbcb2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody.php
@@ -0,0 +1,120 @@
+ 'LiveStreamSnapshotConfigList',
+ 'order' => 'Order',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamSnapshotConfigList) {
+ $res['LiveStreamSnapshotConfigList'] = null !== $this->liveStreamSnapshotConfigList ? $this->liveStreamSnapshotConfigList->toMap() : null;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveSnapshotConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamSnapshotConfigList'])) {
+ $model->liveStreamSnapshotConfigList = liveStreamSnapshotConfigList::fromMap($map['LiveStreamSnapshotConfigList']);
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList.php
new file mode 100644
index 000000000..07c35cb9a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList.php
@@ -0,0 +1,60 @@
+ 'LiveStreamSnapshotConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamSnapshotConfig) {
+ $res['LiveStreamSnapshotConfig'] = [];
+ if (null !== $this->liveStreamSnapshotConfig && \is_array($this->liveStreamSnapshotConfig)) {
+ $n = 0;
+ foreach ($this->liveStreamSnapshotConfig as $item) {
+ $res['LiveStreamSnapshotConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamSnapshotConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamSnapshotConfig'])) {
+ if (!empty($map['LiveStreamSnapshotConfig'])) {
+ $model->liveStreamSnapshotConfig = [];
+ $n = 0;
+ foreach ($map['LiveStreamSnapshotConfig'] as $item) {
+ $model->liveStreamSnapshotConfig[$n++] = null !== $item ? liveStreamSnapshotConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList/liveStreamSnapshotConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList/liveStreamSnapshotConfig.php
new file mode 100644
index 000000000..56b7b3b14
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList/liveStreamSnapshotConfig.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'callback' => 'Callback',
+ 'createTime' => 'CreateTime',
+ 'domainName' => 'DomainName',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'overwriteOssObject' => 'OverwriteOssObject',
+ 'sequenceOssObject' => 'SequenceOssObject',
+ 'timeInterval' => 'TimeInterval',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->callback) {
+ $res['Callback'] = $this->callback;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->overwriteOssObject) {
+ $res['OverwriteOssObject'] = $this->overwriteOssObject;
+ }
+ if (null !== $this->sequenceOssObject) {
+ $res['SequenceOssObject'] = $this->sequenceOssObject;
+ }
+ if (null !== $this->timeInterval) {
+ $res['TimeInterval'] = $this->timeInterval;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamSnapshotConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Callback'])) {
+ $model->callback = $map['Callback'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OverwriteOssObject'])) {
+ $model->overwriteOssObject = $map['OverwriteOssObject'];
+ }
+ if (isset($map['SequenceOssObject'])) {
+ $model->sequenceOssObject = $map['SequenceOssObject'];
+ }
+ if (isset($map['TimeInterval'])) {
+ $model->timeInterval = $map['TimeInterval'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigRequest.php
new file mode 100644
index 000000000..6c8cb50ce
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveSnapshotDetectPornConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponse.php
new file mode 100644
index 000000000..96e9a46df
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveSnapshotDetectPornConfigResponse
+ */
+ 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 = DescribeLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody.php
new file mode 100644
index 000000000..bf64654db
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody.php
@@ -0,0 +1,120 @@
+ 'LiveSnapshotDetectPornConfigList',
+ 'order' => 'Order',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveSnapshotDetectPornConfigList) {
+ $res['LiveSnapshotDetectPornConfigList'] = null !== $this->liveSnapshotDetectPornConfigList ? $this->liveSnapshotDetectPornConfigList->toMap() : null;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveSnapshotDetectPornConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveSnapshotDetectPornConfigList'])) {
+ $model->liveSnapshotDetectPornConfigList = liveSnapshotDetectPornConfigList::fromMap($map['LiveSnapshotDetectPornConfigList']);
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList.php
new file mode 100644
index 000000000..c19d50907
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList.php
@@ -0,0 +1,60 @@
+ 'LiveSnapshotDetectPornConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveSnapshotDetectPornConfig) {
+ $res['LiveSnapshotDetectPornConfig'] = [];
+ if (null !== $this->liveSnapshotDetectPornConfig && \is_array($this->liveSnapshotDetectPornConfig)) {
+ $n = 0;
+ foreach ($this->liveSnapshotDetectPornConfig as $item) {
+ $res['LiveSnapshotDetectPornConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveSnapshotDetectPornConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveSnapshotDetectPornConfig'])) {
+ if (!empty($map['LiveSnapshotDetectPornConfig'])) {
+ $model->liveSnapshotDetectPornConfig = [];
+ $n = 0;
+ foreach ($map['LiveSnapshotDetectPornConfig'] as $item) {
+ $model->liveSnapshotDetectPornConfig[$n++] = null !== $item ? liveSnapshotDetectPornConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig.php
new file mode 100644
index 000000000..24661a373
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig.php
@@ -0,0 +1,120 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'interval' => 'Interval',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'scenes' => 'Scenes',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->scenes) {
+ $res['Scenes'] = null !== $this->scenes ? $this->scenes->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveSnapshotDetectPornConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['Scenes'])) {
+ $model->scenes = scenes::fromMap($map['Scenes']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig/scenes.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig/scenes.php
new file mode 100644
index 000000000..f99b631a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig/scenes.php
@@ -0,0 +1,49 @@
+ 'scene',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->scene) {
+ $res['scene'] = $this->scene;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return scenes
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['scene'])) {
+ if (!empty($map['scene'])) {
+ $model->scene = $map['scene'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigRequest.php
new file mode 100644
index 000000000..57e04ff74
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveSnapshotNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponse.php
new file mode 100644
index 000000000..d5687dc6c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveSnapshotNotifyConfigResponse
+ */
+ 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 = DescribeLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponseBody.php
new file mode 100644
index 000000000..bc3897000
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponseBody.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'notifyAuthKey' => 'NotifyAuthKey',
+ 'notifyReqAuth' => 'NotifyReqAuth',
+ 'notifyUrl' => 'NotifyUrl',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyAuthKey) {
+ $res['NotifyAuthKey'] = $this->notifyAuthKey;
+ }
+ if (null !== $this->notifyReqAuth) {
+ $res['NotifyReqAuth'] = $this->notifyReqAuth;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveSnapshotNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyAuthKey'])) {
+ $model->notifyAuthKey = $map['NotifyAuthKey'];
+ }
+ if (isset($map['NotifyReqAuth'])) {
+ $model->notifyReqAuth = $map['NotifyReqAuth'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingRequest.php
new file mode 100644
index 000000000..5f491d965
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'url' => 'Url',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->url) {
+ $res['Url'] = $this->url;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamAuthCheckingRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Url'])) {
+ $model->url = $map['Url'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponse.php
new file mode 100644
index 000000000..5af82ea80
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamAuthCheckingResponse
+ */
+ 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 = DescribeLiveStreamAuthCheckingResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponseBody.php
new file mode 100644
index 000000000..aa8529de5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponseBody.php
@@ -0,0 +1,71 @@
+ 'Description',
+ 'requestId' => 'RequestId',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamAuthCheckingResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataRequest.php
new file mode 100644
index 000000000..f23d77c96
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamBitRateDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponse.php
new file mode 100644
index 000000000..937b1dd05
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamBitRateDataResponse
+ */
+ 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 = DescribeLiveStreamBitRateDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody.php
new file mode 100644
index 000000000..b043d2a64
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'FrameRateAndBitRateInfos',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->frameRateAndBitRateInfos) {
+ $res['FrameRateAndBitRateInfos'] = null !== $this->frameRateAndBitRateInfos ? $this->frameRateAndBitRateInfos->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamBitRateDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FrameRateAndBitRateInfos'])) {
+ $model->frameRateAndBitRateInfos = frameRateAndBitRateInfos::fromMap($map['FrameRateAndBitRateInfos']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos.php
new file mode 100644
index 000000000..b766cc316
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos.php
@@ -0,0 +1,60 @@
+ 'FrameRateAndBitRateInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->frameRateAndBitRateInfo) {
+ $res['FrameRateAndBitRateInfo'] = [];
+ if (null !== $this->frameRateAndBitRateInfo && \is_array($this->frameRateAndBitRateInfo)) {
+ $n = 0;
+ foreach ($this->frameRateAndBitRateInfo as $item) {
+ $res['FrameRateAndBitRateInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return frameRateAndBitRateInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FrameRateAndBitRateInfo'])) {
+ if (!empty($map['FrameRateAndBitRateInfo'])) {
+ $model->frameRateAndBitRateInfo = [];
+ $n = 0;
+ foreach ($map['FrameRateAndBitRateInfo'] as $item) {
+ $model->frameRateAndBitRateInfo[$n++] = null !== $item ? frameRateAndBitRateInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php
new file mode 100644
index 000000000..d11349955
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php
@@ -0,0 +1,95 @@
+ 'AudioFrameRate',
+ 'bitRate' => 'BitRate',
+ 'streamUrl' => 'StreamUrl',
+ 'time' => 'Time',
+ 'videoFrameRate' => 'VideoFrameRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioFrameRate) {
+ $res['AudioFrameRate'] = $this->audioFrameRate;
+ }
+ if (null !== $this->bitRate) {
+ $res['BitRate'] = $this->bitRate;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+ if (null !== $this->time) {
+ $res['Time'] = $this->time;
+ }
+ if (null !== $this->videoFrameRate) {
+ $res['VideoFrameRate'] = $this->videoFrameRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return frameRateAndBitRateInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioFrameRate'])) {
+ $model->audioFrameRate = $map['AudioFrameRate'];
+ }
+ if (isset($map['BitRate'])) {
+ $model->bitRate = $map['BitRate'];
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+ if (isset($map['Time'])) {
+ $model->time = $map['Time'];
+ }
+ if (isset($map['VideoFrameRate'])) {
+ $model->videoFrameRate = $map['VideoFrameRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountRequest.php
new file mode 100644
index 000000000..007c9f30b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamCountRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponse.php
new file mode 100644
index 000000000..f23eb3bfb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamCountResponse
+ */
+ 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 = DescribeLiveStreamCountResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody.php
new file mode 100644
index 000000000..fc0509bbc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'streamCountInfos' => 'StreamCountInfos',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamCountInfos) {
+ $res['StreamCountInfos'] = null !== $this->streamCountInfos ? $this->streamCountInfos->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamCountResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamCountInfos'])) {
+ $model->streamCountInfos = streamCountInfos::fromMap($map['StreamCountInfos']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos.php
new file mode 100644
index 000000000..8b593e9d4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos.php
@@ -0,0 +1,60 @@
+ 'StreamCountInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamCountInfo) {
+ $res['StreamCountInfo'] = [];
+ if (null !== $this->streamCountInfo && \is_array($this->streamCountInfo)) {
+ $n = 0;
+ foreach ($this->streamCountInfo as $item) {
+ $res['StreamCountInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamCountInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamCountInfo'])) {
+ if (!empty($map['StreamCountInfo'])) {
+ $model->streamCountInfo = [];
+ $n = 0;
+ foreach ($map['StreamCountInfo'] as $item) {
+ $model->streamCountInfo[$n++] = null !== $item ? streamCountInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo.php
new file mode 100644
index 000000000..d9c3ba4cb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo.php
@@ -0,0 +1,84 @@
+ 'Count',
+ 'limit' => 'Limit',
+ 'streamCountDetails' => 'StreamCountDetails',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->limit) {
+ $res['Limit'] = $this->limit;
+ }
+ if (null !== $this->streamCountDetails) {
+ $res['StreamCountDetails'] = null !== $this->streamCountDetails ? $this->streamCountDetails->toMap() : null;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamCountInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['Limit'])) {
+ $model->limit = $map['Limit'];
+ }
+ if (isset($map['StreamCountDetails'])) {
+ $model->streamCountDetails = streamCountDetails::fromMap($map['StreamCountDetails']);
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails.php
new file mode 100644
index 000000000..73f43dfa2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails.php
@@ -0,0 +1,60 @@
+ 'StreamCountDetail',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamCountDetail) {
+ $res['StreamCountDetail'] = [];
+ if (null !== $this->streamCountDetail && \is_array($this->streamCountDetail)) {
+ $n = 0;
+ foreach ($this->streamCountDetail as $item) {
+ $res['StreamCountDetail'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamCountDetails
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamCountDetail'])) {
+ if (!empty($map['StreamCountDetail'])) {
+ $model->streamCountDetail = [];
+ $n = 0;
+ foreach ($map['StreamCountDetail'] as $item) {
+ $model->streamCountDetail[$n++] = null !== $item ? streamCountDetail::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails/streamCountDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails/streamCountDetail.php
new file mode 100644
index 000000000..09c82aeac
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails/streamCountDetail.php
@@ -0,0 +1,71 @@
+ 'Count',
+ 'format' => 'Format',
+ 'videoDataRate' => 'VideoDataRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->format) {
+ $res['Format'] = $this->format;
+ }
+ if (null !== $this->videoDataRate) {
+ $res['VideoDataRate'] = $this->videoDataRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamCountDetail
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['Format'])) {
+ $model->format = $map['Format'];
+ }
+ if (isset($map['VideoDataRate'])) {
+ $model->videoDataRate = $map['VideoDataRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigRequest.php
new file mode 100644
index 000000000..f0bea42f2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamDelayConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponse.php
new file mode 100644
index 000000000..064ce67a0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamDelayConfigResponse
+ */
+ 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 = DescribeLiveStreamDelayConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody.php
new file mode 100644
index 000000000..54bdb9d97
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody.php
@@ -0,0 +1,86 @@
+ 'LiveStreamFlvDelayConfig',
+ 'liveStreamHlsDelayConfig' => 'LiveStreamHlsDelayConfig',
+ 'liveStreamRtmpDelayConfig' => 'LiveStreamRtmpDelayConfig',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamFlvDelayConfig) {
+ $res['LiveStreamFlvDelayConfig'] = null !== $this->liveStreamFlvDelayConfig ? $this->liveStreamFlvDelayConfig->toMap() : null;
+ }
+ if (null !== $this->liveStreamHlsDelayConfig) {
+ $res['LiveStreamHlsDelayConfig'] = null !== $this->liveStreamHlsDelayConfig ? $this->liveStreamHlsDelayConfig->toMap() : null;
+ }
+ if (null !== $this->liveStreamRtmpDelayConfig) {
+ $res['LiveStreamRtmpDelayConfig'] = null !== $this->liveStreamRtmpDelayConfig ? $this->liveStreamRtmpDelayConfig->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamDelayConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamFlvDelayConfig'])) {
+ $model->liveStreamFlvDelayConfig = liveStreamFlvDelayConfig::fromMap($map['LiveStreamFlvDelayConfig']);
+ }
+ if (isset($map['LiveStreamHlsDelayConfig'])) {
+ $model->liveStreamHlsDelayConfig = liveStreamHlsDelayConfig::fromMap($map['LiveStreamHlsDelayConfig']);
+ }
+ if (isset($map['LiveStreamRtmpDelayConfig'])) {
+ $model->liveStreamRtmpDelayConfig = liveStreamRtmpDelayConfig::fromMap($map['LiveStreamRtmpDelayConfig']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamFlvDelayConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamFlvDelayConfig.php
new file mode 100644
index 000000000..59f0605e4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamFlvDelayConfig.php
@@ -0,0 +1,59 @@
+ 'Delay',
+ 'level' => 'Level',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->delay) {
+ $res['Delay'] = $this->delay;
+ }
+ if (null !== $this->level) {
+ $res['Level'] = $this->level;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamFlvDelayConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Delay'])) {
+ $model->delay = $map['Delay'];
+ }
+ if (isset($map['Level'])) {
+ $model->level = $map['Level'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamHlsDelayConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamHlsDelayConfig.php
new file mode 100644
index 000000000..99a1573d1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamHlsDelayConfig.php
@@ -0,0 +1,59 @@
+ 'Delay',
+ 'level' => 'Level',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->delay) {
+ $res['Delay'] = $this->delay;
+ }
+ if (null !== $this->level) {
+ $res['Level'] = $this->level;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamHlsDelayConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Delay'])) {
+ $model->delay = $map['Delay'];
+ }
+ if (isset($map['Level'])) {
+ $model->level = $map['Level'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamRtmpDelayConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamRtmpDelayConfig.php
new file mode 100644
index 000000000..8e6067462
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamRtmpDelayConfig.php
@@ -0,0 +1,59 @@
+ 'Delay',
+ 'level' => 'Level',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->delay) {
+ $res['Delay'] = $this->delay;
+ }
+ if (null !== $this->level) {
+ $res['Level'] = $this->level;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamRtmpDelayConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Delay'])) {
+ $model->delay = $map['Delay'];
+ }
+ if (isset($map['Level'])) {
+ $model->level = $map['Level'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumRequest.php
new file mode 100644
index 000000000..61d8a83d2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamHistoryUserNumRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponse.php
new file mode 100644
index 000000000..62710c515
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamHistoryUserNumResponse
+ */
+ 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 = DescribeLiveStreamHistoryUserNumResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody.php
new file mode 100644
index 000000000..31f30b26f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveStreamUserNumInfos',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamUserNumInfos) {
+ $res['LiveStreamUserNumInfos'] = null !== $this->liveStreamUserNumInfos ? $this->liveStreamUserNumInfos->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamHistoryUserNumResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamUserNumInfos'])) {
+ $model->liveStreamUserNumInfos = liveStreamUserNumInfos::fromMap($map['LiveStreamUserNumInfos']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos.php
new file mode 100644
index 000000000..599545575
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos.php
@@ -0,0 +1,60 @@
+ 'LiveStreamUserNumInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamUserNumInfo) {
+ $res['LiveStreamUserNumInfo'] = [];
+ if (null !== $this->liveStreamUserNumInfo && \is_array($this->liveStreamUserNumInfo)) {
+ $n = 0;
+ foreach ($this->liveStreamUserNumInfo as $item) {
+ $res['LiveStreamUserNumInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamUserNumInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamUserNumInfo'])) {
+ if (!empty($map['LiveStreamUserNumInfo'])) {
+ $model->liveStreamUserNumInfo = [];
+ $n = 0;
+ foreach ($map['LiveStreamUserNumInfo'] as $item) {
+ $model->liveStreamUserNumInfo[$n++] = null !== $item ? liveStreamUserNumInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos/liveStreamUserNumInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos/liveStreamUserNumInfo.php
new file mode 100644
index 000000000..6ff6530b2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos/liveStreamUserNumInfo.php
@@ -0,0 +1,59 @@
+ 'StreamTime',
+ 'userNum' => 'UserNum',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamTime) {
+ $res['StreamTime'] = $this->streamTime;
+ }
+ if (null !== $this->userNum) {
+ $res['UserNum'] = $this->userNum;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamUserNumInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamTime'])) {
+ $model->streamTime = $map['StreamTime'];
+ }
+ if (isset($map['UserNum'])) {
+ $model->userNum = $map['UserNum'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataRequest.php
new file mode 100644
index 000000000..0002dbd52
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataRequest.php
@@ -0,0 +1,131 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'nextPageToken' => 'NextPageToken',
+ 'ownerId' => 'OwnerId',
+ 'protocol' => 'Protocol',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->nextPageToken) {
+ $res['NextPageToken'] = $this->nextPageToken;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->protocol) {
+ $res['Protocol'] = $this->protocol;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamMetricDetailDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['NextPageToken'])) {
+ $model->nextPageToken = $map['NextPageToken'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Protocol'])) {
+ $model->protocol = $map['Protocol'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponse.php
new file mode 100644
index 000000000..e150160c8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamMetricDetailDataResponse
+ */
+ 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 = DescribeLiveStreamMetricDetailDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody.php
new file mode 100644
index 000000000..161d552a5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody.php
@@ -0,0 +1,120 @@
+ 'DomainName',
+ 'endTime' => 'EndTime',
+ 'nextPageToken' => 'NextPageToken',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ 'streamDetailData' => 'StreamDetailData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->nextPageToken) {
+ $res['NextPageToken'] = $this->nextPageToken;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamDetailData) {
+ $res['StreamDetailData'] = null !== $this->streamDetailData ? $this->streamDetailData->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamMetricDetailDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['NextPageToken'])) {
+ $model->nextPageToken = $map['NextPageToken'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamDetailData'])) {
+ $model->streamDetailData = streamDetailData::fromMap($map['StreamDetailData']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData.php
new file mode 100644
index 000000000..068d5dda1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData.php
@@ -0,0 +1,60 @@
+ 'StreamData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamData) {
+ $res['StreamData'] = [];
+ if (null !== $this->streamData && \is_array($this->streamData)) {
+ $n = 0;
+ foreach ($this->streamData as $item) {
+ $res['StreamData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamDetailData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamData'])) {
+ if (!empty($map['StreamData'])) {
+ $model->streamData = [];
+ $n = 0;
+ foreach ($map['StreamData'] as $item) {
+ $model->streamData[$n++] = null !== $item ? streamData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData/streamData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData/streamData.php
new file mode 100644
index 000000000..a5d28f7bf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData/streamData.php
@@ -0,0 +1,287 @@
+ 'AppName',
+ 'bps' => 'Bps',
+ 'count' => 'Count',
+ 'flvBps' => 'FlvBps',
+ 'flvCount' => 'FlvCount',
+ 'flvTraffic' => 'FlvTraffic',
+ 'hlsBps' => 'HlsBps',
+ 'hlsCount' => 'HlsCount',
+ 'hlsTraffic' => 'HlsTraffic',
+ 'p2pBps' => 'P2pBps',
+ 'p2pCount' => 'P2pCount',
+ 'p2pTraffic' => 'P2pTraffic',
+ 'rtmpBps' => 'RtmpBps',
+ 'rtmpCount' => 'RtmpCount',
+ 'rtmpTraffic' => 'RtmpTraffic',
+ 'rtsBps' => 'RtsBps',
+ 'rtsCount' => 'RtsCount',
+ 'rtsTraffic' => 'RtsTraffic',
+ 'streamName' => 'StreamName',
+ 'timeStamp' => 'TimeStamp',
+ 'traffic' => 'Traffic',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->bps) {
+ $res['Bps'] = $this->bps;
+ }
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->flvBps) {
+ $res['FlvBps'] = $this->flvBps;
+ }
+ if (null !== $this->flvCount) {
+ $res['FlvCount'] = $this->flvCount;
+ }
+ if (null !== $this->flvTraffic) {
+ $res['FlvTraffic'] = $this->flvTraffic;
+ }
+ if (null !== $this->hlsBps) {
+ $res['HlsBps'] = $this->hlsBps;
+ }
+ if (null !== $this->hlsCount) {
+ $res['HlsCount'] = $this->hlsCount;
+ }
+ if (null !== $this->hlsTraffic) {
+ $res['HlsTraffic'] = $this->hlsTraffic;
+ }
+ if (null !== $this->p2pBps) {
+ $res['P2pBps'] = $this->p2pBps;
+ }
+ if (null !== $this->p2pCount) {
+ $res['P2pCount'] = $this->p2pCount;
+ }
+ if (null !== $this->p2pTraffic) {
+ $res['P2pTraffic'] = $this->p2pTraffic;
+ }
+ if (null !== $this->rtmpBps) {
+ $res['RtmpBps'] = $this->rtmpBps;
+ }
+ if (null !== $this->rtmpCount) {
+ $res['RtmpCount'] = $this->rtmpCount;
+ }
+ if (null !== $this->rtmpTraffic) {
+ $res['RtmpTraffic'] = $this->rtmpTraffic;
+ }
+ if (null !== $this->rtsBps) {
+ $res['RtsBps'] = $this->rtsBps;
+ }
+ if (null !== $this->rtsCount) {
+ $res['RtsCount'] = $this->rtsCount;
+ }
+ if (null !== $this->rtsTraffic) {
+ $res['RtsTraffic'] = $this->rtsTraffic;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->traffic) {
+ $res['Traffic'] = $this->traffic;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Bps'])) {
+ $model->bps = $map['Bps'];
+ }
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['FlvBps'])) {
+ $model->flvBps = $map['FlvBps'];
+ }
+ if (isset($map['FlvCount'])) {
+ $model->flvCount = $map['FlvCount'];
+ }
+ if (isset($map['FlvTraffic'])) {
+ $model->flvTraffic = $map['FlvTraffic'];
+ }
+ if (isset($map['HlsBps'])) {
+ $model->hlsBps = $map['HlsBps'];
+ }
+ if (isset($map['HlsCount'])) {
+ $model->hlsCount = $map['HlsCount'];
+ }
+ if (isset($map['HlsTraffic'])) {
+ $model->hlsTraffic = $map['HlsTraffic'];
+ }
+ if (isset($map['P2pBps'])) {
+ $model->p2pBps = $map['P2pBps'];
+ }
+ if (isset($map['P2pCount'])) {
+ $model->p2pCount = $map['P2pCount'];
+ }
+ if (isset($map['P2pTraffic'])) {
+ $model->p2pTraffic = $map['P2pTraffic'];
+ }
+ if (isset($map['RtmpBps'])) {
+ $model->rtmpBps = $map['RtmpBps'];
+ }
+ if (isset($map['RtmpCount'])) {
+ $model->rtmpCount = $map['RtmpCount'];
+ }
+ if (isset($map['RtmpTraffic'])) {
+ $model->rtmpTraffic = $map['RtmpTraffic'];
+ }
+ if (isset($map['RtsBps'])) {
+ $model->rtsBps = $map['RtsBps'];
+ }
+ if (isset($map['RtsCount'])) {
+ $model->rtsCount = $map['RtsCount'];
+ }
+ if (isset($map['RtsTraffic'])) {
+ $model->rtsTraffic = $map['RtsTraffic'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['Traffic'])) {
+ $model->traffic = $map['Traffic'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListRequest.php
new file mode 100644
index 000000000..2fc94c835
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListRequest.php
@@ -0,0 +1,107 @@
+ 'MonitorId',
+ 'orderRule' => 'OrderRule',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->monitorId) {
+ $res['MonitorId'] = $this->monitorId;
+ }
+ if (null !== $this->orderRule) {
+ $res['OrderRule'] = $this->orderRule;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamMonitorListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MonitorId'])) {
+ $model->monitorId = $map['MonitorId'];
+ }
+ if (isset($map['OrderRule'])) {
+ $model->orderRule = $map['OrderRule'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponse.php
new file mode 100644
index 000000000..3835ead5c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamMonitorListResponse
+ */
+ 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 = DescribeLiveStreamMonitorListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody.php
new file mode 100644
index 000000000..8b952a978
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody.php
@@ -0,0 +1,84 @@
+ 'LiveStreamMonitorList',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamMonitorList) {
+ $res['LiveStreamMonitorList'] = [];
+ if (null !== $this->liveStreamMonitorList && \is_array($this->liveStreamMonitorList)) {
+ $n = 0;
+ foreach ($this->liveStreamMonitorList as $item) {
+ $res['LiveStreamMonitorList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamMonitorListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamMonitorList'])) {
+ if (!empty($map['LiveStreamMonitorList'])) {
+ $model->liveStreamMonitorList = [];
+ $n = 0;
+ foreach ($map['LiveStreamMonitorList'] as $item) {
+ $model->liveStreamMonitorList[$n++] = null !== $item ? liveStreamMonitorList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList.php
new file mode 100644
index 000000000..23771af4c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList.php
@@ -0,0 +1,181 @@
+ 'AudioFrom',
+ 'domain' => 'Domain',
+ 'inputList' => 'InputList',
+ 'monitorId' => 'MonitorId',
+ 'monitorName' => 'MonitorName',
+ 'outputTemplate' => 'OutputTemplate',
+ 'outputUrls' => 'OutputUrls',
+ 'region' => 'Region',
+ 'startTime' => 'StartTime',
+ 'status' => 'Status',
+ 'stopTime' => 'StopTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioFrom) {
+ $res['AudioFrom'] = $this->audioFrom;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->inputList) {
+ $res['InputList'] = [];
+ if (null !== $this->inputList && \is_array($this->inputList)) {
+ $n = 0;
+ foreach ($this->inputList as $item) {
+ $res['InputList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->monitorId) {
+ $res['MonitorId'] = $this->monitorId;
+ }
+ if (null !== $this->monitorName) {
+ $res['MonitorName'] = $this->monitorName;
+ }
+ if (null !== $this->outputTemplate) {
+ $res['OutputTemplate'] = $this->outputTemplate;
+ }
+ if (null !== $this->outputUrls) {
+ $res['OutputUrls'] = null !== $this->outputUrls ? $this->outputUrls->toMap() : null;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+ if (null !== $this->stopTime) {
+ $res['StopTime'] = $this->stopTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamMonitorList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioFrom'])) {
+ $model->audioFrom = $map['AudioFrom'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['InputList'])) {
+ if (!empty($map['InputList'])) {
+ $model->inputList = [];
+ $n = 0;
+ foreach ($map['InputList'] as $item) {
+ $model->inputList[$n++] = null !== $item ? inputList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['MonitorId'])) {
+ $model->monitorId = $map['MonitorId'];
+ }
+ if (isset($map['MonitorName'])) {
+ $model->monitorName = $map['MonitorName'];
+ }
+ if (isset($map['OutputTemplate'])) {
+ $model->outputTemplate = $map['OutputTemplate'];
+ }
+ if (isset($map['OutputUrls'])) {
+ $model->outputUrls = outputUrls::fromMap($map['OutputUrls']);
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+ if (isset($map['StopTime'])) {
+ $model->stopTime = $map['StopTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList.php
new file mode 100644
index 000000000..a036ec096
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList.php
@@ -0,0 +1,109 @@
+ 'Index',
+ 'inputUrl' => 'InputUrl',
+ 'layoutConfig' => 'LayoutConfig',
+ 'layoutId' => 'LayoutId',
+ 'playConfig' => 'PlayConfig',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->index) {
+ $res['Index'] = $this->index;
+ }
+ if (null !== $this->inputUrl) {
+ $res['InputUrl'] = $this->inputUrl;
+ }
+ if (null !== $this->layoutConfig) {
+ $res['LayoutConfig'] = null !== $this->layoutConfig ? $this->layoutConfig->toMap() : null;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->playConfig) {
+ $res['PlayConfig'] = null !== $this->playConfig ? $this->playConfig->toMap() : null;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return inputList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Index'])) {
+ $model->index = $map['Index'];
+ }
+ if (isset($map['InputUrl'])) {
+ $model->inputUrl = $map['InputUrl'];
+ }
+ if (isset($map['LayoutConfig'])) {
+ $model->layoutConfig = layoutConfig::fromMap($map['LayoutConfig']);
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['PlayConfig'])) {
+ $model->playConfig = playConfig::fromMap($map['PlayConfig']);
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/layoutConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/layoutConfig.php
new file mode 100644
index 000000000..e46d5a609
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/layoutConfig.php
@@ -0,0 +1,87 @@
+ 'FillMode',
+ 'positionNormalized' => 'PositionNormalized',
+ 'positionRefer' => 'PositionRefer',
+ 'sizeNormalized' => 'SizeNormalized',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fillMode) {
+ $res['FillMode'] = $this->fillMode;
+ }
+ if (null !== $this->positionNormalized) {
+ $res['PositionNormalized'] = $this->positionNormalized;
+ }
+ if (null !== $this->positionRefer) {
+ $res['PositionRefer'] = $this->positionRefer;
+ }
+ if (null !== $this->sizeNormalized) {
+ $res['SizeNormalized'] = $this->sizeNormalized;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return layoutConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FillMode'])) {
+ $model->fillMode = $map['FillMode'];
+ }
+ if (isset($map['PositionNormalized'])) {
+ if (!empty($map['PositionNormalized'])) {
+ $model->positionNormalized = $map['PositionNormalized'];
+ }
+ }
+ if (isset($map['PositionRefer'])) {
+ $model->positionRefer = $map['PositionRefer'];
+ }
+ if (isset($map['SizeNormalized'])) {
+ if (!empty($map['SizeNormalized'])) {
+ $model->sizeNormalized = $map['SizeNormalized'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/playConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/playConfig.php
new file mode 100644
index 000000000..71dfe0316
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/playConfig.php
@@ -0,0 +1,47 @@
+ 'VolumeRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->volumeRate) {
+ $res['VolumeRate'] = $this->volumeRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return playConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['VolumeRate'])) {
+ $model->volumeRate = $map['VolumeRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/outputUrls.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/outputUrls.php
new file mode 100644
index 000000000..846f6a980
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/outputUrls.php
@@ -0,0 +1,59 @@
+ 'FlvUrl',
+ 'rtmpUrl' => 'RtmpUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->flvUrl) {
+ $res['FlvUrl'] = $this->flvUrl;
+ }
+ if (null !== $this->rtmpUrl) {
+ $res['RtmpUrl'] = $this->rtmpUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return outputUrls
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FlvUrl'])) {
+ $model->flvUrl = $map['FlvUrl'];
+ }
+ if (isset($map['RtmpUrl'])) {
+ $model->rtmpUrl = $map['RtmpUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigRequest.php
new file mode 100644
index 000000000..f7702ab26
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigRequest.php
@@ -0,0 +1,71 @@
+ 'ConfigName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->configName) {
+ $res['ConfigName'] = $this->configName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamOptimizedFeatureConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ConfigName'])) {
+ $model->configName = $map['ConfigName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponse.php
new file mode 100644
index 000000000..45821125b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamOptimizedFeatureConfigResponse
+ */
+ 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 = DescribeLiveStreamOptimizedFeatureConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody.php
new file mode 100644
index 000000000..b6cbf3795
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveStreamOptimizedFeatureConfigList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamOptimizedFeatureConfigList) {
+ $res['LiveStreamOptimizedFeatureConfigList'] = null !== $this->liveStreamOptimizedFeatureConfigList ? $this->liveStreamOptimizedFeatureConfigList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamOptimizedFeatureConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamOptimizedFeatureConfigList'])) {
+ $model->liveStreamOptimizedFeatureConfigList = liveStreamOptimizedFeatureConfigList::fromMap($map['LiveStreamOptimizedFeatureConfigList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList.php
new file mode 100644
index 000000000..c60e6e678
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList.php
@@ -0,0 +1,60 @@
+ 'LiveStreamOptimizedFeatureConfig',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamOptimizedFeatureConfig) {
+ $res['LiveStreamOptimizedFeatureConfig'] = [];
+ if (null !== $this->liveStreamOptimizedFeatureConfig && \is_array($this->liveStreamOptimizedFeatureConfig)) {
+ $n = 0;
+ foreach ($this->liveStreamOptimizedFeatureConfig as $item) {
+ $res['LiveStreamOptimizedFeatureConfig'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamOptimizedFeatureConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamOptimizedFeatureConfig'])) {
+ if (!empty($map['LiveStreamOptimizedFeatureConfig'])) {
+ $model->liveStreamOptimizedFeatureConfig = [];
+ $n = 0;
+ foreach ($map['LiveStreamOptimizedFeatureConfig'] as $item) {
+ $model->liveStreamOptimizedFeatureConfig[$n++] = null !== $item ? liveStreamOptimizedFeatureConfig::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList/liveStreamOptimizedFeatureConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList/liveStreamOptimizedFeatureConfig.php
new file mode 100644
index 000000000..b475aa3b2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList/liveStreamOptimizedFeatureConfig.php
@@ -0,0 +1,83 @@
+ 'ConfigName',
+ 'configStatus' => 'ConfigStatus',
+ 'configValue' => 'ConfigValue',
+ 'domainName' => 'DomainName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->configName) {
+ $res['ConfigName'] = $this->configName;
+ }
+ if (null !== $this->configStatus) {
+ $res['ConfigStatus'] = $this->configStatus;
+ }
+ if (null !== $this->configValue) {
+ $res['ConfigValue'] = $this->configValue;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamOptimizedFeatureConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ConfigName'])) {
+ $model->configName = $map['ConfigName'];
+ }
+ if (isset($map['ConfigStatus'])) {
+ $model->configStatus = $map['ConfigStatus'];
+ }
+ if (isset($map['ConfigValue'])) {
+ $model->configValue = $map['ConfigValue'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentRequest.php
new file mode 100644
index 000000000..f17cad63b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamRecordContentRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponse.php
new file mode 100644
index 000000000..8839685e5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamRecordContentResponse
+ */
+ 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 = DescribeLiveStreamRecordContentResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody.php
new file mode 100644
index 000000000..fb3e6bd0d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody.php
@@ -0,0 +1,60 @@
+ 'RecordContentInfoList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordContentInfoList) {
+ $res['RecordContentInfoList'] = null !== $this->recordContentInfoList ? $this->recordContentInfoList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamRecordContentResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordContentInfoList'])) {
+ $model->recordContentInfoList = recordContentInfoList::fromMap($map['RecordContentInfoList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList.php
new file mode 100644
index 000000000..6c7b2ae04
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList.php
@@ -0,0 +1,60 @@
+ 'RecordContentInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordContentInfo) {
+ $res['RecordContentInfo'] = [];
+ if (null !== $this->recordContentInfo && \is_array($this->recordContentInfo)) {
+ $n = 0;
+ foreach ($this->recordContentInfo as $item) {
+ $res['RecordContentInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordContentInfoList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordContentInfo'])) {
+ if (!empty($map['RecordContentInfo'])) {
+ $model->recordContentInfo = [];
+ $n = 0;
+ foreach ($map['RecordContentInfo'] as $item) {
+ $model->recordContentInfo[$n++] = null !== $item ? recordContentInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList/recordContentInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList/recordContentInfo.php
new file mode 100644
index 000000000..8457ab017
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList/recordContentInfo.php
@@ -0,0 +1,107 @@
+ 'Duration',
+ 'endTime' => 'EndTime',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObjectPrefix' => 'OssObjectPrefix',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObjectPrefix) {
+ $res['OssObjectPrefix'] = $this->ossObjectPrefix;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordContentInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObjectPrefix'])) {
+ $model->ossObjectPrefix = $map['OssObjectPrefix'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileRequest.php
new file mode 100644
index 000000000..426957e38
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileRequest.php
@@ -0,0 +1,107 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'recordId' => 'RecordId',
+ 'securityToken' => 'SecurityToken',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamRecordIndexFileRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponse.php
new file mode 100644
index 000000000..6fc4d28f7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamRecordIndexFileResponse
+ */
+ 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 = DescribeLiveStreamRecordIndexFileResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody.php
new file mode 100644
index 000000000..520dc18dc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody.php
@@ -0,0 +1,60 @@
+ 'RecordIndexInfo',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordIndexInfo) {
+ $res['RecordIndexInfo'] = null !== $this->recordIndexInfo ? $this->recordIndexInfo->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamRecordIndexFileResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordIndexInfo'])) {
+ $model->recordIndexInfo = recordIndexInfo::fromMap($map['RecordIndexInfo']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody/recordIndexInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody/recordIndexInfo.php
new file mode 100644
index 000000000..a5beade1e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody/recordIndexInfo.php
@@ -0,0 +1,203 @@
+ 'AppName',
+ 'createTime' => 'CreateTime',
+ 'domainName' => 'DomainName',
+ 'duration' => 'Duration',
+ 'endTime' => 'EndTime',
+ 'height' => 'Height',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'recordId' => 'RecordId',
+ 'recordUrl' => 'RecordUrl',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+ if (null !== $this->recordUrl) {
+ $res['RecordUrl'] = $this->recordUrl;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordIndexInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+ if (isset($map['RecordUrl'])) {
+ $model->recordUrl = $map['RecordUrl'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesRequest.php
new file mode 100644
index 000000000..ae760cb16
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesRequest.php
@@ -0,0 +1,155 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'securityToken' => 'SecurityToken',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamRecordIndexFilesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponse.php
new file mode 100644
index 000000000..5ab65fbb3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamRecordIndexFilesResponse
+ */
+ 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 = DescribeLiveStreamRecordIndexFilesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody.php
new file mode 100644
index 000000000..28a555e27
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody.php
@@ -0,0 +1,120 @@
+ 'Order',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'recordIndexInfoList' => 'RecordIndexInfoList',
+ 'requestId' => 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->recordIndexInfoList) {
+ $res['RecordIndexInfoList'] = null !== $this->recordIndexInfoList ? $this->recordIndexInfoList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamRecordIndexFilesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RecordIndexInfoList'])) {
+ $model->recordIndexInfoList = recordIndexInfoList::fromMap($map['RecordIndexInfoList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList.php
new file mode 100644
index 000000000..21b287d90
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList.php
@@ -0,0 +1,60 @@
+ 'RecordIndexInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->recordIndexInfo) {
+ $res['RecordIndexInfo'] = [];
+ if (null !== $this->recordIndexInfo && \is_array($this->recordIndexInfo)) {
+ $n = 0;
+ foreach ($this->recordIndexInfo as $item) {
+ $res['RecordIndexInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordIndexInfoList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RecordIndexInfo'])) {
+ if (!empty($map['RecordIndexInfo'])) {
+ $model->recordIndexInfo = [];
+ $n = 0;
+ foreach ($map['RecordIndexInfo'] as $item) {
+ $model->recordIndexInfo[$n++] = null !== $item ? recordIndexInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList/recordIndexInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList/recordIndexInfo.php
new file mode 100644
index 000000000..dc3b3120f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList/recordIndexInfo.php
@@ -0,0 +1,203 @@
+ 'AppName',
+ 'createTime' => 'CreateTime',
+ 'domainName' => 'DomainName',
+ 'duration' => 'Duration',
+ 'endTime' => 'EndTime',
+ 'height' => 'Height',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'recordId' => 'RecordId',
+ 'recordUrl' => 'RecordUrl',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+ if (null !== $this->recordUrl) {
+ $res['RecordUrl'] = $this->recordUrl;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return recordIndexInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+ if (isset($map['RecordUrl'])) {
+ $model->recordUrl = $map['RecordUrl'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoRequest.php
new file mode 100644
index 000000000..a78e5d837
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoRequest.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'limit' => 'Limit',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->limit) {
+ $res['Limit'] = $this->limit;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamSnapshotInfoRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Limit'])) {
+ $model->limit = $map['Limit'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponse.php
new file mode 100644
index 000000000..ed9cb80c3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamSnapshotInfoResponse
+ */
+ 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 = DescribeLiveStreamSnapshotInfoResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody.php
new file mode 100644
index 000000000..637ba5bf2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody.php
@@ -0,0 +1,72 @@
+ 'LiveStreamSnapshotInfoList',
+ 'nextStartTime' => 'NextStartTime',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamSnapshotInfoList) {
+ $res['LiveStreamSnapshotInfoList'] = null !== $this->liveStreamSnapshotInfoList ? $this->liveStreamSnapshotInfoList->toMap() : null;
+ }
+ if (null !== $this->nextStartTime) {
+ $res['NextStartTime'] = $this->nextStartTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamSnapshotInfoResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamSnapshotInfoList'])) {
+ $model->liveStreamSnapshotInfoList = liveStreamSnapshotInfoList::fromMap($map['LiveStreamSnapshotInfoList']);
+ }
+ if (isset($map['NextStartTime'])) {
+ $model->nextStartTime = $map['NextStartTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList.php
new file mode 100644
index 000000000..e8817cdf7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList.php
@@ -0,0 +1,60 @@
+ 'LiveStreamSnapshotInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamSnapshotInfo) {
+ $res['LiveStreamSnapshotInfo'] = [];
+ if (null !== $this->liveStreamSnapshotInfo && \is_array($this->liveStreamSnapshotInfo)) {
+ $n = 0;
+ foreach ($this->liveStreamSnapshotInfo as $item) {
+ $res['LiveStreamSnapshotInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamSnapshotInfoList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamSnapshotInfo'])) {
+ if (!empty($map['LiveStreamSnapshotInfo'])) {
+ $model->liveStreamSnapshotInfo = [];
+ $n = 0;
+ foreach ($map['LiveStreamSnapshotInfo'] as $item) {
+ $model->liveStreamSnapshotInfo[$n++] = null !== $item ? liveStreamSnapshotInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList/liveStreamSnapshotInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList/liveStreamSnapshotInfo.php
new file mode 100644
index 000000000..708a04cfd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList/liveStreamSnapshotInfo.php
@@ -0,0 +1,107 @@
+ 'CreateTime',
+ 'createTimestamp' => 'CreateTimestamp',
+ 'isOverlay' => 'IsOverlay',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->createTimestamp) {
+ $res['CreateTimestamp'] = $this->createTimestamp;
+ }
+ if (null !== $this->isOverlay) {
+ $res['IsOverlay'] = $this->isOverlay;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamSnapshotInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['CreateTimestamp'])) {
+ $model->createTimestamp = $map['CreateTimestamp'];
+ }
+ if (isset($map['IsOverlay'])) {
+ $model->isOverlay = $map['IsOverlay'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateRequest.php
new file mode 100644
index 000000000..32025719d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateRequest.php
@@ -0,0 +1,83 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamStateRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponse.php
new file mode 100644
index 000000000..0f5270e1b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamStateResponse
+ */
+ 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 = DescribeLiveStreamStateResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponseBody.php
new file mode 100644
index 000000000..3e1dd1193
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponseBody.php
@@ -0,0 +1,71 @@
+ 'RequestId',
+ 'streamState' => 'StreamState',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamState) {
+ $res['StreamState'] = $this->streamState;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamStateResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamState'])) {
+ $model->streamState = $map['StreamState'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoRequest.php
new file mode 100644
index 000000000..5a2cf1e4e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoRequest.php
@@ -0,0 +1,59 @@
+ 'DomainTranscodeName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainTranscodeName) {
+ $res['DomainTranscodeName'] = $this->domainTranscodeName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamTranscodeInfoRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainTranscodeName'])) {
+ $model->domainTranscodeName = $map['DomainTranscodeName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponse.php
new file mode 100644
index 000000000..5f0ddf736
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamTranscodeInfoResponse
+ */
+ 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 = DescribeLiveStreamTranscodeInfoResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody.php
new file mode 100644
index 000000000..915b9eb86
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody.php
@@ -0,0 +1,60 @@
+ 'DomainTranscodeList',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainTranscodeList) {
+ $res['DomainTranscodeList'] = null !== $this->domainTranscodeList ? $this->domainTranscodeList->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamTranscodeInfoResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainTranscodeList'])) {
+ $model->domainTranscodeList = domainTranscodeList::fromMap($map['DomainTranscodeList']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList.php
new file mode 100644
index 000000000..509f25f41
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList.php
@@ -0,0 +1,60 @@
+ 'DomainTranscodeInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainTranscodeInfo) {
+ $res['DomainTranscodeInfo'] = [];
+ if (null !== $this->domainTranscodeInfo && \is_array($this->domainTranscodeInfo)) {
+ $n = 0;
+ foreach ($this->domainTranscodeInfo as $item) {
+ $res['DomainTranscodeInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainTranscodeList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainTranscodeInfo'])) {
+ if (!empty($map['DomainTranscodeInfo'])) {
+ $model->domainTranscodeInfo = [];
+ $n = 0;
+ foreach ($map['DomainTranscodeInfo'] as $item) {
+ $model->domainTranscodeInfo[$n++] = null !== $item ? domainTranscodeInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo.php
new file mode 100644
index 000000000..a3b47b417
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo.php
@@ -0,0 +1,109 @@
+ 'CustomTranscodeParameters',
+ 'encryptParameters' => 'EncryptParameters',
+ 'isLazy' => 'IsLazy',
+ 'transcodeApp' => 'TranscodeApp',
+ 'transcodeName' => 'TranscodeName',
+ 'transcodeTemplate' => 'TranscodeTemplate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->customTranscodeParameters) {
+ $res['CustomTranscodeParameters'] = null !== $this->customTranscodeParameters ? $this->customTranscodeParameters->toMap() : null;
+ }
+ if (null !== $this->encryptParameters) {
+ $res['EncryptParameters'] = null !== $this->encryptParameters ? $this->encryptParameters->toMap() : null;
+ }
+ if (null !== $this->isLazy) {
+ $res['IsLazy'] = $this->isLazy;
+ }
+ if (null !== $this->transcodeApp) {
+ $res['TranscodeApp'] = $this->transcodeApp;
+ }
+ if (null !== $this->transcodeName) {
+ $res['TranscodeName'] = $this->transcodeName;
+ }
+ if (null !== $this->transcodeTemplate) {
+ $res['TranscodeTemplate'] = $this->transcodeTemplate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domainTranscodeInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CustomTranscodeParameters'])) {
+ $model->customTranscodeParameters = customTranscodeParameters::fromMap($map['CustomTranscodeParameters']);
+ }
+ if (isset($map['EncryptParameters'])) {
+ $model->encryptParameters = encryptParameters::fromMap($map['EncryptParameters']);
+ }
+ if (isset($map['IsLazy'])) {
+ $model->isLazy = $map['IsLazy'];
+ }
+ if (isset($map['TranscodeApp'])) {
+ $model->transcodeApp = $map['TranscodeApp'];
+ }
+ if (isset($map['TranscodeName'])) {
+ $model->transcodeName = $map['TranscodeName'];
+ }
+ if (isset($map['TranscodeTemplate'])) {
+ $model->transcodeTemplate = $map['TranscodeTemplate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/customTranscodeParameters.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/customTranscodeParameters.php
new file mode 100644
index 000000000..11c025a3f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/customTranscodeParameters.php
@@ -0,0 +1,203 @@
+ 'AudioBitrate',
+ 'audioChannelNum' => 'AudioChannelNum',
+ 'audioCodec' => 'AudioCodec',
+ 'audioProfile' => 'AudioProfile',
+ 'audioRate' => 'AudioRate',
+ 'bframes' => 'Bframes',
+ 'FPS' => 'FPS',
+ 'gop' => 'Gop',
+ 'height' => 'Height',
+ 'rtsFlag' => 'RtsFlag',
+ 'templateType' => 'TemplateType',
+ 'videoBitrate' => 'VideoBitrate',
+ 'videoProfile' => 'VideoProfile',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioBitrate) {
+ $res['AudioBitrate'] = $this->audioBitrate;
+ }
+ if (null !== $this->audioChannelNum) {
+ $res['AudioChannelNum'] = $this->audioChannelNum;
+ }
+ if (null !== $this->audioCodec) {
+ $res['AudioCodec'] = $this->audioCodec;
+ }
+ if (null !== $this->audioProfile) {
+ $res['AudioProfile'] = $this->audioProfile;
+ }
+ if (null !== $this->audioRate) {
+ $res['AudioRate'] = $this->audioRate;
+ }
+ if (null !== $this->bframes) {
+ $res['Bframes'] = $this->bframes;
+ }
+ if (null !== $this->FPS) {
+ $res['FPS'] = $this->FPS;
+ }
+ if (null !== $this->gop) {
+ $res['Gop'] = $this->gop;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->rtsFlag) {
+ $res['RtsFlag'] = $this->rtsFlag;
+ }
+ if (null !== $this->templateType) {
+ $res['TemplateType'] = $this->templateType;
+ }
+ if (null !== $this->videoBitrate) {
+ $res['VideoBitrate'] = $this->videoBitrate;
+ }
+ if (null !== $this->videoProfile) {
+ $res['VideoProfile'] = $this->videoProfile;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return customTranscodeParameters
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioBitrate'])) {
+ $model->audioBitrate = $map['AudioBitrate'];
+ }
+ if (isset($map['AudioChannelNum'])) {
+ $model->audioChannelNum = $map['AudioChannelNum'];
+ }
+ if (isset($map['AudioCodec'])) {
+ $model->audioCodec = $map['AudioCodec'];
+ }
+ if (isset($map['AudioProfile'])) {
+ $model->audioProfile = $map['AudioProfile'];
+ }
+ if (isset($map['AudioRate'])) {
+ $model->audioRate = $map['AudioRate'];
+ }
+ if (isset($map['Bframes'])) {
+ $model->bframes = $map['Bframes'];
+ }
+ if (isset($map['FPS'])) {
+ $model->FPS = $map['FPS'];
+ }
+ if (isset($map['Gop'])) {
+ $model->gop = $map['Gop'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['RtsFlag'])) {
+ $model->rtsFlag = $map['RtsFlag'];
+ }
+ if (isset($map['TemplateType'])) {
+ $model->templateType = $map['TemplateType'];
+ }
+ if (isset($map['VideoBitrate'])) {
+ $model->videoBitrate = $map['VideoBitrate'];
+ }
+ if (isset($map['VideoProfile'])) {
+ $model->videoProfile = $map['VideoProfile'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/encryptParameters.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/encryptParameters.php
new file mode 100644
index 000000000..4b4eaae25
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/encryptParameters.php
@@ -0,0 +1,71 @@
+ 'EncryptType',
+ 'kmsKeyExpireInterval' => 'KmsKeyExpireInterval',
+ 'kmsKeyID' => 'KmsKeyID',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->encryptType) {
+ $res['EncryptType'] = $this->encryptType;
+ }
+ if (null !== $this->kmsKeyExpireInterval) {
+ $res['KmsKeyExpireInterval'] = $this->kmsKeyExpireInterval;
+ }
+ if (null !== $this->kmsKeyID) {
+ $res['KmsKeyID'] = $this->kmsKeyID;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return encryptParameters
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EncryptType'])) {
+ $model->encryptType = $map['EncryptType'];
+ }
+ if (isset($map['KmsKeyExpireInterval'])) {
+ $model->kmsKeyExpireInterval = $map['KmsKeyExpireInterval'];
+ }
+ if (isset($map['KmsKeyID'])) {
+ $model->kmsKeyID = $map['KmsKeyID'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumRequest.php
new file mode 100644
index 000000000..682c70b59
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamTranscodeStreamNumRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponse.php
new file mode 100644
index 000000000..ff1bef243
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamTranscodeStreamNumResponse
+ */
+ 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 = DescribeLiveStreamTranscodeStreamNumResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponseBody.php
new file mode 100644
index 000000000..484161774
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponseBody.php
@@ -0,0 +1,95 @@
+ 'LazyTranscodedNumber',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ 'transcodedNumber' => 'TranscodedNumber',
+ 'untranscodeNumber' => 'UntranscodeNumber',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->lazyTranscodedNumber) {
+ $res['LazyTranscodedNumber'] = $this->lazyTranscodedNumber;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+ if (null !== $this->transcodedNumber) {
+ $res['TranscodedNumber'] = $this->transcodedNumber;
+ }
+ if (null !== $this->untranscodeNumber) {
+ $res['UntranscodeNumber'] = $this->untranscodeNumber;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamTranscodeStreamNumResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LazyTranscodedNumber'])) {
+ $model->lazyTranscodedNumber = $map['LazyTranscodedNumber'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+ if (isset($map['TranscodedNumber'])) {
+ $model->transcodedNumber = $map['TranscodedNumber'];
+ }
+ if (isset($map['UntranscodeNumber'])) {
+ $model->untranscodeNumber = $map['UntranscodeNumber'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesRequest.php
new file mode 100644
index 000000000..4eef88e05
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'pageNumber' => 'PageNumber',
+ 'pageSize' => 'PageSize',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNumber) {
+ $res['PageNumber'] = $this->pageNumber;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamWatermarkRulesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNumber'])) {
+ $model->pageNumber = $map['PageNumber'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponse.php
new file mode 100644
index 000000000..18ce25e26
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamWatermarkRulesResponse
+ */
+ 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 = DescribeLiveStreamWatermarkRulesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody.php
new file mode 100644
index 000000000..f5374079b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'ruleInfoList' => 'RuleInfoList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->ruleInfoList) {
+ $res['RuleInfoList'] = null !== $this->ruleInfoList ? $this->ruleInfoList->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamWatermarkRulesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['RuleInfoList'])) {
+ $model->ruleInfoList = ruleInfoList::fromMap($map['RuleInfoList']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList.php
new file mode 100644
index 000000000..8c58794d4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList.php
@@ -0,0 +1,60 @@
+ 'RuleInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ruleInfo) {
+ $res['RuleInfo'] = [];
+ if (null !== $this->ruleInfo && \is_array($this->ruleInfo)) {
+ $n = 0;
+ foreach ($this->ruleInfo as $item) {
+ $res['RuleInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ruleInfoList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RuleInfo'])) {
+ if (!empty($map['RuleInfo'])) {
+ $model->ruleInfo = [];
+ $n = 0;
+ foreach ($map['RuleInfo'] as $item) {
+ $model->ruleInfo[$n++] = null !== $item ? ruleInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList/ruleInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList/ruleInfo.php
new file mode 100644
index 000000000..e54bf5b52
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList/ruleInfo.php
@@ -0,0 +1,119 @@
+ 'App',
+ 'description' => 'Description',
+ 'domain' => 'Domain',
+ 'name' => 'Name',
+ 'ruleId' => 'RuleId',
+ 'stream' => 'Stream',
+ 'templateId' => 'TemplateId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->name) {
+ $res['Name'] = $this->name;
+ }
+ if (null !== $this->ruleId) {
+ $res['RuleId'] = $this->ruleId;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ruleInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['Name'])) {
+ $model->name = $map['Name'];
+ }
+ if (isset($map['RuleId'])) {
+ $model->ruleId = $map['RuleId'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksRequest.php
new file mode 100644
index 000000000..218df6797
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'pageNumber' => 'PageNumber',
+ 'pageSize' => 'PageSize',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNumber) {
+ $res['PageNumber'] = $this->pageNumber;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamWatermarksRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNumber'])) {
+ $model->pageNumber = $map['PageNumber'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponse.php
new file mode 100644
index 000000000..c9f28df01
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamWatermarksResponse
+ */
+ 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 = DescribeLiveStreamWatermarksResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody.php
new file mode 100644
index 000000000..59bb7ba4e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'watermarkList' => 'WatermarkList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->watermarkList) {
+ $res['WatermarkList'] = null !== $this->watermarkList ? $this->watermarkList->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamWatermarksResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['WatermarkList'])) {
+ $model->watermarkList = watermarkList::fromMap($map['WatermarkList']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList.php
new file mode 100644
index 000000000..b0d7ca92b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList.php
@@ -0,0 +1,60 @@
+ 'Watermark',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->watermark) {
+ $res['Watermark'] = [];
+ if (null !== $this->watermark && \is_array($this->watermark)) {
+ $n = 0;
+ foreach ($this->watermark as $item) {
+ $res['Watermark'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return watermarkList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Watermark'])) {
+ if (!empty($map['Watermark'])) {
+ $model->watermark = [];
+ $n = 0;
+ foreach ($map['Watermark'] as $item) {
+ $model->watermark[$n++] = null !== $item ? watermark::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList/watermark.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList/watermark.php
new file mode 100644
index 000000000..0b49aff90
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList/watermark.php
@@ -0,0 +1,179 @@
+ 'Description',
+ 'height' => 'Height',
+ 'name' => 'Name',
+ 'offsetCorner' => 'OffsetCorner',
+ 'pictureUrl' => 'PictureUrl',
+ 'refHeight' => 'RefHeight',
+ 'refWidth' => 'RefWidth',
+ 'templateId' => 'TemplateId',
+ 'transparency' => 'Transparency',
+ 'type' => 'Type',
+ 'XOffset' => 'XOffset',
+ 'YOffset' => 'YOffset',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->name) {
+ $res['Name'] = $this->name;
+ }
+ if (null !== $this->offsetCorner) {
+ $res['OffsetCorner'] = $this->offsetCorner;
+ }
+ if (null !== $this->pictureUrl) {
+ $res['PictureUrl'] = $this->pictureUrl;
+ }
+ if (null !== $this->refHeight) {
+ $res['RefHeight'] = $this->refHeight;
+ }
+ if (null !== $this->refWidth) {
+ $res['RefWidth'] = $this->refWidth;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+ if (null !== $this->transparency) {
+ $res['Transparency'] = $this->transparency;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+ if (null !== $this->XOffset) {
+ $res['XOffset'] = $this->XOffset;
+ }
+ if (null !== $this->YOffset) {
+ $res['YOffset'] = $this->YOffset;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return watermark
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['Name'])) {
+ $model->name = $map['Name'];
+ }
+ if (isset($map['OffsetCorner'])) {
+ $model->offsetCorner = $map['OffsetCorner'];
+ }
+ if (isset($map['PictureUrl'])) {
+ $model->pictureUrl = $map['PictureUrl'];
+ }
+ if (isset($map['RefHeight'])) {
+ $model->refHeight = $map['RefHeight'];
+ }
+ if (isset($map['RefWidth'])) {
+ $model->refWidth = $map['RefWidth'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+ if (isset($map['Transparency'])) {
+ $model->transparency = $map['Transparency'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+ if (isset($map['XOffset'])) {
+ $model->XOffset = $map['XOffset'];
+ }
+ if (isset($map['YOffset'])) {
+ $model->YOffset = $map['YOffset'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListRequest.php
new file mode 100644
index 000000000..ca0b7f767
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsBlockListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponse.php
new file mode 100644
index 000000000..0eca1297f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamsBlockListResponse
+ */
+ 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 = DescribeLiveStreamsBlockListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody.php
new file mode 100644
index 000000000..ea219d3d9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody.php
@@ -0,0 +1,120 @@
+ 'DomainName',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'streamUrls' => 'StreamUrls',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamUrls) {
+ $res['StreamUrls'] = null !== $this->streamUrls ? $this->streamUrls->toMap() : null;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsBlockListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamUrls'])) {
+ $model->streamUrls = streamUrls::fromMap($map['StreamUrls']);
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody/streamUrls.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody/streamUrls.php
new file mode 100644
index 000000000..7a202dc9a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody/streamUrls.php
@@ -0,0 +1,49 @@
+ 'StreamUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamUrls
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamUrl'])) {
+ if (!empty($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryRequest.php
new file mode 100644
index 000000000..a4a6f6e7f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryRequest.php
@@ -0,0 +1,95 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsControlHistoryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponse.php
new file mode 100644
index 000000000..4ee1b06b7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamsControlHistoryResponse
+ */
+ 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 = DescribeLiveStreamsControlHistoryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody.php
new file mode 100644
index 000000000..dadff7052
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody.php
@@ -0,0 +1,60 @@
+ 'ControlInfo',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->controlInfo) {
+ $res['ControlInfo'] = null !== $this->controlInfo ? $this->controlInfo->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsControlHistoryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ControlInfo'])) {
+ $model->controlInfo = controlInfo::fromMap($map['ControlInfo']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo.php
new file mode 100644
index 000000000..f47658900
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo.php
@@ -0,0 +1,60 @@
+ 'LiveStreamControlInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamControlInfo) {
+ $res['LiveStreamControlInfo'] = [];
+ if (null !== $this->liveStreamControlInfo && \is_array($this->liveStreamControlInfo)) {
+ $n = 0;
+ foreach ($this->liveStreamControlInfo as $item) {
+ $res['LiveStreamControlInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return controlInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamControlInfo'])) {
+ if (!empty($map['LiveStreamControlInfo'])) {
+ $model->liveStreamControlInfo = [];
+ $n = 0;
+ foreach ($map['LiveStreamControlInfo'] as $item) {
+ $model->liveStreamControlInfo[$n++] = null !== $item ? liveStreamControlInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo/liveStreamControlInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo/liveStreamControlInfo.php
new file mode 100644
index 000000000..b63518eaf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo/liveStreamControlInfo.php
@@ -0,0 +1,83 @@
+ 'Action',
+ 'clientIP' => 'ClientIP',
+ 'streamName' => 'StreamName',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->action) {
+ $res['Action'] = $this->action;
+ }
+ if (null !== $this->clientIP) {
+ $res['ClientIP'] = $this->clientIP;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamControlInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Action'])) {
+ $model->action = $map['Action'];
+ }
+ if (isset($map['ClientIP'])) {
+ $model->clientIP = $map['ClientIP'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsRequest.php
new file mode 100644
index 000000000..2a1064a82
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsRequest.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'pageNumber' => 'PageNumber',
+ 'pageSize' => 'PageSize',
+ 'startTime' => 'StartTime',
+ 'status' => 'Status',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNumber) {
+ $res['PageNumber'] = $this->pageNumber;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsNotifyRecordsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNumber'])) {
+ $model->pageNumber = $map['PageNumber'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponse.php
new file mode 100644
index 000000000..6a0076d10
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamsNotifyRecordsResponse
+ */
+ 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 = DescribeLiveStreamsNotifyRecordsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody.php
new file mode 100644
index 000000000..a10d003be
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody.php
@@ -0,0 +1,108 @@
+ 'NotifyRecordsInfo',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->notifyRecordsInfo) {
+ $res['NotifyRecordsInfo'] = null !== $this->notifyRecordsInfo ? $this->notifyRecordsInfo->toMap() : null;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsNotifyRecordsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['NotifyRecordsInfo'])) {
+ $model->notifyRecordsInfo = notifyRecordsInfo::fromMap($map['NotifyRecordsInfo']);
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo.php
new file mode 100644
index 000000000..8831fcc72
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo.php
@@ -0,0 +1,60 @@
+ 'LiveStreamNotifyRecordsInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamNotifyRecordsInfo) {
+ $res['LiveStreamNotifyRecordsInfo'] = [];
+ if (null !== $this->liveStreamNotifyRecordsInfo && \is_array($this->liveStreamNotifyRecordsInfo)) {
+ $n = 0;
+ foreach ($this->liveStreamNotifyRecordsInfo as $item) {
+ $res['LiveStreamNotifyRecordsInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return notifyRecordsInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamNotifyRecordsInfo'])) {
+ if (!empty($map['LiveStreamNotifyRecordsInfo'])) {
+ $model->liveStreamNotifyRecordsInfo = [];
+ $n = 0;
+ foreach ($map['LiveStreamNotifyRecordsInfo'] as $item) {
+ $model->liveStreamNotifyRecordsInfo[$n++] = null !== $item ? liveStreamNotifyRecordsInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo/liveStreamNotifyRecordsInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo/liveStreamNotifyRecordsInfo.php
new file mode 100644
index 000000000..72101cfa6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo/liveStreamNotifyRecordsInfo.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'description' => 'Description',
+ 'domainName' => 'DomainName',
+ 'notifyContent' => 'NotifyContent',
+ 'notifyResult' => 'NotifyResult',
+ 'notifyTime' => 'NotifyTime',
+ 'notifyType' => 'NotifyType',
+ 'notifyUrl' => 'NotifyUrl',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyContent) {
+ $res['NotifyContent'] = $this->notifyContent;
+ }
+ if (null !== $this->notifyResult) {
+ $res['NotifyResult'] = $this->notifyResult;
+ }
+ if (null !== $this->notifyTime) {
+ $res['NotifyTime'] = $this->notifyTime;
+ }
+ if (null !== $this->notifyType) {
+ $res['NotifyType'] = $this->notifyType;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamNotifyRecordsInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyContent'])) {
+ $model->notifyContent = $map['NotifyContent'];
+ }
+ if (isset($map['NotifyResult'])) {
+ $model->notifyResult = $map['NotifyResult'];
+ }
+ if (isset($map['NotifyTime'])) {
+ $model->notifyTime = $map['NotifyTime'];
+ }
+ if (isset($map['NotifyType'])) {
+ $model->notifyType = $map['NotifyType'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigRequest.php
new file mode 100644
index 000000000..b38141788
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsNotifyUrlConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponse.php
new file mode 100644
index 000000000..f02cbab6e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamsNotifyUrlConfigResponse
+ */
+ 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 = DescribeLiveStreamsNotifyUrlConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody.php
new file mode 100644
index 000000000..14c1d84e9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody.php
@@ -0,0 +1,60 @@
+ 'LiveStreamsNotifyConfig',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamsNotifyConfig) {
+ $res['LiveStreamsNotifyConfig'] = null !== $this->liveStreamsNotifyConfig ? $this->liveStreamsNotifyConfig->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsNotifyUrlConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamsNotifyConfig'])) {
+ $model->liveStreamsNotifyConfig = liveStreamsNotifyConfig::fromMap($map['LiveStreamsNotifyConfig']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody/liveStreamsNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody/liveStreamsNotifyConfig.php
new file mode 100644
index 000000000..6dfdffa36
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody/liveStreamsNotifyConfig.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'notifyAuthKey' => 'NotifyAuthKey',
+ 'notifyReqAuth' => 'NotifyReqAuth',
+ 'notifyUrl' => 'NotifyUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyAuthKey) {
+ $res['NotifyAuthKey'] = $this->notifyAuthKey;
+ }
+ if (null !== $this->notifyReqAuth) {
+ $res['NotifyReqAuth'] = $this->notifyReqAuth;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamsNotifyConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyAuthKey'])) {
+ $model->notifyAuthKey = $map['NotifyAuthKey'];
+ }
+ if (isset($map['NotifyReqAuth'])) {
+ $model->notifyReqAuth = $map['NotifyReqAuth'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListRequest.php
new file mode 100644
index 000000000..ee86f8a32
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListRequest.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'onlyStream' => 'OnlyStream',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'queryType' => 'QueryType',
+ 'streamName' => 'StreamName',
+ 'streamType' => 'StreamType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->onlyStream) {
+ $res['OnlyStream'] = $this->onlyStream;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->queryType) {
+ $res['QueryType'] = $this->queryType;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->streamType) {
+ $res['StreamType'] = $this->streamType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsOnlineListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OnlyStream'])) {
+ $model->onlyStream = $map['OnlyStream'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['QueryType'])) {
+ $model->queryType = $map['QueryType'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['StreamType'])) {
+ $model->streamType = $map['StreamType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponse.php
new file mode 100644
index 000000000..29388c84d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamsOnlineListResponse
+ */
+ 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 = DescribeLiveStreamsOnlineListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody.php
new file mode 100644
index 000000000..ae8e7fece
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody.php
@@ -0,0 +1,108 @@
+ 'OnlineInfo',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->onlineInfo) {
+ $res['OnlineInfo'] = null !== $this->onlineInfo ? $this->onlineInfo->toMap() : null;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsOnlineListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OnlineInfo'])) {
+ $model->onlineInfo = onlineInfo::fromMap($map['OnlineInfo']);
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo.php
new file mode 100644
index 000000000..54b66f1aa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo.php
@@ -0,0 +1,60 @@
+ 'LiveStreamOnlineInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamOnlineInfo) {
+ $res['LiveStreamOnlineInfo'] = [];
+ if (null !== $this->liveStreamOnlineInfo && \is_array($this->liveStreamOnlineInfo)) {
+ $n = 0;
+ foreach ($this->liveStreamOnlineInfo as $item) {
+ $res['LiveStreamOnlineInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return onlineInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamOnlineInfo'])) {
+ if (!empty($map['LiveStreamOnlineInfo'])) {
+ $model->liveStreamOnlineInfo = [];
+ $n = 0;
+ foreach ($map['LiveStreamOnlineInfo'] as $item) {
+ $model->liveStreamOnlineInfo[$n++] = null !== $item ? liveStreamOnlineInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo/liveStreamOnlineInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo/liveStreamOnlineInfo.php
new file mode 100644
index 000000000..a78b17db2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo/liveStreamOnlineInfo.php
@@ -0,0 +1,215 @@
+ 'AppName',
+ 'audioCodecId' => 'AudioCodecId',
+ 'clientIp' => 'ClientIp',
+ 'domainName' => 'DomainName',
+ 'frameRate' => 'FrameRate',
+ 'height' => 'Height',
+ 'publishDomain' => 'PublishDomain',
+ 'publishTime' => 'PublishTime',
+ 'publishType' => 'PublishType',
+ 'publishUrl' => 'PublishUrl',
+ 'serverIp' => 'ServerIp',
+ 'streamName' => 'StreamName',
+ 'transcoded' => 'Transcoded',
+ 'videoCodecId' => 'VideoCodecId',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->audioCodecId) {
+ $res['AudioCodecId'] = $this->audioCodecId;
+ }
+ if (null !== $this->clientIp) {
+ $res['ClientIp'] = $this->clientIp;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->frameRate) {
+ $res['FrameRate'] = $this->frameRate;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->publishDomain) {
+ $res['PublishDomain'] = $this->publishDomain;
+ }
+ if (null !== $this->publishTime) {
+ $res['PublishTime'] = $this->publishTime;
+ }
+ if (null !== $this->publishType) {
+ $res['PublishType'] = $this->publishType;
+ }
+ if (null !== $this->publishUrl) {
+ $res['PublishUrl'] = $this->publishUrl;
+ }
+ if (null !== $this->serverIp) {
+ $res['ServerIp'] = $this->serverIp;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->transcoded) {
+ $res['Transcoded'] = $this->transcoded;
+ }
+ if (null !== $this->videoCodecId) {
+ $res['VideoCodecId'] = $this->videoCodecId;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamOnlineInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['AudioCodecId'])) {
+ $model->audioCodecId = $map['AudioCodecId'];
+ }
+ if (isset($map['ClientIp'])) {
+ $model->clientIp = $map['ClientIp'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['FrameRate'])) {
+ $model->frameRate = $map['FrameRate'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['PublishDomain'])) {
+ $model->publishDomain = $map['PublishDomain'];
+ }
+ if (isset($map['PublishTime'])) {
+ $model->publishTime = $map['PublishTime'];
+ }
+ if (isset($map['PublishType'])) {
+ $model->publishType = $map['PublishType'];
+ }
+ if (isset($map['PublishUrl'])) {
+ $model->publishUrl = $map['PublishUrl'];
+ }
+ if (isset($map['ServerIp'])) {
+ $model->serverIp = $map['ServerIp'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Transcoded'])) {
+ $model->transcoded = $map['Transcoded'];
+ }
+ if (isset($map['VideoCodecId'])) {
+ $model->videoCodecId = $map['VideoCodecId'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListRequest.php
new file mode 100644
index 000000000..ccf73777c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListRequest.php
@@ -0,0 +1,167 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'orderBy' => 'OrderBy',
+ 'ownerId' => 'OwnerId',
+ 'pageNumber' => 'PageNumber',
+ 'pageSize' => 'PageSize',
+ 'queryType' => 'QueryType',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ 'streamType' => 'StreamType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->orderBy) {
+ $res['OrderBy'] = $this->orderBy;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNumber) {
+ $res['PageNumber'] = $this->pageNumber;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->queryType) {
+ $res['QueryType'] = $this->queryType;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->streamType) {
+ $res['StreamType'] = $this->streamType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsPublishListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OrderBy'])) {
+ $model->orderBy = $map['OrderBy'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNumber'])) {
+ $model->pageNumber = $map['PageNumber'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['QueryType'])) {
+ $model->queryType = $map['QueryType'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['StreamType'])) {
+ $model->streamType = $map['StreamType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponse.php
new file mode 100644
index 000000000..c3d55b5e3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveStreamsPublishListResponse
+ */
+ 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 = DescribeLiveStreamsPublishListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody.php
new file mode 100644
index 000000000..a4406e2b5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody.php
@@ -0,0 +1,108 @@
+ 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'publishInfo' => 'PublishInfo',
+ 'requestId' => 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->publishInfo) {
+ $res['PublishInfo'] = null !== $this->publishInfo ? $this->publishInfo->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveStreamsPublishListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['PublishInfo'])) {
+ $model->publishInfo = publishInfo::fromMap($map['PublishInfo']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo.php
new file mode 100644
index 000000000..fbff2908b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo.php
@@ -0,0 +1,60 @@
+ 'LiveStreamPublishInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveStreamPublishInfo) {
+ $res['LiveStreamPublishInfo'] = [];
+ if (null !== $this->liveStreamPublishInfo && \is_array($this->liveStreamPublishInfo)) {
+ $n = 0;
+ foreach ($this->liveStreamPublishInfo as $item) {
+ $res['LiveStreamPublishInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return publishInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveStreamPublishInfo'])) {
+ if (!empty($map['LiveStreamPublishInfo'])) {
+ $model->liveStreamPublishInfo = [];
+ $n = 0;
+ foreach ($map['LiveStreamPublishInfo'] as $item) {
+ $model->liveStreamPublishInfo[$n++] = null !== $item ? liveStreamPublishInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo/liveStreamPublishInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo/liveStreamPublishInfo.php
new file mode 100644
index 000000000..9fcbd277d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo/liveStreamPublishInfo.php
@@ -0,0 +1,191 @@
+ 'AppName',
+ 'clientAddr' => 'ClientAddr',
+ 'domainName' => 'DomainName',
+ 'edgeNodeAddr' => 'EdgeNodeAddr',
+ 'publishDomain' => 'PublishDomain',
+ 'publishTime' => 'PublishTime',
+ 'publishType' => 'PublishType',
+ 'publishUrl' => 'PublishUrl',
+ 'stopTime' => 'StopTime',
+ 'streamName' => 'StreamName',
+ 'streamUrl' => 'StreamUrl',
+ 'transcodeId' => 'TranscodeId',
+ 'transcoded' => 'Transcoded',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->clientAddr) {
+ $res['ClientAddr'] = $this->clientAddr;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->edgeNodeAddr) {
+ $res['EdgeNodeAddr'] = $this->edgeNodeAddr;
+ }
+ if (null !== $this->publishDomain) {
+ $res['PublishDomain'] = $this->publishDomain;
+ }
+ if (null !== $this->publishTime) {
+ $res['PublishTime'] = $this->publishTime;
+ }
+ if (null !== $this->publishType) {
+ $res['PublishType'] = $this->publishType;
+ }
+ if (null !== $this->publishUrl) {
+ $res['PublishUrl'] = $this->publishUrl;
+ }
+ if (null !== $this->stopTime) {
+ $res['StopTime'] = $this->stopTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+ if (null !== $this->transcodeId) {
+ $res['TranscodeId'] = $this->transcodeId;
+ }
+ if (null !== $this->transcoded) {
+ $res['Transcoded'] = $this->transcoded;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return liveStreamPublishInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['ClientAddr'])) {
+ $model->clientAddr = $map['ClientAddr'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EdgeNodeAddr'])) {
+ $model->edgeNodeAddr = $map['EdgeNodeAddr'];
+ }
+ if (isset($map['PublishDomain'])) {
+ $model->publishDomain = $map['PublishDomain'];
+ }
+ if (isset($map['PublishTime'])) {
+ $model->publishTime = $map['PublishTime'];
+ }
+ if (isset($map['PublishType'])) {
+ $model->publishType = $map['PublishType'];
+ }
+ if (isset($map['PublishUrl'])) {
+ $model->publishUrl = $map['PublishUrl'];
+ }
+ if (isset($map['StopTime'])) {
+ $model->stopTime = $map['StopTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+ if (isset($map['TranscodeId'])) {
+ $model->transcodeId = $map['TranscodeId'];
+ }
+ if (isset($map['Transcoded'])) {
+ $model->transcoded = $map['Transcoded'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest.php
new file mode 100644
index 000000000..25487f63b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest.php
@@ -0,0 +1,98 @@
+ 'OwnerId',
+ 'resourceId' => 'ResourceId',
+ 'resourceType' => 'ResourceType',
+ 'tag' => 'Tag',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceType) {
+ $res['ResourceType'] = $this->resourceType;
+ }
+ if (null !== $this->tag) {
+ $res['Tag'] = [];
+ if (null !== $this->tag && \is_array($this->tag)) {
+ $n = 0;
+ foreach ($this->tag as $item) {
+ $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveTagResourcesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceId'])) {
+ if (!empty($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ }
+ if (isset($map['ResourceType'])) {
+ $model->resourceType = $map['ResourceType'];
+ }
+ if (isset($map['Tag'])) {
+ if (!empty($map['Tag'])) {
+ $model->tag = [];
+ $n = 0;
+ foreach ($map['Tag'] as $item) {
+ $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest/tag.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest/tag.php
new file mode 100644
index 000000000..67ed7bb65
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest/tag.php
@@ -0,0 +1,59 @@
+ 'Key',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->key) {
+ $res['Key'] = $this->key;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return tag
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Key'])) {
+ $model->key = $map['Key'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponse.php
new file mode 100644
index 000000000..48447270f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveTagResourcesResponse
+ */
+ 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 = DescribeLiveTagResourcesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody.php
new file mode 100644
index 000000000..d578b5766
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'tagResources' => 'TagResources',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->tagResources) {
+ $res['TagResources'] = [];
+ if (null !== $this->tagResources && \is_array($this->tagResources)) {
+ $n = 0;
+ foreach ($this->tagResources as $item) {
+ $res['TagResources'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveTagResourcesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TagResources'])) {
+ if (!empty($map['TagResources'])) {
+ $model->tagResources = [];
+ $n = 0;
+ foreach ($map['TagResources'] as $item) {
+ $model->tagResources[$n++] = null !== $item ? tagResources::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources.php
new file mode 100644
index 000000000..baa2c80fc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources.php
@@ -0,0 +1,72 @@
+ 'ResourceId',
+ 'tag' => 'Tag',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->tag) {
+ $res['Tag'] = [];
+ if (null !== $this->tag && \is_array($this->tag)) {
+ $n = 0;
+ foreach ($this->tag as $item) {
+ $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return tagResources
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['Tag'])) {
+ if (!empty($map['Tag'])) {
+ $model->tag = [];
+ $n = 0;
+ foreach ($map['Tag'] as $item) {
+ $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources/tag.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources/tag.php
new file mode 100644
index 000000000..63461cd08
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources/tag.php
@@ -0,0 +1,59 @@
+ 'Key',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->key) {
+ $res['Key'] = $this->key;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return tag
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Key'])) {
+ $model->key = $map['Key'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowRequest.php
new file mode 100644
index 000000000..451a838e5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowRequest.php
@@ -0,0 +1,83 @@
+ 'EndTime',
+ 'limit' => 'Limit',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->limit) {
+ $res['Limit'] = $this->limit;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveTopDomainsByFlowRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Limit'])) {
+ $model->limit = $map['Limit'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponse.php
new file mode 100644
index 000000000..1fd2fbfba
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveTopDomainsByFlowResponse
+ */
+ 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 = DescribeLiveTopDomainsByFlowResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody.php
new file mode 100644
index 000000000..992d79e7e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody.php
@@ -0,0 +1,108 @@
+ 'DomainCount',
+ 'domainOnlineCount' => 'DomainOnlineCount',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ 'topDomains' => 'TopDomains',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainCount) {
+ $res['DomainCount'] = $this->domainCount;
+ }
+ if (null !== $this->domainOnlineCount) {
+ $res['DomainOnlineCount'] = $this->domainOnlineCount;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->topDomains) {
+ $res['TopDomains'] = null !== $this->topDomains ? $this->topDomains->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveTopDomainsByFlowResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainCount'])) {
+ $model->domainCount = $map['DomainCount'];
+ }
+ if (isset($map['DomainOnlineCount'])) {
+ $model->domainOnlineCount = $map['DomainOnlineCount'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['TopDomains'])) {
+ $model->topDomains = topDomains::fromMap($map['TopDomains']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains.php
new file mode 100644
index 000000000..bf9c254cb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains.php
@@ -0,0 +1,60 @@
+ 'TopDomain',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->topDomain) {
+ $res['TopDomain'] = [];
+ if (null !== $this->topDomain && \is_array($this->topDomain)) {
+ $n = 0;
+ foreach ($this->topDomain as $item) {
+ $res['TopDomain'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return topDomains
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TopDomain'])) {
+ if (!empty($map['TopDomain'])) {
+ $model->topDomain = [];
+ $n = 0;
+ foreach ($map['TopDomain'] as $item) {
+ $model->topDomain[$n++] = null !== $item ? topDomain::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains/topDomain.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains/topDomain.php
new file mode 100644
index 000000000..f652752ee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains/topDomain.php
@@ -0,0 +1,119 @@
+ 'DomainName',
+ 'maxBps' => 'MaxBps',
+ 'maxBpsTime' => 'MaxBpsTime',
+ 'rank' => 'Rank',
+ 'totalAccess' => 'TotalAccess',
+ 'totalTraffic' => 'TotalTraffic',
+ 'trafficPercent' => 'TrafficPercent',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->maxBps) {
+ $res['MaxBps'] = $this->maxBps;
+ }
+ if (null !== $this->maxBpsTime) {
+ $res['MaxBpsTime'] = $this->maxBpsTime;
+ }
+ if (null !== $this->rank) {
+ $res['Rank'] = $this->rank;
+ }
+ if (null !== $this->totalAccess) {
+ $res['TotalAccess'] = $this->totalAccess;
+ }
+ if (null !== $this->totalTraffic) {
+ $res['TotalTraffic'] = $this->totalTraffic;
+ }
+ if (null !== $this->trafficPercent) {
+ $res['TrafficPercent'] = $this->trafficPercent;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return topDomain
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['MaxBps'])) {
+ $model->maxBps = $map['MaxBps'];
+ }
+ if (isset($map['MaxBpsTime'])) {
+ $model->maxBpsTime = $map['MaxBpsTime'];
+ }
+ if (isset($map['Rank'])) {
+ $model->rank = $map['Rank'];
+ }
+ if (isset($map['TotalAccess'])) {
+ $model->totalAccess = $map['TotalAccess'];
+ }
+ if (isset($map['TotalTraffic'])) {
+ $model->totalTraffic = $map['TotalTraffic'];
+ }
+ if (isset($map['TrafficPercent'])) {
+ $model->trafficPercent = $map['TrafficPercent'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionRequest.php
new file mode 100644
index 000000000..a8bae2670
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionRequest.php
@@ -0,0 +1,95 @@
+ 'Area',
+ 'dimension' => 'Dimension',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->area) {
+ $res['Area'] = $this->area;
+ }
+ if (null !== $this->dimension) {
+ $res['Dimension'] = $this->dimension;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveUserBillPredictionRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Area'])) {
+ $model->area = $map['Area'];
+ }
+ if (isset($map['Dimension'])) {
+ $model->dimension = $map['Dimension'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponse.php
new file mode 100644
index 000000000..a98d420c0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveUserBillPredictionResponse
+ */
+ 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 = DescribeLiveUserBillPredictionResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody.php
new file mode 100644
index 000000000..635dbbe44
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody.php
@@ -0,0 +1,96 @@
+ 'BillPredictionData',
+ 'billType' => 'BillType',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->billPredictionData) {
+ $res['BillPredictionData'] = null !== $this->billPredictionData ? $this->billPredictionData->toMap() : null;
+ }
+ if (null !== $this->billType) {
+ $res['BillType'] = $this->billType;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveUserBillPredictionResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BillPredictionData'])) {
+ $model->billPredictionData = billPredictionData::fromMap($map['BillPredictionData']);
+ }
+ if (isset($map['BillType'])) {
+ $model->billType = $map['BillType'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData.php
new file mode 100644
index 000000000..0a3eeba9b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData.php
@@ -0,0 +1,60 @@
+ 'BillPredictionDataItem',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->billPredictionDataItem) {
+ $res['BillPredictionDataItem'] = [];
+ if (null !== $this->billPredictionDataItem && \is_array($this->billPredictionDataItem)) {
+ $n = 0;
+ foreach ($this->billPredictionDataItem as $item) {
+ $res['BillPredictionDataItem'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return billPredictionData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BillPredictionDataItem'])) {
+ if (!empty($map['BillPredictionDataItem'])) {
+ $model->billPredictionDataItem = [];
+ $n = 0;
+ foreach ($map['BillPredictionDataItem'] as $item) {
+ $model->billPredictionDataItem[$n++] = null !== $item ? billPredictionDataItem::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData/billPredictionDataItem.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData/billPredictionDataItem.php
new file mode 100644
index 000000000..0309f9d68
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData/billPredictionDataItem.php
@@ -0,0 +1,71 @@
+ 'Area',
+ 'timeStp' => 'TimeStp',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->area) {
+ $res['Area'] = $this->area;
+ }
+ if (null !== $this->timeStp) {
+ $res['TimeStp'] = $this->timeStp;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return billPredictionDataItem
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Area'])) {
+ $model->area = $map['Area'];
+ }
+ if (isset($map['TimeStp'])) {
+ $model->timeStp = $map['TimeStp'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest.php
new file mode 100644
index 000000000..9715fcaa8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest.php
@@ -0,0 +1,168 @@
+ 'DomainName',
+ 'domainSearchType' => 'DomainSearchType',
+ 'domainStatus' => 'DomainStatus',
+ 'liveDomainType' => 'LiveDomainType',
+ 'ownerId' => 'OwnerId',
+ 'pageNumber' => 'PageNumber',
+ 'pageSize' => 'PageSize',
+ 'regionName' => 'RegionName',
+ 'securityToken' => 'SecurityToken',
+ 'tag' => 'Tag',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->domainSearchType) {
+ $res['DomainSearchType'] = $this->domainSearchType;
+ }
+ if (null !== $this->domainStatus) {
+ $res['DomainStatus'] = $this->domainStatus;
+ }
+ if (null !== $this->liveDomainType) {
+ $res['LiveDomainType'] = $this->liveDomainType;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNumber) {
+ $res['PageNumber'] = $this->pageNumber;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->regionName) {
+ $res['RegionName'] = $this->regionName;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->tag) {
+ $res['Tag'] = [];
+ if (null !== $this->tag && \is_array($this->tag)) {
+ $n = 0;
+ foreach ($this->tag as $item) {
+ $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveUserDomainsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['DomainSearchType'])) {
+ $model->domainSearchType = $map['DomainSearchType'];
+ }
+ if (isset($map['DomainStatus'])) {
+ $model->domainStatus = $map['DomainStatus'];
+ }
+ if (isset($map['LiveDomainType'])) {
+ $model->liveDomainType = $map['LiveDomainType'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNumber'])) {
+ $model->pageNumber = $map['PageNumber'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RegionName'])) {
+ $model->regionName = $map['RegionName'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['Tag'])) {
+ if (!empty($map['Tag'])) {
+ $model->tag = [];
+ $n = 0;
+ foreach ($map['Tag'] as $item) {
+ $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest/tag.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest/tag.php
new file mode 100644
index 000000000..70c7a1cdc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest/tag.php
@@ -0,0 +1,59 @@
+ 'Key',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->key) {
+ $res['Key'] = $this->key;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return tag
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Key'])) {
+ $model->key = $map['Key'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponse.php
new file mode 100644
index 000000000..552c8c2b2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveUserDomainsResponse
+ */
+ 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 = DescribeLiveUserDomainsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody.php
new file mode 100644
index 000000000..109b84e94
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody.php
@@ -0,0 +1,96 @@
+ 'Domains',
+ 'pageNumber' => 'PageNumber',
+ 'pageSize' => 'PageSize',
+ 'requestId' => 'RequestId',
+ 'totalCount' => 'TotalCount',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domains) {
+ $res['Domains'] = null !== $this->domains ? $this->domains->toMap() : null;
+ }
+ if (null !== $this->pageNumber) {
+ $res['PageNumber'] = $this->pageNumber;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalCount) {
+ $res['TotalCount'] = $this->totalCount;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveUserDomainsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Domains'])) {
+ $model->domains = domains::fromMap($map['Domains']);
+ }
+ if (isset($map['PageNumber'])) {
+ $model->pageNumber = $map['PageNumber'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalCount'])) {
+ $model->totalCount = $map['TotalCount'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains.php
new file mode 100644
index 000000000..5e7f484ee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains.php
@@ -0,0 +1,60 @@
+ 'PageData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pageData) {
+ $res['PageData'] = [];
+ if (null !== $this->pageData && \is_array($this->pageData)) {
+ $n = 0;
+ foreach ($this->pageData as $item) {
+ $res['PageData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domains
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PageData'])) {
+ if (!empty($map['PageData'])) {
+ $model->pageData = [];
+ $n = 0;
+ foreach ($map['PageData'] as $item) {
+ $model->pageData[$n++] = null !== $item ? pageData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains/pageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains/pageData.php
new file mode 100644
index 000000000..29b8bf439
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains/pageData.php
@@ -0,0 +1,131 @@
+ 'Cname',
+ 'description' => 'Description',
+ 'domainName' => 'DomainName',
+ 'gmtCreated' => 'GmtCreated',
+ 'gmtModified' => 'GmtModified',
+ 'liveDomainStatus' => 'LiveDomainStatus',
+ 'liveDomainType' => 'LiveDomainType',
+ 'regionName' => 'RegionName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cname) {
+ $res['Cname'] = $this->cname;
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->gmtCreated) {
+ $res['GmtCreated'] = $this->gmtCreated;
+ }
+ if (null !== $this->gmtModified) {
+ $res['GmtModified'] = $this->gmtModified;
+ }
+ if (null !== $this->liveDomainStatus) {
+ $res['LiveDomainStatus'] = $this->liveDomainStatus;
+ }
+ if (null !== $this->liveDomainType) {
+ $res['LiveDomainType'] = $this->liveDomainType;
+ }
+ if (null !== $this->regionName) {
+ $res['RegionName'] = $this->regionName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return pageData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Cname'])) {
+ $model->cname = $map['Cname'];
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['GmtCreated'])) {
+ $model->gmtCreated = $map['GmtCreated'];
+ }
+ if (isset($map['GmtModified'])) {
+ $model->gmtModified = $map['GmtModified'];
+ }
+ if (isset($map['LiveDomainStatus'])) {
+ $model->liveDomainStatus = $map['LiveDomainStatus'];
+ }
+ if (isset($map['LiveDomainType'])) {
+ $model->liveDomainType = $map['LiveDomainType'];
+ }
+ if (isset($map['RegionName'])) {
+ $model->regionName = $map['RegionName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsRequest.php
new file mode 100644
index 000000000..4eb815154
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsRequest.php
@@ -0,0 +1,47 @@
+ 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveUserTagsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponse.php
new file mode 100644
index 000000000..f63d609ba
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeLiveUserTagsResponse
+ */
+ 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 = DescribeLiveUserTagsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody.php
new file mode 100644
index 000000000..7b416a81b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'tags' => 'Tags',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->tags) {
+ $res['Tags'] = [];
+ if (null !== $this->tags && \is_array($this->tags)) {
+ $n = 0;
+ foreach ($this->tags as $item) {
+ $res['Tags'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveUserTagsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Tags'])) {
+ if (!empty($map['Tags'])) {
+ $model->tags = [];
+ $n = 0;
+ foreach ($map['Tags'] as $item) {
+ $model->tags[$n++] = null !== $item ? tags::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody/tags.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody/tags.php
new file mode 100644
index 000000000..0bb8b5481
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody/tags.php
@@ -0,0 +1,61 @@
+ 'Key',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->key) {
+ $res['Key'] = $this->key;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return tags
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Key'])) {
+ $model->key = $map['Key'];
+ }
+ if (isset($map['Value'])) {
+ if (!empty($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentRequest.php
new file mode 100644
index 000000000..7ba47b8f0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'domainName' => 'DomainName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveVerifyContentRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponse.php
new file mode 100644
index 000000000..20fb3553f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveVerifyContentResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeLiveVerifyContentResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponseBody.php
new file mode 100644
index 000000000..6297f2455
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'content' => 'Content',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->content) {
+ $res['Content'] = $this->content;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeLiveVerifyContentResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Content'])) {
+ $model->content = $map['Content'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationRequest.php
new file mode 100644
index 000000000..5d9022ce7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationRequest.php
@@ -0,0 +1,95 @@
+ 'EndTime',
+ 'interval' => 'Interval',
+ 'serviceArea' => 'ServiceArea',
+ 'startTime' => 'StartTime',
+ 'appId' => 'appId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->serviceArea) {
+ $res['ServiceArea'] = $this->serviceArea;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->appId) {
+ $res['appId'] = $this->appId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeMeterLiveRtcDurationRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['ServiceArea'])) {
+ $model->serviceArea = $map['ServiceArea'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['appId'])) {
+ $model->appId = $map['appId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponse.php
new file mode 100644
index 000000000..dda167191
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeMeterLiveRtcDurationResponse
+ */
+ 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 = DescribeMeterLiveRtcDurationResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody.php
new file mode 100644
index 000000000..a4cbe74c5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody.php
@@ -0,0 +1,132 @@
+ 'AudioSummaryDuration',
+ 'data' => 'Data',
+ 'requestId' => 'RequestId',
+ 'totalSummaryDuration' => 'TotalSummaryDuration',
+ 'v1080SummaryDuration' => 'V1080SummaryDuration',
+ 'v480SummaryDuration' => 'V480SummaryDuration',
+ 'v720SummaryDuration' => 'V720SummaryDuration',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioSummaryDuration) {
+ $res['AudioSummaryDuration'] = $this->audioSummaryDuration;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = [];
+ if (null !== $this->data && \is_array($this->data)) {
+ $n = 0;
+ foreach ($this->data as $item) {
+ $res['Data'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalSummaryDuration) {
+ $res['TotalSummaryDuration'] = $this->totalSummaryDuration;
+ }
+ if (null !== $this->v1080SummaryDuration) {
+ $res['V1080SummaryDuration'] = $this->v1080SummaryDuration;
+ }
+ if (null !== $this->v480SummaryDuration) {
+ $res['V480SummaryDuration'] = $this->v480SummaryDuration;
+ }
+ if (null !== $this->v720SummaryDuration) {
+ $res['V720SummaryDuration'] = $this->v720SummaryDuration;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeMeterLiveRtcDurationResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioSummaryDuration'])) {
+ $model->audioSummaryDuration = $map['AudioSummaryDuration'];
+ }
+ if (isset($map['Data'])) {
+ if (!empty($map['Data'])) {
+ $model->data = [];
+ $n = 0;
+ foreach ($map['Data'] as $item) {
+ $model->data[$n++] = null !== $item ? data::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalSummaryDuration'])) {
+ $model->totalSummaryDuration = $map['TotalSummaryDuration'];
+ }
+ if (isset($map['V1080SummaryDuration'])) {
+ $model->v1080SummaryDuration = $map['V1080SummaryDuration'];
+ }
+ if (isset($map['V480SummaryDuration'])) {
+ $model->v480SummaryDuration = $map['V480SummaryDuration'];
+ }
+ if (isset($map['V720SummaryDuration'])) {
+ $model->v720SummaryDuration = $map['V720SummaryDuration'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody/data.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody/data.php
new file mode 100644
index 000000000..d005d14bf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody/data.php
@@ -0,0 +1,107 @@
+ 'AudioDuration',
+ 'timestamp' => 'Timestamp',
+ 'totalDuration' => 'TotalDuration',
+ 'v1080Duration' => 'V1080Duration',
+ 'v480Duration' => 'V480Duration',
+ 'v720Duration' => 'V720Duration',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioDuration) {
+ $res['AudioDuration'] = $this->audioDuration;
+ }
+ if (null !== $this->timestamp) {
+ $res['Timestamp'] = $this->timestamp;
+ }
+ if (null !== $this->totalDuration) {
+ $res['TotalDuration'] = $this->totalDuration;
+ }
+ if (null !== $this->v1080Duration) {
+ $res['V1080Duration'] = $this->v1080Duration;
+ }
+ if (null !== $this->v480Duration) {
+ $res['V480Duration'] = $this->v480Duration;
+ }
+ if (null !== $this->v720Duration) {
+ $res['V720Duration'] = $this->v720Duration;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return data
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioDuration'])) {
+ $model->audioDuration = $map['AudioDuration'];
+ }
+ if (isset($map['Timestamp'])) {
+ $model->timestamp = $map['Timestamp'];
+ }
+ if (isset($map['TotalDuration'])) {
+ $model->totalDuration = $map['TotalDuration'];
+ }
+ if (isset($map['V1080Duration'])) {
+ $model->v1080Duration = $map['V1080Duration'];
+ }
+ if (isset($map['V480Duration'])) {
+ $model->v480Duration = $map['V480Duration'];
+ }
+ if (isset($map['V720Duration'])) {
+ $model->v720Duration = $map['V720Duration'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListRequest.php
new file mode 100644
index 000000000..b611bf85f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListRequest.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'mixStreamId' => 'MixStreamId',
+ 'ownerId' => 'OwnerId',
+ 'pageNo' => 'PageNo',
+ 'pageSize' => 'PageSize',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->mixStreamId) {
+ $res['MixStreamId'] = $this->mixStreamId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNo) {
+ $res['PageNo'] = $this->pageNo;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeMixStreamListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['MixStreamId'])) {
+ $model->mixStreamId = $map['MixStreamId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNo'])) {
+ $model->pageNo = $map['PageNo'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponse.php
new file mode 100644
index 000000000..c2f14bc80
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeMixStreamListResponse
+ */
+ 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 = DescribeMixStreamListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody.php
new file mode 100644
index 000000000..9f6aaf4d2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody.php
@@ -0,0 +1,84 @@
+ 'MixStreamList',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->mixStreamList) {
+ $res['MixStreamList'] = [];
+ if (null !== $this->mixStreamList && \is_array($this->mixStreamList)) {
+ $n = 0;
+ foreach ($this->mixStreamList as $item) {
+ $res['MixStreamList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeMixStreamListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MixStreamList'])) {
+ if (!empty($map['MixStreamList'])) {
+ $model->mixStreamList = [];
+ $n = 0;
+ foreach ($map['MixStreamList'] as $item) {
+ $model->mixStreamList[$n++] = null !== $item ? mixStreamList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody/mixStreamList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody/mixStreamList.php
new file mode 100644
index 000000000..d4faafea5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody/mixStreamList.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'gmtCreate' => 'GmtCreate',
+ 'gmtModified' => 'GmtModified',
+ 'inputStreamNumber' => 'InputStreamNumber',
+ 'layoutId' => 'LayoutId',
+ 'mixStreamTemplate' => 'MixStreamTemplate',
+ 'mixstreamId' => 'MixstreamId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->gmtCreate) {
+ $res['GmtCreate'] = $this->gmtCreate;
+ }
+ if (null !== $this->gmtModified) {
+ $res['GmtModified'] = $this->gmtModified;
+ }
+ if (null !== $this->inputStreamNumber) {
+ $res['InputStreamNumber'] = $this->inputStreamNumber;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->mixStreamTemplate) {
+ $res['MixStreamTemplate'] = $this->mixStreamTemplate;
+ }
+ if (null !== $this->mixstreamId) {
+ $res['MixstreamId'] = $this->mixstreamId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return mixStreamList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['GmtCreate'])) {
+ $model->gmtCreate = $map['GmtCreate'];
+ }
+ if (isset($map['GmtModified'])) {
+ $model->gmtModified = $map['GmtModified'];
+ }
+ if (isset($map['InputStreamNumber'])) {
+ $model->inputStreamNumber = $map['InputStreamNumber'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['MixStreamTemplate'])) {
+ $model->mixStreamTemplate = $map['MixStreamTemplate'];
+ }
+ if (isset($map['MixstreamId'])) {
+ $model->mixstreamId = $map['MixstreamId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostRequest.php
new file mode 100644
index 000000000..076248053
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostRequest.php
@@ -0,0 +1,85 @@
+ 'DataInterval',
+ 'domainNameList' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameList) {
+ $res['DomainNameList'] = $this->domainNameList;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKFirstFrameCostRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ if (!empty($map['DomainNameList'])) {
+ $model->domainNameList = $map['DomainNameList'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponse.php
new file mode 100644
index 000000000..cec3a6b9b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRTSNativeSDKFirstFrameCostResponse
+ */
+ 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 = DescribeRTSNativeSDKFirstFrameCostResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody.php
new file mode 100644
index 000000000..0d9b1c99e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'endTime' => 'EndTime',
+ 'firstFrameCostData' => 'FirstFrameCostData',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->firstFrameCostData) {
+ $res['FirstFrameCostData'] = [];
+ if (null !== $this->firstFrameCostData && \is_array($this->firstFrameCostData)) {
+ $n = 0;
+ foreach ($this->firstFrameCostData as $item) {
+ $res['FirstFrameCostData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKFirstFrameCostResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['FirstFrameCostData'])) {
+ if (!empty($map['FirstFrameCostData'])) {
+ $model->firstFrameCostData = [];
+ $n = 0;
+ foreach ($map['FirstFrameCostData'] as $item) {
+ $model->firstFrameCostData[$n++] = null !== $item ? firstFrameCostData::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody/firstFrameCostData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody/firstFrameCostData.php
new file mode 100644
index 000000000..a5c961352
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody/firstFrameCostData.php
@@ -0,0 +1,107 @@
+ 'Connected',
+ 'finishGetStreamInfo' => 'FinishGetStreamInfo',
+ 'firstFrameComplete' => 'FirstFrameComplete',
+ 'firstPacket' => 'FirstPacket',
+ 'initialized' => 'Initialized',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->connected) {
+ $res['Connected'] = $this->connected;
+ }
+ if (null !== $this->finishGetStreamInfo) {
+ $res['FinishGetStreamInfo'] = $this->finishGetStreamInfo;
+ }
+ if (null !== $this->firstFrameComplete) {
+ $res['FirstFrameComplete'] = $this->firstFrameComplete;
+ }
+ if (null !== $this->firstPacket) {
+ $res['FirstPacket'] = $this->firstPacket;
+ }
+ if (null !== $this->initialized) {
+ $res['Initialized'] = $this->initialized;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return firstFrameCostData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Connected'])) {
+ $model->connected = $map['Connected'];
+ }
+ if (isset($map['FinishGetStreamInfo'])) {
+ $model->finishGetStreamInfo = $map['FinishGetStreamInfo'];
+ }
+ if (isset($map['FirstFrameComplete'])) {
+ $model->firstFrameComplete = $map['FirstFrameComplete'];
+ }
+ if (isset($map['FirstPacket'])) {
+ $model->firstPacket = $map['FirstPacket'];
+ }
+ if (isset($map['Initialized'])) {
+ $model->initialized = $map['Initialized'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostShrinkRequest.php
new file mode 100644
index 000000000..0a2786830
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostShrinkRequest.php
@@ -0,0 +1,83 @@
+ 'DataInterval',
+ 'domainNameListShrink' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameListShrink) {
+ $res['DomainNameList'] = $this->domainNameListShrink;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKFirstFrameCostShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ $model->domainNameListShrink = $map['DomainNameList'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayRequest.php
new file mode 100644
index 000000000..f8509142a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayRequest.php
@@ -0,0 +1,85 @@
+ 'DataInterval',
+ 'domainNameList' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameList) {
+ $res['DomainNameList'] = $this->domainNameList;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKFirstFrameDelayRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ if (!empty($map['DomainNameList'])) {
+ $model->domainNameList = $map['DomainNameList'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponse.php
new file mode 100644
index 000000000..300db5488
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRTSNativeSDKFirstFrameDelayResponse
+ */
+ 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 = DescribeRTSNativeSDKFirstFrameDelayResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody.php
new file mode 100644
index 000000000..0cf3bccab
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'endTime' => 'EndTime',
+ 'frameDelayData' => 'FrameDelayData',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->frameDelayData) {
+ $res['FrameDelayData'] = [];
+ if (null !== $this->frameDelayData && \is_array($this->frameDelayData)) {
+ $n = 0;
+ foreach ($this->frameDelayData as $item) {
+ $res['FrameDelayData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKFirstFrameDelayResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['FrameDelayData'])) {
+ if (!empty($map['FrameDelayData'])) {
+ $model->frameDelayData = [];
+ $n = 0;
+ foreach ($map['FrameDelayData'] as $item) {
+ $model->frameDelayData[$n++] = null !== $item ? frameDelayData::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody/frameDelayData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody/frameDelayData.php
new file mode 100644
index 000000000..1d11a4a1b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody/frameDelayData.php
@@ -0,0 +1,59 @@
+ 'FrameDelay',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->frameDelay) {
+ $res['FrameDelay'] = $this->frameDelay;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return frameDelayData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FrameDelay'])) {
+ $model->frameDelay = $map['FrameDelay'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayShrinkRequest.php
new file mode 100644
index 000000000..bc5532b81
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayShrinkRequest.php
@@ -0,0 +1,83 @@
+ 'DataInterval',
+ 'domainNameListShrink' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameListShrink) {
+ $res['DomainNameList'] = $this->domainNameListShrink;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKFirstFrameDelayShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ $model->domainNameListShrink = $map['DomainNameList'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusRequest.php
new file mode 100644
index 000000000..843d8709c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusRequest.php
@@ -0,0 +1,85 @@
+ 'DataInterval',
+ 'domainNameList' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameList) {
+ $res['DomainNameList'] = $this->domainNameList;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKPlayFailStatusRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ if (!empty($map['DomainNameList'])) {
+ $model->domainNameList = $map['DomainNameList'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponse.php
new file mode 100644
index 000000000..654c15c8e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRTSNativeSDKPlayFailStatusResponse
+ */
+ 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 = DescribeRTSNativeSDKPlayFailStatusResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody.php
new file mode 100644
index 000000000..a27a8b170
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'endTime' => 'EndTime',
+ 'playFailStatus' => 'PlayFailStatus',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->playFailStatus) {
+ $res['PlayFailStatus'] = [];
+ if (null !== $this->playFailStatus && \is_array($this->playFailStatus)) {
+ $n = 0;
+ foreach ($this->playFailStatus as $item) {
+ $res['PlayFailStatus'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKPlayFailStatusResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['PlayFailStatus'])) {
+ if (!empty($map['PlayFailStatus'])) {
+ $model->playFailStatus = [];
+ $n = 0;
+ foreach ($map['PlayFailStatus'] as $item) {
+ $model->playFailStatus[$n++] = null !== $item ? playFailStatus::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody/playFailStatus.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody/playFailStatus.php
new file mode 100644
index 000000000..c9b97b408
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody/playFailStatus.php
@@ -0,0 +1,119 @@
+ 'TimeStamp',
+ 'v20001' => 'V20001',
+ 'v20002' => 'V20002',
+ 'v20011' => 'V20011',
+ 'v20012' => 'V20012',
+ 'v20013' => 'V20013',
+ 'v20052' => 'V20052',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->v20001) {
+ $res['V20001'] = $this->v20001;
+ }
+ if (null !== $this->v20002) {
+ $res['V20002'] = $this->v20002;
+ }
+ if (null !== $this->v20011) {
+ $res['V20011'] = $this->v20011;
+ }
+ if (null !== $this->v20012) {
+ $res['V20012'] = $this->v20012;
+ }
+ if (null !== $this->v20013) {
+ $res['V20013'] = $this->v20013;
+ }
+ if (null !== $this->v20052) {
+ $res['V20052'] = $this->v20052;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return playFailStatus
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['V20001'])) {
+ $model->v20001 = $map['V20001'];
+ }
+ if (isset($map['V20002'])) {
+ $model->v20002 = $map['V20002'];
+ }
+ if (isset($map['V20011'])) {
+ $model->v20011 = $map['V20011'];
+ }
+ if (isset($map['V20012'])) {
+ $model->v20012 = $map['V20012'];
+ }
+ if (isset($map['V20013'])) {
+ $model->v20013 = $map['V20013'];
+ }
+ if (isset($map['V20052'])) {
+ $model->v20052 = $map['V20052'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusShrinkRequest.php
new file mode 100644
index 000000000..1140e20ae
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusShrinkRequest.php
@@ -0,0 +1,83 @@
+ 'DataInterval',
+ 'domainNameListShrink' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameListShrink) {
+ $res['DomainNameList'] = $this->domainNameListShrink;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKPlayFailStatusShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ $model->domainNameListShrink = $map['DomainNameList'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeRequest.php
new file mode 100644
index 000000000..b588a5972
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeRequest.php
@@ -0,0 +1,85 @@
+ 'DataInterval',
+ 'domainNameList' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameList) {
+ $res['DomainNameList'] = $this->domainNameList;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKPlayTimeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ if (!empty($map['DomainNameList'])) {
+ $model->domainNameList = $map['DomainNameList'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponse.php
new file mode 100644
index 000000000..640654f3b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRTSNativeSDKPlayTimeResponse
+ */
+ 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 = DescribeRTSNativeSDKPlayTimeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody.php
new file mode 100644
index 000000000..0350d7f58
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'endTime' => 'EndTime',
+ 'playTimeData' => 'PlayTimeData',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->playTimeData) {
+ $res['PlayTimeData'] = [];
+ if (null !== $this->playTimeData && \is_array($this->playTimeData)) {
+ $n = 0;
+ foreach ($this->playTimeData as $item) {
+ $res['PlayTimeData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKPlayTimeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['PlayTimeData'])) {
+ if (!empty($map['PlayTimeData'])) {
+ $model->playTimeData = [];
+ $n = 0;
+ foreach ($map['PlayTimeData'] as $item) {
+ $model->playTimeData[$n++] = null !== $item ? playTimeData::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody/playTimeData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody/playTimeData.php
new file mode 100644
index 000000000..3089e4b76
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody/playTimeData.php
@@ -0,0 +1,71 @@
+ 'PlayTime',
+ 'stallTime' => 'StallTime',
+ 'timeStamp' => 'TimeStamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->playTime) {
+ $res['PlayTime'] = $this->playTime;
+ }
+ if (null !== $this->stallTime) {
+ $res['StallTime'] = $this->stallTime;
+ }
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return playTimeData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PlayTime'])) {
+ $model->playTime = $map['PlayTime'];
+ }
+ if (isset($map['StallTime'])) {
+ $model->stallTime = $map['StallTime'];
+ }
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeShrinkRequest.php
new file mode 100644
index 000000000..8d0e3cf10
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeShrinkRequest.php
@@ -0,0 +1,83 @@
+ 'DataInterval',
+ 'domainNameListShrink' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameListShrink) {
+ $res['DomainNameList'] = $this->domainNameListShrink;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKPlayTimeShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ $model->domainNameListShrink = $map['DomainNameList'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataRequest.php
new file mode 100644
index 000000000..abdeba29e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataRequest.php
@@ -0,0 +1,85 @@
+ 'DataInterval',
+ 'domainNameList' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameList) {
+ $res['DomainNameList'] = $this->domainNameList;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKVvDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ if (!empty($map['DomainNameList'])) {
+ $model->domainNameList = $map['DomainNameList'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponse.php
new file mode 100644
index 000000000..28e074ffa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRTSNativeSDKVvDataResponse
+ */
+ 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 = DescribeRTSNativeSDKVvDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody.php
new file mode 100644
index 000000000..52bef1d66
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody.php
@@ -0,0 +1,108 @@
+ 'DataInterval',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'startTime' => 'StartTime',
+ 'vvData' => 'VvData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->vvData) {
+ $res['VvData'] = [];
+ if (null !== $this->vvData && \is_array($this->vvData)) {
+ $n = 0;
+ foreach ($this->vvData as $item) {
+ $res['VvData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKVvDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['VvData'])) {
+ if (!empty($map['VvData'])) {
+ $model->vvData = [];
+ $n = 0;
+ foreach ($map['VvData'] as $item) {
+ $model->vvData[$n++] = null !== $item ? vvData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody/vvData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody/vvData.php
new file mode 100644
index 000000000..1285a524c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody/vvData.php
@@ -0,0 +1,71 @@
+ 'TimeStamp',
+ 'vvSuccess' => 'VvSuccess',
+ 'vvTotal' => 'VvTotal',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->timeStamp) {
+ $res['TimeStamp'] = $this->timeStamp;
+ }
+ if (null !== $this->vvSuccess) {
+ $res['VvSuccess'] = $this->vvSuccess;
+ }
+ if (null !== $this->vvTotal) {
+ $res['VvTotal'] = $this->vvTotal;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return vvData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TimeStamp'])) {
+ $model->timeStamp = $map['TimeStamp'];
+ }
+ if (isset($map['VvSuccess'])) {
+ $model->vvSuccess = $map['VvSuccess'];
+ }
+ if (isset($map['VvTotal'])) {
+ $model->vvTotal = $map['VvTotal'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataShrinkRequest.php
new file mode 100644
index 000000000..d375d3319
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataShrinkRequest.php
@@ -0,0 +1,83 @@
+ 'DataInterval',
+ 'domainNameListShrink' => 'DomainNameList',
+ 'endTime' => 'EndTime',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dataInterval) {
+ $res['DataInterval'] = $this->dataInterval;
+ }
+ if (null !== $this->domainNameListShrink) {
+ $res['DomainNameList'] = $this->domainNameListShrink;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRTSNativeSDKVvDataShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DataInterval'])) {
+ $model->dataInterval = $map['DataInterval'];
+ }
+ if (isset($map['DomainNameList'])) {
+ $model->domainNameListShrink = $map['DomainNameList'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordRequest.php
new file mode 100644
index 000000000..f056cfd3a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'recordId' => 'RecordId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRecordRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponse.php
new file mode 100644
index 000000000..252a75487
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRecordResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeRecordResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponseBody.php
new file mode 100644
index 000000000..042c7be87
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponseBody.php
@@ -0,0 +1,167 @@
+ 'BoardId',
+ 'endTime' => 'EndTime',
+ 'requestId' => 'RequestId',
+ 'appId' => 'AppId',
+ 'recordStartTime' => 'RecordStartTime',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'state' => 'State',
+ 'ossPath' => 'OssPath',
+ 'startTime' => 'StartTime',
+ 'ossBucket' => 'OssBucket',
+ 'recordId' => 'RecordId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->recordStartTime) {
+ $res['RecordStartTime'] = $this->recordStartTime;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->state) {
+ $res['State'] = $this->state;
+ }
+ if (null !== $this->ossPath) {
+ $res['OssPath'] = $this->ossPath;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRecordResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['RecordStartTime'])) {
+ $model->recordStartTime = $map['RecordStartTime'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['State'])) {
+ $model->state = $map['State'];
+ }
+ if (isset($map['OssPath'])) {
+ $model->ossPath = $map['OssPath'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsRequest.php
new file mode 100644
index 000000000..feb4d30c2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsRequest.php
@@ -0,0 +1,95 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'recordState' => 'RecordState',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->recordState) {
+ $res['RecordState'] = $this->recordState;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRecordsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RecordState'])) {
+ $model->recordState = $map['RecordState'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponse.php
new file mode 100644
index 000000000..471ce75b4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRecordsResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = DescribeRecordsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody.php
new file mode 100644
index 000000000..02890504f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'records' => 'Records',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->records) {
+ $res['Records'] = [];
+ if (null !== $this->records && \is_array($this->records)) {
+ $n = 0;
+ foreach ($this->records as $item) {
+ $res['Records'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRecordsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Records'])) {
+ if (!empty($map['Records'])) {
+ $model->records = [];
+ $n = 0;
+ foreach ($map['Records'] as $item) {
+ $model->records[$n++] = null !== $item ? records::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody/records.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody/records.php
new file mode 100644
index 000000000..9388bd30c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody/records.php
@@ -0,0 +1,155 @@
+ 'EndTime',
+ 'startTime' => 'StartTime',
+ 'boardId' => 'BoardId',
+ 'state' => 'State',
+ 'appId' => 'AppId',
+ 'recordId' => 'RecordId',
+ 'ossBucket' => 'OssBucket',
+ 'recordStartTime' => 'RecordStartTime',
+ 'ossPath' => 'OssPath',
+ 'ossEndpoint' => 'OssEndpoint',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+ if (null !== $this->state) {
+ $res['State'] = $this->state;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->recordStartTime) {
+ $res['RecordStartTime'] = $this->recordStartTime;
+ }
+ if (null !== $this->ossPath) {
+ $res['OssPath'] = $this->ossPath;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return records
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+ if (isset($map['State'])) {
+ $model->state = $map['State'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['RecordStartTime'])) {
+ $model->recordStartTime = $map['RecordStartTime'];
+ }
+ if (isset($map['OssPath'])) {
+ $model->ossPath = $map['OssPath'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListRequest.php
new file mode 100644
index 000000000..9584c2a03
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListRequest.php
@@ -0,0 +1,107 @@
+ 'AppId',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'roomId' => 'RoomId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRoomKickoutUserListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponse.php
new file mode 100644
index 000000000..70b1eb45c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRoomKickoutUserListResponse
+ */
+ 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 = DescribeRoomKickoutUserListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody.php
new file mode 100644
index 000000000..90da678a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody.php
@@ -0,0 +1,96 @@
+ 'RequestId',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ 'userList' => 'UserList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+ if (null !== $this->userList) {
+ $res['UserList'] = [];
+ if (null !== $this->userList && \is_array($this->userList)) {
+ $n = 0;
+ foreach ($this->userList as $item) {
+ $res['UserList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRoomKickoutUserListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+ if (isset($map['UserList'])) {
+ if (!empty($map['UserList'])) {
+ $model->userList = [];
+ $n = 0;
+ foreach ($map['UserList'] as $item) {
+ $model->userList[$n++] = null !== $item ? userList::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody/userList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody/userList.php
new file mode 100644
index 000000000..280d85e0c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody/userList.php
@@ -0,0 +1,71 @@
+ 'AppUid',
+ 'opEndTime' => 'OpEndTime',
+ 'opStartTime' => 'OpStartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+ if (null !== $this->opEndTime) {
+ $res['OpEndTime'] = $this->opEndTime;
+ }
+ if (null !== $this->opStartTime) {
+ $res['OpStartTime'] = $this->opStartTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return userList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+ if (isset($map['OpEndTime'])) {
+ $model->opEndTime = $map['OpEndTime'];
+ }
+ if (isset($map['OpStartTime'])) {
+ $model->opStartTime = $map['OpStartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListRequest.php
new file mode 100644
index 000000000..85b70ef09
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListRequest.php
@@ -0,0 +1,155 @@
+ 'AnchorId',
+ 'appId' => 'AppId',
+ 'endTime' => 'EndTime',
+ 'order' => 'Order',
+ 'ownerId' => 'OwnerId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'roomId' => 'RoomId',
+ 'roomStatus' => 'RoomStatus',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->anchorId) {
+ $res['AnchorId'] = $this->anchorId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->order) {
+ $res['Order'] = $this->order;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+ if (null !== $this->roomStatus) {
+ $res['RoomStatus'] = $this->roomStatus;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRoomListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AnchorId'])) {
+ $model->anchorId = $map['AnchorId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Order'])) {
+ $model->order = $map['Order'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+ if (isset($map['RoomStatus'])) {
+ $model->roomStatus = $map['RoomStatus'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponse.php
new file mode 100644
index 000000000..5bed7e664
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRoomListResponse
+ */
+ 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 = DescribeRoomListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody.php
new file mode 100644
index 000000000..2c9eb8eca
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody.php
@@ -0,0 +1,96 @@
+ 'RequestId',
+ 'roomList' => 'RoomList',
+ 'totalNum' => 'TotalNum',
+ 'totalPage' => 'TotalPage',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->roomList) {
+ $res['RoomList'] = [];
+ if (null !== $this->roomList && \is_array($this->roomList)) {
+ $n = 0;
+ foreach ($this->roomList as $item) {
+ $res['RoomList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->totalNum) {
+ $res['TotalNum'] = $this->totalNum;
+ }
+ if (null !== $this->totalPage) {
+ $res['TotalPage'] = $this->totalPage;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRoomListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['RoomList'])) {
+ if (!empty($map['RoomList'])) {
+ $model->roomList = [];
+ $n = 0;
+ foreach ($map['RoomList'] as $item) {
+ $model->roomList[$n++] = null !== $item ? roomList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['TotalNum'])) {
+ $model->totalNum = $map['TotalNum'];
+ }
+ if (isset($map['TotalPage'])) {
+ $model->totalPage = $map['TotalPage'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody/roomList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody/roomList.php
new file mode 100644
index 000000000..14b327a19
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody/roomList.php
@@ -0,0 +1,95 @@
+ 'AnchorId',
+ 'createTime' => 'CreateTime',
+ 'forbidStream' => 'ForbidStream',
+ 'roomId' => 'RoomId',
+ 'roomStatus' => 'RoomStatus',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->anchorId) {
+ $res['AnchorId'] = $this->anchorId;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->forbidStream) {
+ $res['ForbidStream'] = $this->forbidStream;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+ if (null !== $this->roomStatus) {
+ $res['RoomStatus'] = $this->roomStatus;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return roomList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AnchorId'])) {
+ $model->anchorId = $map['AnchorId'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['ForbidStream'])) {
+ $model->forbidStream = $map['ForbidStream'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+ if (isset($map['RoomStatus'])) {
+ $model->roomStatus = $map['RoomStatus'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusRequest.php
new file mode 100644
index 000000000..22b697543
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'ownerId' => 'OwnerId',
+ 'roomId' => 'RoomId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRoomStatusRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponse.php
new file mode 100644
index 000000000..d68243890
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeRoomStatusResponse
+ */
+ 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 = DescribeRoomStatusResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponseBody.php
new file mode 100644
index 000000000..df0a6a414
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'roomStatus' => 'RoomStatus',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->roomStatus) {
+ $res['RoomStatus'] = $this->roomStatus;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeRoomStatusResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['RoomStatus'])) {
+ $model->roomStatus = $map['RoomStatus'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListRequest.php
new file mode 100644
index 000000000..56ebb4ff9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeShowListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponse.php
new file mode 100644
index 000000000..b6f3da45e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeShowListResponse
+ */
+ 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 = DescribeShowListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody.php
new file mode 100644
index 000000000..f7fd02cc6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'showList' => 'ShowList',
+ 'showListInfo' => 'ShowListInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->showList) {
+ $res['ShowList'] = $this->showList;
+ }
+ if (null !== $this->showListInfo) {
+ $res['ShowListInfo'] = null !== $this->showListInfo ? $this->showListInfo->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeShowListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['ShowList'])) {
+ $model->showList = $map['ShowList'];
+ }
+ if (isset($map['ShowListInfo'])) {
+ $model->showListInfo = showListInfo::fromMap($map['ShowListInfo']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo.php
new file mode 100644
index 000000000..62ef0b71a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo.php
@@ -0,0 +1,108 @@
+ 'CurrentShowId',
+ 'highPriorityShowId' => 'HighPriorityShowId',
+ 'highPriorityShowStartTime' => 'HighPriorityShowStartTime',
+ 'showList' => 'ShowList',
+ 'showListRepeatTimes' => 'ShowListRepeatTimes',
+ 'totalShowListRepeatTimes' => 'TotalShowListRepeatTimes',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->currentShowId) {
+ $res['CurrentShowId'] = $this->currentShowId;
+ }
+ if (null !== $this->highPriorityShowId) {
+ $res['HighPriorityShowId'] = $this->highPriorityShowId;
+ }
+ if (null !== $this->highPriorityShowStartTime) {
+ $res['HighPriorityShowStartTime'] = $this->highPriorityShowStartTime;
+ }
+ if (null !== $this->showList) {
+ $res['ShowList'] = null !== $this->showList ? $this->showList->toMap() : null;
+ }
+ if (null !== $this->showListRepeatTimes) {
+ $res['ShowListRepeatTimes'] = $this->showListRepeatTimes;
+ }
+ if (null !== $this->totalShowListRepeatTimes) {
+ $res['TotalShowListRepeatTimes'] = $this->totalShowListRepeatTimes;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return showListInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CurrentShowId'])) {
+ $model->currentShowId = $map['CurrentShowId'];
+ }
+ if (isset($map['HighPriorityShowId'])) {
+ $model->highPriorityShowId = $map['HighPriorityShowId'];
+ }
+ if (isset($map['HighPriorityShowStartTime'])) {
+ $model->highPriorityShowStartTime = $map['HighPriorityShowStartTime'];
+ }
+ if (isset($map['ShowList'])) {
+ $model->showList = showList::fromMap($map['ShowList']);
+ }
+ if (isset($map['ShowListRepeatTimes'])) {
+ $model->showListRepeatTimes = $map['ShowListRepeatTimes'];
+ }
+ if (isset($map['TotalShowListRepeatTimes'])) {
+ $model->totalShowListRepeatTimes = $map['TotalShowListRepeatTimes'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList.php
new file mode 100644
index 000000000..6fbde0c4e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList.php
@@ -0,0 +1,60 @@
+ 'Show',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->show) {
+ $res['Show'] = [];
+ if (null !== $this->show && \is_array($this->show)) {
+ $n = 0;
+ foreach ($this->show as $item) {
+ $res['Show'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return showList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Show'])) {
+ if (!empty($map['Show'])) {
+ $model->show = [];
+ $n = 0;
+ foreach ($map['Show'] as $item) {
+ $model->show[$n++] = null !== $item ? show::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show.php
new file mode 100644
index 000000000..16b9ef219
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show.php
@@ -0,0 +1,96 @@
+ 'Duration',
+ 'repeatTimes' => 'RepeatTimes',
+ 'resourceInfo' => 'ResourceInfo',
+ 'showId' => 'ShowId',
+ 'showName' => 'ShowName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->repeatTimes) {
+ $res['RepeatTimes'] = $this->repeatTimes;
+ }
+ if (null !== $this->resourceInfo) {
+ $res['ResourceInfo'] = null !== $this->resourceInfo ? $this->resourceInfo->toMap() : null;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+ if (null !== $this->showName) {
+ $res['ShowName'] = $this->showName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return show
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['RepeatTimes'])) {
+ $model->repeatTimes = $map['RepeatTimes'];
+ }
+ if (isset($map['ResourceInfo'])) {
+ $model->resourceInfo = resourceInfo::fromMap($map['ResourceInfo']);
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+ if (isset($map['ShowName'])) {
+ $model->showName = $map['ShowName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show/resourceInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show/resourceInfo.php
new file mode 100644
index 000000000..bfa3208cb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show/resourceInfo.php
@@ -0,0 +1,83 @@
+ 'LiveInputType',
+ 'resourceId' => 'ResourceId',
+ 'resourceType' => 'ResourceType',
+ 'resourceUrl' => 'ResourceUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveInputType) {
+ $res['LiveInputType'] = $this->liveInputType;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceType) {
+ $res['ResourceType'] = $this->resourceType;
+ }
+ if (null !== $this->resourceUrl) {
+ $res['ResourceUrl'] = $this->resourceUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return resourceInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveInputType'])) {
+ $model->liveInputType = $map['LiveInputType'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['ResourceType'])) {
+ $model->resourceType = $map['ResourceType'];
+ }
+ if (isset($map['ResourceUrl'])) {
+ $model->resourceUrl = $map['ResourceUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsRequest.php
new file mode 100644
index 000000000..614a32a8a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'layoutId' => 'LayoutId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeStudioLayoutsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponse.php
new file mode 100644
index 000000000..02aa56334
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeStudioLayoutsResponse
+ */
+ 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 = DescribeStudioLayoutsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody.php
new file mode 100644
index 000000000..00a1ab123
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody.php
@@ -0,0 +1,84 @@
+ 'RequestId',
+ 'studioLayouts' => 'StudioLayouts',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->studioLayouts) {
+ $res['StudioLayouts'] = [];
+ if (null !== $this->studioLayouts && \is_array($this->studioLayouts)) {
+ $n = 0;
+ foreach ($this->studioLayouts as $item) {
+ $res['StudioLayouts'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeStudioLayoutsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StudioLayouts'])) {
+ if (!empty($map['StudioLayouts'])) {
+ $model->studioLayouts = [];
+ $n = 0;
+ foreach ($map['StudioLayouts'] as $item) {
+ $model->studioLayouts[$n++] = null !== $item ? studioLayouts::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts.php
new file mode 100644
index 000000000..deda7f0ac
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts.php
@@ -0,0 +1,172 @@
+ 'BgImageConfig',
+ 'commonConfig' => 'CommonConfig',
+ 'layerOrderConfigList' => 'LayerOrderConfigList',
+ 'layoutId' => 'LayoutId',
+ 'layoutName' => 'LayoutName',
+ 'layoutType' => 'LayoutType',
+ 'mediaInputConfigList' => 'MediaInputConfigList',
+ 'screenInputConfigList' => 'ScreenInputConfigList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bgImageConfig) {
+ $res['BgImageConfig'] = null !== $this->bgImageConfig ? $this->bgImageConfig->toMap() : null;
+ }
+ if (null !== $this->commonConfig) {
+ $res['CommonConfig'] = null !== $this->commonConfig ? $this->commonConfig->toMap() : null;
+ }
+ if (null !== $this->layerOrderConfigList) {
+ $res['LayerOrderConfigList'] = [];
+ if (null !== $this->layerOrderConfigList && \is_array($this->layerOrderConfigList)) {
+ $n = 0;
+ foreach ($this->layerOrderConfigList as $item) {
+ $res['LayerOrderConfigList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->layoutName) {
+ $res['LayoutName'] = $this->layoutName;
+ }
+ if (null !== $this->layoutType) {
+ $res['LayoutType'] = $this->layoutType;
+ }
+ if (null !== $this->mediaInputConfigList) {
+ $res['MediaInputConfigList'] = [];
+ if (null !== $this->mediaInputConfigList && \is_array($this->mediaInputConfigList)) {
+ $n = 0;
+ foreach ($this->mediaInputConfigList as $item) {
+ $res['MediaInputConfigList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->screenInputConfigList) {
+ $res['ScreenInputConfigList'] = [];
+ if (null !== $this->screenInputConfigList && \is_array($this->screenInputConfigList)) {
+ $n = 0;
+ foreach ($this->screenInputConfigList as $item) {
+ $res['ScreenInputConfigList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return studioLayouts
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BgImageConfig'])) {
+ $model->bgImageConfig = bgImageConfig::fromMap($map['BgImageConfig']);
+ }
+ if (isset($map['CommonConfig'])) {
+ $model->commonConfig = commonConfig::fromMap($map['CommonConfig']);
+ }
+ if (isset($map['LayerOrderConfigList'])) {
+ if (!empty($map['LayerOrderConfigList'])) {
+ $model->layerOrderConfigList = [];
+ $n = 0;
+ foreach ($map['LayerOrderConfigList'] as $item) {
+ $model->layerOrderConfigList[$n++] = null !== $item ? layerOrderConfigList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['LayoutName'])) {
+ $model->layoutName = $map['LayoutName'];
+ }
+ if (isset($map['LayoutType'])) {
+ $model->layoutType = $map['LayoutType'];
+ }
+ if (isset($map['MediaInputConfigList'])) {
+ if (!empty($map['MediaInputConfigList'])) {
+ $model->mediaInputConfigList = [];
+ $n = 0;
+ foreach ($map['MediaInputConfigList'] as $item) {
+ $model->mediaInputConfigList[$n++] = null !== $item ? mediaInputConfigList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['ScreenInputConfigList'])) {
+ if (!empty($map['ScreenInputConfigList'])) {
+ $model->screenInputConfigList = [];
+ $n = 0;
+ foreach ($map['ScreenInputConfigList'] as $item) {
+ $model->screenInputConfigList[$n++] = null !== $item ? screenInputConfigList::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/bgImageConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/bgImageConfig.php
new file mode 100644
index 000000000..4c5722f49
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/bgImageConfig.php
@@ -0,0 +1,83 @@
+ 'Id',
+ 'imageUrl' => 'ImageUrl',
+ 'locationId' => 'LocationId',
+ 'materialId' => 'MaterialId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->id) {
+ $res['Id'] = $this->id;
+ }
+ if (null !== $this->imageUrl) {
+ $res['ImageUrl'] = $this->imageUrl;
+ }
+ if (null !== $this->locationId) {
+ $res['LocationId'] = $this->locationId;
+ }
+ if (null !== $this->materialId) {
+ $res['MaterialId'] = $this->materialId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return bgImageConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Id'])) {
+ $model->id = $map['Id'];
+ }
+ if (isset($map['ImageUrl'])) {
+ $model->imageUrl = $map['ImageUrl'];
+ }
+ if (isset($map['LocationId'])) {
+ $model->locationId = $map['LocationId'];
+ }
+ if (isset($map['MaterialId'])) {
+ $model->materialId = $map['MaterialId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/commonConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/commonConfig.php
new file mode 100644
index 000000000..6be07db8e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/commonConfig.php
@@ -0,0 +1,59 @@
+ 'ChannelId',
+ 'videoResourceId' => 'VideoResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->channelId) {
+ $res['ChannelId'] = $this->channelId;
+ }
+ if (null !== $this->videoResourceId) {
+ $res['VideoResourceId'] = $this->videoResourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return commonConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ChannelId'])) {
+ $model->channelId = $map['ChannelId'];
+ }
+ if (isset($map['VideoResourceId'])) {
+ $model->videoResourceId = $map['VideoResourceId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/layerOrderConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/layerOrderConfigList.php
new file mode 100644
index 000000000..9113a2086
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/layerOrderConfigList.php
@@ -0,0 +1,59 @@
+ 'Id',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->id) {
+ $res['Id'] = $this->id;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return layerOrderConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Id'])) {
+ $model->id = $map['Id'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/mediaInputConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/mediaInputConfigList.php
new file mode 100644
index 000000000..d42d365f8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/mediaInputConfigList.php
@@ -0,0 +1,157 @@
+ 'ChannelId',
+ 'fillMode' => 'FillMode',
+ 'heightNormalized' => 'HeightNormalized',
+ 'id' => 'Id',
+ 'imageMaterialId' => 'ImageMaterialId',
+ 'index' => 'Index',
+ 'positionNormalized' => 'PositionNormalized',
+ 'positionRefer' => 'PositionRefer',
+ 'videoResourceId' => 'VideoResourceId',
+ 'widthNormalized' => 'WidthNormalized',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->channelId) {
+ $res['ChannelId'] = $this->channelId;
+ }
+ if (null !== $this->fillMode) {
+ $res['FillMode'] = $this->fillMode;
+ }
+ if (null !== $this->heightNormalized) {
+ $res['HeightNormalized'] = $this->heightNormalized;
+ }
+ if (null !== $this->id) {
+ $res['Id'] = $this->id;
+ }
+ if (null !== $this->imageMaterialId) {
+ $res['ImageMaterialId'] = $this->imageMaterialId;
+ }
+ if (null !== $this->index) {
+ $res['Index'] = $this->index;
+ }
+ if (null !== $this->positionNormalized) {
+ $res['PositionNormalized'] = $this->positionNormalized;
+ }
+ if (null !== $this->positionRefer) {
+ $res['PositionRefer'] = $this->positionRefer;
+ }
+ if (null !== $this->videoResourceId) {
+ $res['VideoResourceId'] = $this->videoResourceId;
+ }
+ if (null !== $this->widthNormalized) {
+ $res['WidthNormalized'] = $this->widthNormalized;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return mediaInputConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ChannelId'])) {
+ $model->channelId = $map['ChannelId'];
+ }
+ if (isset($map['FillMode'])) {
+ $model->fillMode = $map['FillMode'];
+ }
+ if (isset($map['HeightNormalized'])) {
+ $model->heightNormalized = $map['HeightNormalized'];
+ }
+ if (isset($map['Id'])) {
+ $model->id = $map['Id'];
+ }
+ if (isset($map['ImageMaterialId'])) {
+ $model->imageMaterialId = $map['ImageMaterialId'];
+ }
+ if (isset($map['Index'])) {
+ $model->index = $map['Index'];
+ }
+ if (isset($map['PositionNormalized'])) {
+ if (!empty($map['PositionNormalized'])) {
+ $model->positionNormalized = $map['PositionNormalized'];
+ }
+ }
+ if (isset($map['PositionRefer'])) {
+ $model->positionRefer = $map['PositionRefer'];
+ }
+ if (isset($map['VideoResourceId'])) {
+ $model->videoResourceId = $map['VideoResourceId'];
+ }
+ if (isset($map['WidthNormalized'])) {
+ $model->widthNormalized = $map['WidthNormalized'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList.php
new file mode 100644
index 000000000..6d0f9d78f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList.php
@@ -0,0 +1,168 @@
+ 'AudioConfig',
+ 'channelId' => 'ChannelId',
+ 'color' => 'Color',
+ 'heightNormalized' => 'HeightNormalized',
+ 'id' => 'Id',
+ 'index' => 'Index',
+ 'onlyAudio' => 'OnlyAudio',
+ 'portraitType' => 'PortraitType',
+ 'positionX' => 'PositionX',
+ 'positionY' => 'PositionY',
+ 'videoResourceId' => 'VideoResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioConfig) {
+ $res['AudioConfig'] = null !== $this->audioConfig ? $this->audioConfig->toMap() : null;
+ }
+ if (null !== $this->channelId) {
+ $res['ChannelId'] = $this->channelId;
+ }
+ if (null !== $this->color) {
+ $res['Color'] = $this->color;
+ }
+ if (null !== $this->heightNormalized) {
+ $res['HeightNormalized'] = $this->heightNormalized;
+ }
+ if (null !== $this->id) {
+ $res['Id'] = $this->id;
+ }
+ if (null !== $this->index) {
+ $res['Index'] = $this->index;
+ }
+ if (null !== $this->onlyAudio) {
+ $res['OnlyAudio'] = $this->onlyAudio;
+ }
+ if (null !== $this->portraitType) {
+ $res['PortraitType'] = $this->portraitType;
+ }
+ if (null !== $this->positionX) {
+ $res['PositionX'] = $this->positionX;
+ }
+ if (null !== $this->positionY) {
+ $res['PositionY'] = $this->positionY;
+ }
+ if (null !== $this->videoResourceId) {
+ $res['VideoResourceId'] = $this->videoResourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return screenInputConfigList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioConfig'])) {
+ $model->audioConfig = audioConfig::fromMap($map['AudioConfig']);
+ }
+ if (isset($map['ChannelId'])) {
+ $model->channelId = $map['ChannelId'];
+ }
+ if (isset($map['Color'])) {
+ $model->color = $map['Color'];
+ }
+ if (isset($map['HeightNormalized'])) {
+ $model->heightNormalized = $map['HeightNormalized'];
+ }
+ if (isset($map['Id'])) {
+ $model->id = $map['Id'];
+ }
+ if (isset($map['Index'])) {
+ $model->index = $map['Index'];
+ }
+ if (isset($map['OnlyAudio'])) {
+ $model->onlyAudio = $map['OnlyAudio'];
+ }
+ if (isset($map['PortraitType'])) {
+ $model->portraitType = $map['PortraitType'];
+ }
+ if (isset($map['PositionX'])) {
+ $model->positionX = $map['PositionX'];
+ }
+ if (isset($map['PositionY'])) {
+ $model->positionY = $map['PositionY'];
+ }
+ if (isset($map['VideoResourceId'])) {
+ $model->videoResourceId = $map['VideoResourceId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList/audioConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList/audioConfig.php
new file mode 100644
index 000000000..c7a2e0c4e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList/audioConfig.php
@@ -0,0 +1,59 @@
+ 'ValidChannel',
+ 'volumeRate' => 'VolumeRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->validChannel) {
+ $res['ValidChannel'] = $this->validChannel;
+ }
+ if (null !== $this->volumeRate) {
+ $res['VolumeRate'] = $this->volumeRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioConfig
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ValidChannel'])) {
+ $model->validChannel = $map['ValidChannel'];
+ }
+ if (isset($map['VolumeRate'])) {
+ $model->volumeRate = $map['VolumeRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayRequest.php
new file mode 100644
index 000000000..f9d672510
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayRequest.php
@@ -0,0 +1,107 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ 'stream' => 'Stream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeToutiaoLivePlayRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponse.php
new file mode 100644
index 000000000..0e59eb0d6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeToutiaoLivePlayResponse
+ */
+ 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 = DescribeToutiaoLivePlayResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody.php
new file mode 100644
index 000000000..9cda5adff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody.php
@@ -0,0 +1,84 @@
+ 'Content',
+ 'description' => 'Description',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = [];
+ if (null !== $this->content && \is_array($this->content)) {
+ $n = 0;
+ foreach ($this->content as $item) {
+ $res['Content'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeToutiaoLivePlayResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ if (!empty($map['Content'])) {
+ $model->content = [];
+ $n = 0;
+ foreach ($map['Content'] as $item) {
+ $model->content[$n++] = null !== $item ? content::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody/content.php
new file mode 100644
index 000000000..644dcf7bc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody/content.php
@@ -0,0 +1,119 @@
+ 'App',
+ 'bandwidth' => 'Bandwidth',
+ 'cdnName' => 'CdnName',
+ 'domain' => 'Domain',
+ 'playNum' => 'PlayNum',
+ 'streamName' => 'StreamName',
+ 'timestamp' => 'Timestamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->bandwidth) {
+ $res['Bandwidth'] = $this->bandwidth;
+ }
+ if (null !== $this->cdnName) {
+ $res['CdnName'] = $this->cdnName;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->playNum) {
+ $res['PlayNum'] = $this->playNum;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->timestamp) {
+ $res['Timestamp'] = $this->timestamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return content
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Bandwidth'])) {
+ $model->bandwidth = $map['Bandwidth'];
+ }
+ if (isset($map['CdnName'])) {
+ $model->cdnName = $map['CdnName'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['PlayNum'])) {
+ $model->playNum = $map['PlayNum'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Timestamp'])) {
+ $model->timestamp = $map['Timestamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishRequest.php
new file mode 100644
index 000000000..010323ece
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishRequest.php
@@ -0,0 +1,107 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ 'stream' => 'Stream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeToutiaoLivePublishRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponse.php
new file mode 100644
index 000000000..90ae15ecf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeToutiaoLivePublishResponse
+ */
+ 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 = DescribeToutiaoLivePublishResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody.php
new file mode 100644
index 000000000..a6f85c414
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody.php
@@ -0,0 +1,84 @@
+ 'Content',
+ 'description' => 'Description',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = [];
+ if (null !== $this->content && \is_array($this->content)) {
+ $n = 0;
+ foreach ($this->content as $item) {
+ $res['Content'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeToutiaoLivePublishResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ if (!empty($map['Content'])) {
+ $model->content = [];
+ $n = 0;
+ foreach ($map['Content'] as $item) {
+ $model->content[$n++] = null !== $item ? content::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody/content.php
new file mode 100644
index 000000000..2a7da1600
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody/content.php
@@ -0,0 +1,143 @@
+ 'App',
+ 'bitrate' => 'Bitrate',
+ 'bwDiff' => 'BwDiff',
+ 'cdnName' => 'CdnName',
+ 'domain' => 'Domain',
+ 'flr' => 'Flr',
+ 'fps' => 'Fps',
+ 'streamName' => 'StreamName',
+ 'timestamp' => 'Timestamp',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->bitrate) {
+ $res['Bitrate'] = $this->bitrate;
+ }
+ if (null !== $this->bwDiff) {
+ $res['BwDiff'] = $this->bwDiff;
+ }
+ if (null !== $this->cdnName) {
+ $res['CdnName'] = $this->cdnName;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->flr) {
+ $res['Flr'] = $this->flr;
+ }
+ if (null !== $this->fps) {
+ $res['Fps'] = $this->fps;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->timestamp) {
+ $res['Timestamp'] = $this->timestamp;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return content
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Bitrate'])) {
+ $model->bitrate = $map['Bitrate'];
+ }
+ if (isset($map['BwDiff'])) {
+ $model->bwDiff = $map['BwDiff'];
+ }
+ if (isset($map['CdnName'])) {
+ $model->cdnName = $map['CdnName'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['Flr'])) {
+ $model->flr = $map['Flr'];
+ }
+ if (isset($map['Fps'])) {
+ $model->fps = $map['Fps'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Timestamp'])) {
+ $model->timestamp = $map['Timestamp'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataRequest.php
new file mode 100644
index 000000000..9648a4aae
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'domainSwitch' => 'DomainSwitch',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->domainSwitch) {
+ $res['DomainSwitch'] = $this->domainSwitch;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeUpBpsPeakDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['DomainSwitch'])) {
+ $model->domainSwitch = $map['DomainSwitch'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponse.php
new file mode 100644
index 000000000..c74b3dd06
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeUpBpsPeakDataResponse
+ */
+ 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 = DescribeUpBpsPeakDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody.php
new file mode 100644
index 000000000..789d9f6f8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'DescribeUpPeakTraffics',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->describeUpPeakTraffics) {
+ $res['DescribeUpPeakTraffics'] = null !== $this->describeUpPeakTraffics ? $this->describeUpPeakTraffics->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeUpBpsPeakDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DescribeUpPeakTraffics'])) {
+ $model->describeUpPeakTraffics = describeUpPeakTraffics::fromMap($map['DescribeUpPeakTraffics']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics.php
new file mode 100644
index 000000000..e808386e2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics.php
@@ -0,0 +1,60 @@
+ 'DescribeUpPeakTraffic',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->describeUpPeakTraffic) {
+ $res['DescribeUpPeakTraffic'] = [];
+ if (null !== $this->describeUpPeakTraffic && \is_array($this->describeUpPeakTraffic)) {
+ $n = 0;
+ foreach ($this->describeUpPeakTraffic as $item) {
+ $res['DescribeUpPeakTraffic'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return describeUpPeakTraffics
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DescribeUpPeakTraffic'])) {
+ if (!empty($map['DescribeUpPeakTraffic'])) {
+ $model->describeUpPeakTraffic = [];
+ $n = 0;
+ foreach ($map['DescribeUpPeakTraffic'] as $item) {
+ $model->describeUpPeakTraffic[$n++] = null !== $item ? describeUpPeakTraffic::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics/describeUpPeakTraffic.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics/describeUpPeakTraffic.php
new file mode 100644
index 000000000..49e301359
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics/describeUpPeakTraffic.php
@@ -0,0 +1,83 @@
+ 'BandWidth',
+ 'peakTime' => 'PeakTime',
+ 'queryTime' => 'QueryTime',
+ 'statName' => 'StatName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bandWidth) {
+ $res['BandWidth'] = $this->bandWidth;
+ }
+ if (null !== $this->peakTime) {
+ $res['PeakTime'] = $this->peakTime;
+ }
+ if (null !== $this->queryTime) {
+ $res['QueryTime'] = $this->queryTime;
+ }
+ if (null !== $this->statName) {
+ $res['StatName'] = $this->statName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return describeUpPeakTraffic
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BandWidth'])) {
+ $model->bandWidth = $map['BandWidth'];
+ }
+ if (isset($map['PeakTime'])) {
+ $model->peakTime = $map['PeakTime'];
+ }
+ if (isset($map['QueryTime'])) {
+ $model->queryTime = $map['QueryTime'];
+ }
+ if (isset($map['StatName'])) {
+ $model->statName = $map['StatName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineRequest.php
new file mode 100644
index 000000000..70a6cf2a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'domainSwitch' => 'DomainSwitch',
+ 'endTime' => 'EndTime',
+ 'line' => 'Line',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->domainSwitch) {
+ $res['DomainSwitch'] = $this->domainSwitch;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->line) {
+ $res['Line'] = $this->line;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeUpBpsPeakOfLineRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['DomainSwitch'])) {
+ $model->domainSwitch = $map['DomainSwitch'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['Line'])) {
+ $model->line = $map['Line'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponse.php
new file mode 100644
index 000000000..2956b5553
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeUpBpsPeakOfLineResponse
+ */
+ 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 = DescribeUpBpsPeakOfLineResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody.php
new file mode 100644
index 000000000..ad3c61f38
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody.php
@@ -0,0 +1,60 @@
+ 'DescribeUpBpsPeakOfLines',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->describeUpBpsPeakOfLines) {
+ $res['DescribeUpBpsPeakOfLines'] = null !== $this->describeUpBpsPeakOfLines ? $this->describeUpBpsPeakOfLines->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeUpBpsPeakOfLineResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DescribeUpBpsPeakOfLines'])) {
+ $model->describeUpBpsPeakOfLines = describeUpBpsPeakOfLines::fromMap($map['DescribeUpBpsPeakOfLines']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines.php
new file mode 100644
index 000000000..84e436e33
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines.php
@@ -0,0 +1,60 @@
+ 'DescribeUpBpsPeakOfLine',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->describeUpBpsPeakOfLine) {
+ $res['DescribeUpBpsPeakOfLine'] = [];
+ if (null !== $this->describeUpBpsPeakOfLine && \is_array($this->describeUpBpsPeakOfLine)) {
+ $n = 0;
+ foreach ($this->describeUpBpsPeakOfLine as $item) {
+ $res['DescribeUpBpsPeakOfLine'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return describeUpBpsPeakOfLines
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DescribeUpBpsPeakOfLine'])) {
+ if (!empty($map['DescribeUpBpsPeakOfLine'])) {
+ $model->describeUpBpsPeakOfLine = [];
+ $n = 0;
+ foreach ($map['DescribeUpBpsPeakOfLine'] as $item) {
+ $model->describeUpBpsPeakOfLine[$n++] = null !== $item ? describeUpBpsPeakOfLine::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines/describeUpBpsPeakOfLine.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines/describeUpBpsPeakOfLine.php
new file mode 100644
index 000000000..a79f57684
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines/describeUpBpsPeakOfLine.php
@@ -0,0 +1,83 @@
+ 'BandWidth',
+ 'peakTime' => 'PeakTime',
+ 'queryTime' => 'QueryTime',
+ 'statName' => 'StatName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bandWidth) {
+ $res['BandWidth'] = $this->bandWidth;
+ }
+ if (null !== $this->peakTime) {
+ $res['PeakTime'] = $this->peakTime;
+ }
+ if (null !== $this->queryTime) {
+ $res['QueryTime'] = $this->queryTime;
+ }
+ if (null !== $this->statName) {
+ $res['StatName'] = $this->statName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return describeUpBpsPeakOfLine
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BandWidth'])) {
+ $model->bandWidth = $map['BandWidth'];
+ }
+ if (isset($map['PeakTime'])) {
+ $model->peakTime = $map['PeakTime'];
+ }
+ if (isset($map['QueryTime'])) {
+ $model->queryTime = $map['QueryTime'];
+ }
+ if (isset($map['StatName'])) {
+ $model->statName = $map['StatName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataRequest.php
new file mode 100644
index 000000000..cc4e3e577
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'domainSwitch' => 'DomainSwitch',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->domainSwitch) {
+ $res['DomainSwitch'] = $this->domainSwitch;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeUpPeakPublishStreamDataRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['DomainSwitch'])) {
+ $model->domainSwitch = $map['DomainSwitch'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponse.php
new file mode 100644
index 000000000..91a0006cf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponse.php
@@ -0,0 +1,74 @@
+ '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 DescribeUpPeakPublishStreamDataResponse
+ */
+ 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 = DescribeUpPeakPublishStreamDataResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody.php
new file mode 100644
index 000000000..a2ff2aeb2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody.php
@@ -0,0 +1,60 @@
+ 'DescribeUpPeakPublishStreamDatas',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->describeUpPeakPublishStreamDatas) {
+ $res['DescribeUpPeakPublishStreamDatas'] = null !== $this->describeUpPeakPublishStreamDatas ? $this->describeUpPeakPublishStreamDatas->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DescribeUpPeakPublishStreamDataResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DescribeUpPeakPublishStreamDatas'])) {
+ $model->describeUpPeakPublishStreamDatas = describeUpPeakPublishStreamDatas::fromMap($map['DescribeUpPeakPublishStreamDatas']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas.php
new file mode 100644
index 000000000..a594c3b36
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas.php
@@ -0,0 +1,60 @@
+ 'DescribeUpPeakPublishStreamData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->describeUpPeakPublishStreamData) {
+ $res['DescribeUpPeakPublishStreamData'] = [];
+ if (null !== $this->describeUpPeakPublishStreamData && \is_array($this->describeUpPeakPublishStreamData)) {
+ $n = 0;
+ foreach ($this->describeUpPeakPublishStreamData as $item) {
+ $res['DescribeUpPeakPublishStreamData'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return describeUpPeakPublishStreamDatas
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DescribeUpPeakPublishStreamData'])) {
+ if (!empty($map['DescribeUpPeakPublishStreamData'])) {
+ $model->describeUpPeakPublishStreamData = [];
+ $n = 0;
+ foreach ($map['DescribeUpPeakPublishStreamData'] as $item) {
+ $model->describeUpPeakPublishStreamData[$n++] = null !== $item ? describeUpPeakPublishStreamData::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas/describeUpPeakPublishStreamData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas/describeUpPeakPublishStreamData.php
new file mode 100644
index 000000000..683bccef0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas/describeUpPeakPublishStreamData.php
@@ -0,0 +1,95 @@
+ 'BandWidth',
+ 'peakTime' => 'PeakTime',
+ 'publishStreamNum' => 'PublishStreamNum',
+ 'queryTime' => 'QueryTime',
+ 'statName' => 'StatName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bandWidth) {
+ $res['BandWidth'] = $this->bandWidth;
+ }
+ if (null !== $this->peakTime) {
+ $res['PeakTime'] = $this->peakTime;
+ }
+ if (null !== $this->publishStreamNum) {
+ $res['PublishStreamNum'] = $this->publishStreamNum;
+ }
+ if (null !== $this->queryTime) {
+ $res['QueryTime'] = $this->queryTime;
+ }
+ if (null !== $this->statName) {
+ $res['StatName'] = $this->statName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return describeUpPeakPublishStreamData
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BandWidth'])) {
+ $model->bandWidth = $map['BandWidth'];
+ }
+ if (isset($map['PeakTime'])) {
+ $model->peakTime = $map['PeakTime'];
+ }
+ if (isset($map['PublishStreamNum'])) {
+ $model->publishStreamNum = $map['PublishStreamNum'];
+ }
+ if (isset($map['QueryTime'])) {
+ $model->queryTime = $map['QueryTime'];
+ }
+ if (isset($map['StatName'])) {
+ $model->statName = $map['StatName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryRequest.php
new file mode 100644
index 000000000..911a98185
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DisableLiveRealtimeLogDeliveryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponse.php
new file mode 100644
index 000000000..e1944d12b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponse.php
@@ -0,0 +1,74 @@
+ '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 DisableLiveRealtimeLogDeliveryResponse
+ */
+ 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 = DisableLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponseBody.php
new file mode 100644
index 000000000..99e1aa175
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DisableLiveRealtimeLogDeliveryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleRequest.php
new file mode 100644
index 000000000..c09393ac9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleRequest.php
@@ -0,0 +1,95 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'ownerId' => 'OwnerId',
+ 'stream' => 'Stream',
+ 'templateId' => 'TemplateId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DynamicUpdateWaterMarkStreamRuleRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponse.php
new file mode 100644
index 000000000..451749497
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponse.php
@@ -0,0 +1,74 @@
+ '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 DynamicUpdateWaterMarkStreamRuleResponse
+ */
+ 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 = DynamicUpdateWaterMarkStreamRuleResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponseBody.php
new file mode 100644
index 000000000..b9d283acd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return DynamicUpdateWaterMarkStreamRuleResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceRequest.php
new file mode 100644
index 000000000..abe8793e5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceRequest.php
@@ -0,0 +1,107 @@
+ 'OwnerId',
+ 'htmlResourceId' => 'HtmlResourceId',
+ 'casterId' => 'CasterId',
+ 'htmlUrl' => 'HtmlUrl',
+ 'htmlContent' => 'htmlContent',
+ 'config' => 'Config',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->htmlResourceId) {
+ $res['HtmlResourceId'] = $this->htmlResourceId;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->htmlUrl) {
+ $res['HtmlUrl'] = $this->htmlUrl;
+ }
+ if (null !== $this->htmlContent) {
+ $res['htmlContent'] = $this->htmlContent;
+ }
+ if (null !== $this->config) {
+ $res['Config'] = $this->config;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EditHtmlResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['HtmlResourceId'])) {
+ $model->htmlResourceId = $map['HtmlResourceId'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['HtmlUrl'])) {
+ $model->htmlUrl = $map['HtmlUrl'];
+ }
+ if (isset($map['htmlContent'])) {
+ $model->htmlContent = $map['htmlContent'];
+ }
+ if (isset($map['Config'])) {
+ $model->config = $map['Config'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponse.php
new file mode 100644
index 000000000..42150df9c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EditHtmlResourceResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = EditHtmlResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponseBody.php
new file mode 100644
index 000000000..c460ccf37
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'htmlResourceId' => 'HtmlResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->htmlResourceId) {
+ $res['HtmlResourceId'] = $this->htmlResourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EditHtmlResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['HtmlResourceId'])) {
+ $model->htmlResourceId = $map['HtmlResourceId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistRequest.php
new file mode 100644
index 000000000..7ffde4272
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'programConfig' => 'ProgramConfig',
+ 'programId' => 'ProgramId',
+ 'programItems' => 'ProgramItems',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programConfig) {
+ $res['ProgramConfig'] = $this->programConfig;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->programItems) {
+ $res['ProgramItems'] = $this->programItems;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EditPlaylistRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramConfig'])) {
+ $model->programConfig = $map['ProgramConfig'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['ProgramItems'])) {
+ $model->programItems = $map['ProgramItems'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponse.php
new file mode 100644
index 000000000..fbe882d64
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponse.php
@@ -0,0 +1,74 @@
+ '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 EditPlaylistResponse
+ */
+ 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 = EditPlaylistResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody.php
new file mode 100644
index 000000000..db1250a90
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody.php
@@ -0,0 +1,84 @@
+ 'CasterId',
+ 'items' => 'Items',
+ 'programId' => 'ProgramId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->items) {
+ $res['Items'] = null !== $this->items ? $this->items->toMap() : null;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EditPlaylistResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['Items'])) {
+ $model->items = items::fromMap($map['Items']);
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items.php
new file mode 100644
index 000000000..07a549afd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items.php
@@ -0,0 +1,85 @@
+ 'FailedItems',
+ 'successItems' => 'SuccessItems',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->failedItems) {
+ $res['FailedItems'] = [];
+ if (null !== $this->failedItems && \is_array($this->failedItems)) {
+ $n = 0;
+ foreach ($this->failedItems as $item) {
+ $res['FailedItems'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->successItems) {
+ $res['SuccessItems'] = [];
+ if (null !== $this->successItems && \is_array($this->successItems)) {
+ $n = 0;
+ foreach ($this->successItems as $item) {
+ $res['SuccessItems'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return items
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FailedItems'])) {
+ if (!empty($map['FailedItems'])) {
+ $model->failedItems = [];
+ $n = 0;
+ foreach ($map['FailedItems'] as $item) {
+ $model->failedItems[$n++] = null !== $item ? failedItems::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['SuccessItems'])) {
+ if (!empty($map['SuccessItems'])) {
+ $model->successItems = [];
+ $n = 0;
+ foreach ($map['SuccessItems'] as $item) {
+ $model->successItems[$n++] = null !== $item ? successItems::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/failedItems.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/failedItems.php
new file mode 100644
index 000000000..b0afc979f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/failedItems.php
@@ -0,0 +1,59 @@
+ 'ItemId',
+ 'itemName' => 'ItemName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemId) {
+ $res['ItemId'] = $this->itemId;
+ }
+ if (null !== $this->itemName) {
+ $res['ItemName'] = $this->itemName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return failedItems
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemId'])) {
+ $model->itemId = $map['ItemId'];
+ }
+ if (isset($map['ItemName'])) {
+ $model->itemName = $map['ItemName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/successItems.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/successItems.php
new file mode 100644
index 000000000..73375a484
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/successItems.php
@@ -0,0 +1,59 @@
+ 'ItemId',
+ 'itemName' => 'ItemName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->itemId) {
+ $res['ItemId'] = $this->itemId;
+ }
+ if (null !== $this->itemName) {
+ $res['ItemName'] = $this->itemName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return successItems
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ItemId'])) {
+ $model->itemId = $map['ItemId'];
+ }
+ if (isset($map['ItemName'])) {
+ $model->itemName = $map['ItemName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceRequest.php
new file mode 100644
index 000000000..1a53010b3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceRequest.php
@@ -0,0 +1,119 @@
+ 'CasterId',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'showId' => 'ShowId',
+ 'startTime' => 'StartTime',
+ 'storageInfo' => 'StorageInfo',
+ 'userData' => 'UserData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->storageInfo) {
+ $res['StorageInfo'] = $this->storageInfo;
+ }
+ if (null !== $this->userData) {
+ $res['UserData'] = $this->userData;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EditShowAndReplaceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StorageInfo'])) {
+ $model->storageInfo = $map['StorageInfo'];
+ }
+ if (isset($map['UserData'])) {
+ $model->userData = $map['UserData'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponse.php
new file mode 100644
index 000000000..2dab93e74
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponse.php
@@ -0,0 +1,74 @@
+ '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 EditShowAndReplaceResponse
+ */
+ 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 = EditShowAndReplaceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponseBody.php
new file mode 100644
index 000000000..518e188be
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponseBody.php
@@ -0,0 +1,59 @@
+ 'JobInfo',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->jobInfo) {
+ $res['JobInfo'] = $this->jobInfo;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EditShowAndReplaceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['JobInfo'])) {
+ $model->jobInfo = $map['JobInfo'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentRequest.php
new file mode 100644
index 000000000..fa0825e64
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EffectCasterUrgentRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponse.php
new file mode 100644
index 000000000..78c5b52d6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponse.php
@@ -0,0 +1,74 @@
+ '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 EffectCasterUrgentResponse
+ */
+ 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 = EffectCasterUrgentResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponseBody.php
new file mode 100644
index 000000000..f55c77ba1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EffectCasterUrgentResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceRequest.php
new file mode 100644
index 000000000..d6607fb3f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceRequest.php
@@ -0,0 +1,83 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'resourceId' => 'ResourceId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EffectCasterVideoResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponse.php
new file mode 100644
index 000000000..b031571a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponse.php
@@ -0,0 +1,74 @@
+ '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 EffectCasterVideoResourceResponse
+ */
+ 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 = EffectCasterVideoResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponseBody.php
new file mode 100644
index 000000000..d88f0ff4f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EffectCasterVideoResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryRequest.php
new file mode 100644
index 000000000..ec4df5b30
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EnableLiveRealtimeLogDeliveryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponse.php
new file mode 100644
index 000000000..96922f6dc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponse.php
@@ -0,0 +1,74 @@
+ '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 EnableLiveRealtimeLogDeliveryResponse
+ */
+ 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 = EnableLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponseBody.php
new file mode 100644
index 000000000..e79c604ae
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return EnableLiveRealtimeLogDeliveryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamRequest.php
new file mode 100644
index 000000000..a5079f1cd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'liveStreamType' => 'LiveStreamType',
+ 'oneshot' => 'Oneshot',
+ 'ownerId' => 'OwnerId',
+ 'resumeTime' => 'ResumeTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->liveStreamType) {
+ $res['LiveStreamType'] = $this->liveStreamType;
+ }
+ if (null !== $this->oneshot) {
+ $res['Oneshot'] = $this->oneshot;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resumeTime) {
+ $res['ResumeTime'] = $this->resumeTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ForbidLiveStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['LiveStreamType'])) {
+ $model->liveStreamType = $map['LiveStreamType'];
+ }
+ if (isset($map['Oneshot'])) {
+ $model->oneshot = $map['Oneshot'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResumeTime'])) {
+ $model->resumeTime = $map['ResumeTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponse.php
new file mode 100644
index 000000000..1367ad106
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 ForbidLiveStreamResponse
+ */
+ 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 = ForbidLiveStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponseBody.php
new file mode 100644
index 000000000..6b75d2f41
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ForbidLiveStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamRequest.php
new file mode 100644
index 000000000..01f6faf76
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'roomId' => 'RoomId',
+ 'userData' => 'UserData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+ if (null !== $this->userData) {
+ $res['UserData'] = $this->userData;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ForbidPushStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+ if (isset($map['UserData'])) {
+ $model->userData = $map['UserData'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponse.php
new file mode 100644
index 000000000..d0fbb4b9c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 ForbidPushStreamResponse
+ */
+ 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 = ForbidPushStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponseBody.php
new file mode 100644
index 000000000..1e93263bf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ForbidPushStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesRequest.php
new file mode 100644
index 000000000..e410a9334
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'userId' => 'UserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetAllCustomTemplatesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponse.php
new file mode 100644
index 000000000..3682d659a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponse.php
@@ -0,0 +1,74 @@
+ '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 GetAllCustomTemplatesResponse
+ */
+ 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 = GetAllCustomTemplatesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponseBody.php
new file mode 100644
index 000000000..e4288a2db
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponseBody.php
@@ -0,0 +1,59 @@
+ 'CustomTemplates',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->customTemplates) {
+ $res['CustomTemplates'] = $this->customTemplates;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetAllCustomTemplatesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CustomTemplates'])) {
+ $model->customTemplates = $map['CustomTemplates'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateRequest.php
new file mode 100644
index 000000000..a343b9758
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'template' => 'Template',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetCustomTemplateRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponse.php
new file mode 100644
index 000000000..22780e418
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponse.php
@@ -0,0 +1,74 @@
+ '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 GetCustomTemplateResponse
+ */
+ 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 = GetCustomTemplateResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponseBody.php
new file mode 100644
index 000000000..7c7100582
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponseBody.php
@@ -0,0 +1,71 @@
+ 'CustomTemplate',
+ 'requestId' => 'RequestId',
+ 'template' => 'Template',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->customTemplate) {
+ $res['CustomTemplate'] = $this->customTemplate;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetCustomTemplateResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CustomTemplate'])) {
+ $model->customTemplate = $map['CustomTemplate'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoRequest.php
new file mode 100644
index 000000000..9010818ee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'showId' => 'ShowId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetEditingJobInfoRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponse.php
new file mode 100644
index 000000000..0e6d2ce8c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponse.php
@@ -0,0 +1,74 @@
+ '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 GetEditingJobInfoResponse
+ */
+ 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 = GetEditingJobInfoResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponseBody.php
new file mode 100644
index 000000000..2393b34c5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponseBody.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'editingTasksInfo' => 'EditingTasksInfo',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->editingTasksInfo) {
+ $res['EditingTasksInfo'] = $this->editingTasksInfo;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetEditingJobInfoResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EditingTasksInfo'])) {
+ $model->editingTasksInfo = $map['EditingTasksInfo'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppRequest.php
new file mode 100644
index 000000000..91a6a4981
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppRequest.php
@@ -0,0 +1,47 @@
+ 'AppId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageAppRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponse.php
new file mode 100644
index 000000000..2cb244641
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponse.php
@@ -0,0 +1,74 @@
+ '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 GetMessageAppResponse
+ */
+ 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 = GetMessageAppResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody.php
new file mode 100644
index 000000000..1dab6c235
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageAppResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody/result.php
new file mode 100644
index 000000000..8f17e5ed2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody/result.php
@@ -0,0 +1,107 @@
+ 'AppConfig',
+ 'appId' => 'AppId',
+ 'appName' => 'AppName',
+ 'createTime' => 'CreateTime',
+ 'extension' => 'Extension',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appConfig) {
+ $res['AppConfig'] = $this->appConfig;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppConfig'])) {
+ $model->appConfig = $map['AppConfig'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupRequest.php
new file mode 100644
index 000000000..2ff7cfb92
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupRequest.php
@@ -0,0 +1,59 @@
+ 'AppId',
+ 'groupId' => 'GroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponse.php
new file mode 100644
index 000000000..09b598964
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 GetMessageGroupResponse
+ */
+ 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 = GetMessageGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody.php
new file mode 100644
index 000000000..52ccc479c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody/result.php
new file mode 100644
index 000000000..39cecf097
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody/result.php
@@ -0,0 +1,107 @@
+ 'CreateTime',
+ 'creatorId' => 'CreatorId',
+ 'extension' => 'Extension',
+ 'groupId' => 'GroupId',
+ 'isMuteAll' => 'IsMuteAll',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->creatorId) {
+ $res['CreatorId'] = $this->creatorId;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->isMuteAll) {
+ $res['IsMuteAll'] = $this->isMuteAll;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['CreatorId'])) {
+ $model->creatorId = $map['CreatorId'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['IsMuteAll'])) {
+ $model->isMuteAll = $map['IsMuteAll'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenRequest.php
new file mode 100644
index 000000000..2b34faae0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenRequest.php
@@ -0,0 +1,83 @@
+ 'AppId',
+ 'deviceId' => 'DeviceId',
+ 'deviceType' => 'DeviceType',
+ 'userId' => 'UserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->deviceId) {
+ $res['DeviceId'] = $this->deviceId;
+ }
+ if (null !== $this->deviceType) {
+ $res['DeviceType'] = $this->deviceType;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageTokenRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['DeviceId'])) {
+ $model->deviceId = $map['DeviceId'];
+ }
+ if (isset($map['DeviceType'])) {
+ $model->deviceType = $map['DeviceType'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponse.php
new file mode 100644
index 000000000..fe383ec5a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponse.php
@@ -0,0 +1,74 @@
+ '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 GetMessageTokenResponse
+ */
+ 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 = GetMessageTokenResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody.php
new file mode 100644
index 000000000..8d2bc6054
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageTokenResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody/result.php
new file mode 100644
index 000000000..1bc48630e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody/result.php
@@ -0,0 +1,71 @@
+ 'AccessToken',
+ 'accessTokenExpiredTime' => 'AccessTokenExpiredTime',
+ 'refreshToken' => 'RefreshToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->accessToken) {
+ $res['AccessToken'] = $this->accessToken;
+ }
+ if (null !== $this->accessTokenExpiredTime) {
+ $res['AccessTokenExpiredTime'] = $this->accessTokenExpiredTime;
+ }
+ if (null !== $this->refreshToken) {
+ $res['RefreshToken'] = $this->refreshToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AccessToken'])) {
+ $model->accessToken = $map['AccessToken'];
+ }
+ if (isset($map['AccessTokenExpiredTime'])) {
+ $model->accessTokenExpiredTime = $map['AccessTokenExpiredTime'];
+ }
+ if (isset($map['RefreshToken'])) {
+ $model->refreshToken = $map['RefreshToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoRequest.php
new file mode 100644
index 000000000..d60ecb1b6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoRequest.php
@@ -0,0 +1,47 @@
+ 'CloudUid',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->cloudUid) {
+ $res['CloudUid'] = $this->cloudUid;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageUserInfoRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CloudUid'])) {
+ $model->cloudUid = $map['CloudUid'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponse.php
new file mode 100644
index 000000000..51b7cfde3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponse.php
@@ -0,0 +1,74 @@
+ '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 GetMessageUserInfoResponse
+ */
+ 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 = GetMessageUserInfoResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody.php
new file mode 100644
index 000000000..cfa4a4a88
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMessageUserInfoResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody/result.php
new file mode 100644
index 000000000..f4ff4a41e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody/result.php
@@ -0,0 +1,59 @@
+ 'HasOrderedIM',
+ 'isNewIMUser' => 'IsNewIMUser',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->hasOrderedIM) {
+ $res['HasOrderedIM'] = $this->hasOrderedIM;
+ }
+ if (null !== $this->isNewIMUser) {
+ $res['IsNewIMUser'] = $this->isNewIMUser;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HasOrderedIM'])) {
+ $model->hasOrderedIM = $map['HasOrderedIM'];
+ }
+ if (isset($map['IsNewIMUser'])) {
+ $model->isNewIMUser = $map['IsNewIMUser'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListRequest.php
new file mode 100644
index 000000000..f253e323c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMultiRateConfigListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponse.php
new file mode 100644
index 000000000..e6a6d43e7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponse.php
@@ -0,0 +1,74 @@
+ '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 GetMultiRateConfigListResponse
+ */
+ 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 = GetMultiRateConfigListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody.php
new file mode 100644
index 000000000..1e75aa058
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody.php
@@ -0,0 +1,84 @@
+ 'Code',
+ 'groupInfo' => 'GroupInfo',
+ 'message' => 'Message',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->code) {
+ $res['Code'] = $this->code;
+ }
+ if (null !== $this->groupInfo) {
+ $res['GroupInfo'] = null !== $this->groupInfo ? $this->groupInfo->toMap() : null;
+ }
+ if (null !== $this->message) {
+ $res['Message'] = $this->message;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMultiRateConfigListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Code'])) {
+ $model->code = $map['Code'];
+ }
+ if (isset($map['GroupInfo'])) {
+ $model->groupInfo = groupInfo::fromMap($map['GroupInfo']);
+ }
+ if (isset($map['Message'])) {
+ $model->message = $map['Message'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo.php
new file mode 100644
index 000000000..8a9985089
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo.php
@@ -0,0 +1,60 @@
+ 'Info',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->info) {
+ $res['Info'] = [];
+ if (null !== $this->info && \is_array($this->info)) {
+ $n = 0;
+ foreach ($this->info as $item) {
+ $res['Info'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return groupInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Info'])) {
+ if (!empty($map['Info'])) {
+ $model->info = [];
+ $n = 0;
+ foreach ($map['Info'] as $item) {
+ $model->info[$n++] = null !== $item ? info::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo/info.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo/info.php
new file mode 100644
index 000000000..84d4d9c69
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo/info.php
@@ -0,0 +1,83 @@
+ 'App',
+ 'avFormat' => 'AvFormat',
+ 'count' => 'Count',
+ 'groupId' => 'GroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->avFormat) {
+ $res['AvFormat'] = $this->avFormat;
+ }
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return info
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['AvFormat'])) {
+ $model->avFormat = $map['AvFormat'];
+ }
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigRequest.php
new file mode 100644
index 000000000..a16d5e936
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigRequest.php
@@ -0,0 +1,83 @@
+ 'App',
+ 'domainName' => 'DomainName',
+ 'groupId' => 'GroupId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMultiRateConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponse.php
new file mode 100644
index 000000000..2bb1acb1b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 GetMultiRateConfigResponse
+ */
+ 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 = GetMultiRateConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody.php
new file mode 100644
index 000000000..d99dbec3a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody.php
@@ -0,0 +1,168 @@
+ 'App',
+ 'avFormat' => 'AvFormat',
+ 'code' => 'Code',
+ 'domain' => 'Domain',
+ 'groupId' => 'GroupId',
+ 'isLazy' => 'IsLazy',
+ 'isTimeAlign' => 'IsTimeAlign',
+ 'message' => 'Message',
+ 'requestId' => 'RequestId',
+ 'stream' => 'Stream',
+ 'templatesInfo' => 'TemplatesInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->avFormat) {
+ $res['AvFormat'] = $this->avFormat;
+ }
+ if (null !== $this->code) {
+ $res['Code'] = $this->code;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->isLazy) {
+ $res['IsLazy'] = $this->isLazy;
+ }
+ if (null !== $this->isTimeAlign) {
+ $res['IsTimeAlign'] = $this->isTimeAlign;
+ }
+ if (null !== $this->message) {
+ $res['Message'] = $this->message;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+ if (null !== $this->templatesInfo) {
+ $res['TemplatesInfo'] = null !== $this->templatesInfo ? $this->templatesInfo->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return GetMultiRateConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['AvFormat'])) {
+ $model->avFormat = $map['AvFormat'];
+ }
+ if (isset($map['Code'])) {
+ $model->code = $map['Code'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['IsLazy'])) {
+ $model->isLazy = $map['IsLazy'];
+ }
+ if (isset($map['IsTimeAlign'])) {
+ $model->isTimeAlign = $map['IsTimeAlign'];
+ }
+ if (isset($map['Message'])) {
+ $model->message = $map['Message'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+ if (isset($map['TemplatesInfo'])) {
+ $model->templatesInfo = templatesInfo::fromMap($map['TemplatesInfo']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo.php
new file mode 100644
index 000000000..370b72698
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo.php
@@ -0,0 +1,60 @@
+ 'Detail',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->detail) {
+ $res['Detail'] = [];
+ if (null !== $this->detail && \is_array($this->detail)) {
+ $n = 0;
+ foreach ($this->detail as $item) {
+ $res['Detail'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return templatesInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Detail'])) {
+ if (!empty($map['Detail'])) {
+ $model->detail = [];
+ $n = 0;
+ foreach ($map['Detail'] as $item) {
+ $model->detail[$n++] = null !== $item ? detail::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo/detail.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo/detail.php
new file mode 100644
index 000000000..23fb09036
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo/detail.php
@@ -0,0 +1,203 @@
+ 'AudioBitrate',
+ 'audioChannelNum' => 'AudioChannelNum',
+ 'audioCodec' => 'AudioCodec',
+ 'audioProfile' => 'AudioProfile',
+ 'audioRate' => 'AudioRate',
+ 'bandWidth' => 'BandWidth',
+ 'fps' => 'Fps',
+ 'gop' => 'Gop',
+ 'height' => 'Height',
+ 'profile' => 'Profile',
+ 'template' => 'Template',
+ 'templateType' => 'TemplateType',
+ 'videoBitrate' => 'VideoBitrate',
+ 'width' => 'Width',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioBitrate) {
+ $res['AudioBitrate'] = $this->audioBitrate;
+ }
+ if (null !== $this->audioChannelNum) {
+ $res['AudioChannelNum'] = $this->audioChannelNum;
+ }
+ if (null !== $this->audioCodec) {
+ $res['AudioCodec'] = $this->audioCodec;
+ }
+ if (null !== $this->audioProfile) {
+ $res['AudioProfile'] = $this->audioProfile;
+ }
+ if (null !== $this->audioRate) {
+ $res['AudioRate'] = $this->audioRate;
+ }
+ if (null !== $this->bandWidth) {
+ $res['BandWidth'] = $this->bandWidth;
+ }
+ if (null !== $this->fps) {
+ $res['Fps'] = $this->fps;
+ }
+ if (null !== $this->gop) {
+ $res['Gop'] = $this->gop;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->profile) {
+ $res['Profile'] = $this->profile;
+ }
+ if (null !== $this->template) {
+ $res['Template'] = $this->template;
+ }
+ if (null !== $this->templateType) {
+ $res['TemplateType'] = $this->templateType;
+ }
+ if (null !== $this->videoBitrate) {
+ $res['VideoBitrate'] = $this->videoBitrate;
+ }
+ if (null !== $this->width) {
+ $res['Width'] = $this->width;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return detail
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioBitrate'])) {
+ $model->audioBitrate = $map['AudioBitrate'];
+ }
+ if (isset($map['AudioChannelNum'])) {
+ $model->audioChannelNum = $map['AudioChannelNum'];
+ }
+ if (isset($map['AudioCodec'])) {
+ $model->audioCodec = $map['AudioCodec'];
+ }
+ if (isset($map['AudioProfile'])) {
+ $model->audioProfile = $map['AudioProfile'];
+ }
+ if (isset($map['AudioRate'])) {
+ $model->audioRate = $map['AudioRate'];
+ }
+ if (isset($map['BandWidth'])) {
+ $model->bandWidth = $map['BandWidth'];
+ }
+ if (isset($map['Fps'])) {
+ $model->fps = $map['Fps'];
+ }
+ if (isset($map['Gop'])) {
+ $model->gop = $map['Gop'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['Profile'])) {
+ $model->profile = $map['Profile'];
+ }
+ if (isset($map['Template'])) {
+ $model->template = $map['Template'];
+ }
+ if (isset($map['TemplateType'])) {
+ $model->templateType = $map['TemplateType'];
+ }
+ if (isset($map['VideoBitrate'])) {
+ $model->videoBitrate = $map['VideoBitrate'];
+ }
+ if (isset($map['Width'])) {
+ $model->width = $map['Width'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamRequest.php
new file mode 100644
index 000000000..5a22a67c8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamRequest.php
@@ -0,0 +1,143 @@
+ 'AppName',
+ 'audioMsid' => 'AudioMsid',
+ 'connectionTimeout' => 'ConnectionTimeout',
+ 'domainName' => 'DomainName',
+ 'mediaTimeout' => 'MediaTimeout',
+ 'ownerId' => 'OwnerId',
+ 'regionCode' => 'RegionCode',
+ 'streamName' => 'StreamName',
+ 'videoMsid' => 'VideoMsid',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->audioMsid) {
+ $res['AudioMsid'] = $this->audioMsid;
+ }
+ if (null !== $this->connectionTimeout) {
+ $res['ConnectionTimeout'] = $this->connectionTimeout;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->mediaTimeout) {
+ $res['MediaTimeout'] = $this->mediaTimeout;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->regionCode) {
+ $res['RegionCode'] = $this->regionCode;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->videoMsid) {
+ $res['VideoMsid'] = $this->videoMsid;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return HotLiveRtcStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['AudioMsid'])) {
+ $model->audioMsid = $map['AudioMsid'];
+ }
+ if (isset($map['ConnectionTimeout'])) {
+ $model->connectionTimeout = $map['ConnectionTimeout'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['MediaTimeout'])) {
+ $model->mediaTimeout = $map['MediaTimeout'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RegionCode'])) {
+ $model->regionCode = $map['RegionCode'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['VideoMsid'])) {
+ $model->videoMsid = $map['VideoMsid'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponse.php
new file mode 100644
index 000000000..34519e653
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 HotLiveRtcStreamResponse
+ */
+ 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 = HotLiveRtcStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponseBody.php
new file mode 100644
index 000000000..cf572b9e5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return HotLiveRtcStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskRequest.php b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskRequest.php
new file mode 100644
index 000000000..66fe87b08
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskRequest.php
@@ -0,0 +1,119 @@
+ 'CallBackUrl',
+ 'casterConfig' => 'CasterConfig',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'resourceIds' => 'ResourceIds',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callBackUrl) {
+ $res['CallBackUrl'] = $this->callBackUrl;
+ }
+ if (null !== $this->casterConfig) {
+ $res['CasterConfig'] = $this->casterConfig;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceIds) {
+ $res['ResourceIds'] = $this->resourceIds;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return InitializeAutoShowListTaskRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CallBackUrl'])) {
+ $model->callBackUrl = $map['CallBackUrl'];
+ }
+ if (isset($map['CasterConfig'])) {
+ $model->casterConfig = $map['CasterConfig'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceIds'])) {
+ $model->resourceIds = $map['ResourceIds'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponse.php b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponse.php
new file mode 100644
index 000000000..86ccf7f3c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponse.php
@@ -0,0 +1,74 @@
+ '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 InitializeAutoShowListTaskResponse
+ */
+ 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 = InitializeAutoShowListTaskResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponseBody.php
new file mode 100644
index 000000000..69daeb52a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponseBody.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ 'streamList' => 'StreamList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamList) {
+ $res['StreamList'] = $this->streamList;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return InitializeAutoShowListTaskResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamList'])) {
+ $model->streamList = $map['StreamList'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardRequest.php
new file mode 100644
index 000000000..5991ec656
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'appUid' => 'AppUid',
+ 'boardId' => 'BoardId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return JoinBoardRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponse.php
new file mode 100644
index 000000000..17d1427a9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return JoinBoardResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = JoinBoardResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponseBody.php
new file mode 100644
index 000000000..8558be83c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponseBody.php
@@ -0,0 +1,107 @@
+ 'BoardId',
+ 'requestId' => 'RequestId',
+ 'token' => 'Token',
+ 'topicId' => 'TopicId',
+ 'keepaliveTopic' => 'KeepaliveTopic',
+ 'keepaliveInterval' => 'KeepaliveInterval',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->token) {
+ $res['Token'] = $this->token;
+ }
+ if (null !== $this->topicId) {
+ $res['TopicId'] = $this->topicId;
+ }
+ if (null !== $this->keepaliveTopic) {
+ $res['KeepaliveTopic'] = $this->keepaliveTopic;
+ }
+ if (null !== $this->keepaliveInterval) {
+ $res['KeepaliveInterval'] = $this->keepaliveInterval;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return JoinBoardResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Token'])) {
+ $model->token = $map['Token'];
+ }
+ if (isset($map['TopicId'])) {
+ $model->topicId = $map['TopicId'];
+ }
+ if (isset($map['KeepaliveTopic'])) {
+ $model->keepaliveTopic = $map['KeepaliveTopic'];
+ }
+ if (isset($map['KeepaliveInterval'])) {
+ $model->keepaliveInterval = $map['KeepaliveInterval'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupRequest.php
new file mode 100644
index 000000000..4c3c1957c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'broadCastStatistics' => 'BroadCastStatistics',
+ 'broadCastType' => 'BroadCastType',
+ 'groupId' => 'GroupId',
+ 'userId' => 'UserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->broadCastStatistics) {
+ $res['BroadCastStatistics'] = $this->broadCastStatistics;
+ }
+ if (null !== $this->broadCastType) {
+ $res['BroadCastType'] = $this->broadCastType;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return JoinMessageGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BroadCastStatistics'])) {
+ $model->broadCastStatistics = $map['BroadCastStatistics'];
+ }
+ if (isset($map['BroadCastType'])) {
+ $model->broadCastType = $map['BroadCastType'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponse.php
new file mode 100644
index 000000000..681c07f71
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 JoinMessageGroupResponse
+ */
+ 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 = JoinMessageGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody.php
new file mode 100644
index 000000000..78080c66f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return JoinMessageGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody/result.php
new file mode 100644
index 000000000..42f4ef806
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'Success',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->success) {
+ $res['Success'] = $this->success;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Success'])) {
+ $model->success = $map['Success'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupRequest.php
new file mode 100644
index 000000000..8d49dfec1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'broadCastStatistics' => 'BroadCastStatistics',
+ 'broadCastType' => 'BroadCastType',
+ 'groupId' => 'GroupId',
+ 'userId' => 'UserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->broadCastStatistics) {
+ $res['BroadCastStatistics'] = $this->broadCastStatistics;
+ }
+ if (null !== $this->broadCastType) {
+ $res['BroadCastType'] = $this->broadCastType;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return LeaveMessageGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BroadCastStatistics'])) {
+ $model->broadCastStatistics = $map['BroadCastStatistics'];
+ }
+ if (isset($map['BroadCastType'])) {
+ $model->broadCastType = $map['BroadCastType'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponse.php
new file mode 100644
index 000000000..d999335ca
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 LeaveMessageGroupResponse
+ */
+ 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 = LeaveMessageGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody.php
new file mode 100644
index 000000000..e376b551a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return LeaveMessageGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody/result.php
new file mode 100644
index 000000000..4a77edd56
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'Success',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->success) {
+ $res['Success'] = $this->success;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Success'])) {
+ $model->success = $map['Success'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsRequest.php
new file mode 100644
index 000000000..1069a432c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsRequest.php
@@ -0,0 +1,83 @@
+ 'Logstore',
+ 'ownerId' => 'OwnerId',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListLiveRealtimeLogDeliveryDomainsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponse.php
new file mode 100644
index 000000000..c82c4d845
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponse.php
@@ -0,0 +1,74 @@
+ '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 ListLiveRealtimeLogDeliveryDomainsResponse
+ */
+ 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 = ListLiveRealtimeLogDeliveryDomainsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody.php
new file mode 100644
index 000000000..ef80a6550
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody.php
@@ -0,0 +1,60 @@
+ 'Content',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = null !== $this->content ? $this->content->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListLiveRealtimeLogDeliveryDomainsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ $model->content = content::fromMap($map['Content']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content.php
new file mode 100644
index 000000000..105fb4a1a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content.php
@@ -0,0 +1,60 @@
+ 'Domains',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domains) {
+ $res['Domains'] = [];
+ if (null !== $this->domains && \is_array($this->domains)) {
+ $n = 0;
+ foreach ($this->domains as $item) {
+ $res['Domains'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return content
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Domains'])) {
+ if (!empty($map['Domains'])) {
+ $model->domains = [];
+ $n = 0;
+ foreach ($map['Domains'] as $item) {
+ $model->domains[$n++] = null !== $item ? domains::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content/domains.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content/domains.php
new file mode 100644
index 000000000..a4a925b1a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content/domains.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return domains
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosRequest.php
new file mode 100644
index 000000000..b9dd499b6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosRequest.php
@@ -0,0 +1,59 @@
+ 'LiveOpenapiReserve',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveOpenapiReserve) {
+ $res['LiveOpenapiReserve'] = $this->liveOpenapiReserve;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListLiveRealtimeLogDeliveryInfosRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveOpenapiReserve'])) {
+ $model->liveOpenapiReserve = $map['LiveOpenapiReserve'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponse.php
new file mode 100644
index 000000000..8b6ed15b8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponse.php
@@ -0,0 +1,74 @@
+ '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 ListLiveRealtimeLogDeliveryInfosResponse
+ */
+ 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 = ListLiveRealtimeLogDeliveryInfosResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody.php
new file mode 100644
index 000000000..0f7cca225
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody.php
@@ -0,0 +1,60 @@
+ 'Content',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = null !== $this->content ? $this->content->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListLiveRealtimeLogDeliveryInfosResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ $model->content = content::fromMap($map['Content']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content.php
new file mode 100644
index 000000000..3ed26d740
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content.php
@@ -0,0 +1,60 @@
+ 'RealtimeLogDeliveryInfos',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->realtimeLogDeliveryInfos) {
+ $res['RealtimeLogDeliveryInfos'] = [];
+ if (null !== $this->realtimeLogDeliveryInfos && \is_array($this->realtimeLogDeliveryInfos)) {
+ $n = 0;
+ foreach ($this->realtimeLogDeliveryInfos as $item) {
+ $res['RealtimeLogDeliveryInfos'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return content
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RealtimeLogDeliveryInfos'])) {
+ if (!empty($map['RealtimeLogDeliveryInfos'])) {
+ $model->realtimeLogDeliveryInfos = [];
+ $n = 0;
+ foreach ($map['RealtimeLogDeliveryInfos'] as $item) {
+ $model->realtimeLogDeliveryInfos[$n++] = null !== $item ? realtimeLogDeliveryInfos::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content/realtimeLogDeliveryInfos.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content/realtimeLogDeliveryInfos.php
new file mode 100644
index 000000000..25ea742ab
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content/realtimeLogDeliveryInfos.php
@@ -0,0 +1,71 @@
+ 'Logstore',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return realtimeLogDeliveryInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryRequest.php
new file mode 100644
index 000000000..5a3c21a34
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryRequest.php
@@ -0,0 +1,59 @@
+ 'LiveOpenapiReserve',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->liveOpenapiReserve) {
+ $res['LiveOpenapiReserve'] = $this->liveOpenapiReserve;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListLiveRealtimeLogDeliveryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LiveOpenapiReserve'])) {
+ $model->liveOpenapiReserve = $map['LiveOpenapiReserve'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponse.php
new file mode 100644
index 000000000..0b511a2e4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponse.php
@@ -0,0 +1,74 @@
+ '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 ListLiveRealtimeLogDeliveryResponse
+ */
+ 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 = ListLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody.php
new file mode 100644
index 000000000..0460a8ad1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody.php
@@ -0,0 +1,60 @@
+ 'Content',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = null !== $this->content ? $this->content->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListLiveRealtimeLogDeliveryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ $model->content = content::fromMap($map['Content']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content.php
new file mode 100644
index 000000000..bec948e77
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content.php
@@ -0,0 +1,60 @@
+ 'RealtimeLogDeliveryInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->realtimeLogDeliveryInfo) {
+ $res['RealtimeLogDeliveryInfo'] = [];
+ if (null !== $this->realtimeLogDeliveryInfo && \is_array($this->realtimeLogDeliveryInfo)) {
+ $n = 0;
+ foreach ($this->realtimeLogDeliveryInfo as $item) {
+ $res['RealtimeLogDeliveryInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return content
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RealtimeLogDeliveryInfo'])) {
+ if (!empty($map['RealtimeLogDeliveryInfo'])) {
+ $model->realtimeLogDeliveryInfo = [];
+ $n = 0;
+ foreach ($map['RealtimeLogDeliveryInfo'] as $item) {
+ $model->realtimeLogDeliveryInfo[$n++] = null !== $item ? realtimeLogDeliveryInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content/realtimeLogDeliveryInfo.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content/realtimeLogDeliveryInfo.php
new file mode 100644
index 000000000..e5c58f021
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content/realtimeLogDeliveryInfo.php
@@ -0,0 +1,107 @@
+ 'DmId',
+ 'domainName' => 'DomainName',
+ 'logstore' => 'Logstore',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->dmId) {
+ $res['DmId'] = $this->dmId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return realtimeLogDeliveryInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DmId'])) {
+ $model->dmId = $map['DmId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppRequest.php
new file mode 100644
index 000000000..14d1e2f6d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppRequest.php
@@ -0,0 +1,71 @@
+ 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'sortType' => 'SortType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->sortType) {
+ $res['SortType'] = $this->sortType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageAppRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SortType'])) {
+ $model->sortType = $map['SortType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponse.php
new file mode 100644
index 000000000..d961b5040
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponse.php
@@ -0,0 +1,74 @@
+ '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 ListMessageAppResponse
+ */
+ 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 = ListMessageAppResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody.php
new file mode 100644
index 000000000..ce4d64adf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageAppResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result.php
new file mode 100644
index 000000000..49fac0488
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result.php
@@ -0,0 +1,84 @@
+ 'AppList',
+ 'hasMore' => 'HasMore',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appList) {
+ $res['AppList'] = [];
+ if (null !== $this->appList && \is_array($this->appList)) {
+ $n = 0;
+ foreach ($this->appList as $item) {
+ $res['AppList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->hasMore) {
+ $res['HasMore'] = $this->hasMore;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppList'])) {
+ if (!empty($map['AppList'])) {
+ $model->appList = [];
+ $n = 0;
+ foreach ($map['AppList'] as $item) {
+ $model->appList[$n++] = null !== $item ? appList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['HasMore'])) {
+ $model->hasMore = $map['HasMore'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result/appList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result/appList.php
new file mode 100644
index 000000000..b97a11a6a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result/appList.php
@@ -0,0 +1,107 @@
+ 'AppConfig',
+ 'appId' => 'AppId',
+ 'appName' => 'AppName',
+ 'createTime' => 'CreateTime',
+ 'extension' => 'Extension',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appConfig) {
+ $res['AppConfig'] = $this->appConfig;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return appList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppConfig'])) {
+ $model->appConfig = $map['AppConfig'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupRequest.php
new file mode 100644
index 000000000..fecd1d334
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'sortType' => 'SortType',
+ 'userId' => 'UserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->sortType) {
+ $res['SortType'] = $this->sortType;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SortType'])) {
+ $model->sortType = $map['SortType'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponse.php
new file mode 100644
index 000000000..d5be9d4ea
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 ListMessageGroupResponse
+ */
+ 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 = ListMessageGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody.php
new file mode 100644
index 000000000..46e51ae96
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result.php
new file mode 100644
index 000000000..ab990eef4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result.php
@@ -0,0 +1,84 @@
+ 'GroupList',
+ 'hasMore' => 'HasMore',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->groupList) {
+ $res['GroupList'] = [];
+ if (null !== $this->groupList && \is_array($this->groupList)) {
+ $n = 0;
+ foreach ($this->groupList as $item) {
+ $res['GroupList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->hasMore) {
+ $res['HasMore'] = $this->hasMore;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['GroupList'])) {
+ if (!empty($map['GroupList'])) {
+ $model->groupList = [];
+ $n = 0;
+ foreach ($map['GroupList'] as $item) {
+ $model->groupList[$n++] = null !== $item ? groupList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['HasMore'])) {
+ $model->hasMore = $map['HasMore'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result/groupList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result/groupList.php
new file mode 100644
index 000000000..acd5ff8cb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result/groupList.php
@@ -0,0 +1,107 @@
+ 'AppId',
+ 'createTime' => 'CreateTime',
+ 'creatorId' => 'CreatorId',
+ 'extension' => 'Extension',
+ 'groupId' => 'GroupId',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->creatorId) {
+ $res['CreatorId'] = $this->creatorId;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return groupList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['CreatorId'])) {
+ $model->creatorId = $map['CreatorId'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdRequest.php
new file mode 100644
index 000000000..0236404b0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdRequest.php
@@ -0,0 +1,73 @@
+ 'AppId',
+ 'groupId' => 'GroupId',
+ 'userIdList' => 'UserIdList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->userIdList) {
+ $res['UserIdList'] = $this->userIdList;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageGroupUserByIdRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['UserIdList'])) {
+ if (!empty($map['UserIdList'])) {
+ $model->userIdList = $map['UserIdList'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponse.php
new file mode 100644
index 000000000..9b95f55d7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponse.php
@@ -0,0 +1,74 @@
+ '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 ListMessageGroupUserByIdResponse
+ */
+ 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 = ListMessageGroupUserByIdResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody.php
new file mode 100644
index 000000000..d9958d100
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageGroupUserByIdResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result.php
new file mode 100644
index 000000000..605477da7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result.php
@@ -0,0 +1,84 @@
+ 'HasMore',
+ 'total' => 'Total',
+ 'userList' => 'UserList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->hasMore) {
+ $res['HasMore'] = $this->hasMore;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+ if (null !== $this->userList) {
+ $res['UserList'] = [];
+ if (null !== $this->userList && \is_array($this->userList)) {
+ $n = 0;
+ foreach ($this->userList as $item) {
+ $res['UserList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HasMore'])) {
+ $model->hasMore = $map['HasMore'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+ if (isset($map['UserList'])) {
+ if (!empty($map['UserList'])) {
+ $model->userList = [];
+ $n = 0;
+ foreach ($map['UserList'] as $item) {
+ $model->userList[$n++] = null !== $item ? userList::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result/userList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result/userList.php
new file mode 100644
index 000000000..a7cdd4994
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result/userList.php
@@ -0,0 +1,109 @@
+ 'IsMute',
+ 'muteBy' => 'MuteBy',
+ 'userAvatar' => 'UserAvatar',
+ 'userExtension' => 'UserExtension',
+ 'userId' => 'UserId',
+ 'userNick' => 'UserNick',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->isMute) {
+ $res['IsMute'] = $this->isMute;
+ }
+ if (null !== $this->muteBy) {
+ $res['MuteBy'] = $this->muteBy;
+ }
+ if (null !== $this->userAvatar) {
+ $res['UserAvatar'] = $this->userAvatar;
+ }
+ if (null !== $this->userExtension) {
+ $res['UserExtension'] = $this->userExtension;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+ if (null !== $this->userNick) {
+ $res['UserNick'] = $this->userNick;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return userList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['IsMute'])) {
+ $model->isMute = $map['IsMute'];
+ }
+ if (isset($map['MuteBy'])) {
+ if (!empty($map['MuteBy'])) {
+ $model->muteBy = $map['MuteBy'];
+ }
+ }
+ if (isset($map['UserAvatar'])) {
+ $model->userAvatar = $map['UserAvatar'];
+ }
+ if (isset($map['UserExtension'])) {
+ $model->userExtension = $map['UserExtension'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+ if (isset($map['UserNick'])) {
+ $model->userNick = $map['UserNick'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdShrinkRequest.php
new file mode 100644
index 000000000..6ad2011b6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdShrinkRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'groupId' => 'GroupId',
+ 'userIdListShrink' => 'UserIdList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->userIdListShrink) {
+ $res['UserIdList'] = $this->userIdListShrink;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageGroupUserByIdShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['UserIdList'])) {
+ $model->userIdListShrink = $map['UserIdList'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserRequest.php
new file mode 100644
index 000000000..de11ac3b4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'groupId' => 'GroupId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'sortType' => 'SortType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->sortType) {
+ $res['SortType'] = $this->sortType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageGroupUserRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SortType'])) {
+ $model->sortType = $map['SortType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponse.php
new file mode 100644
index 000000000..f478325f6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponse.php
@@ -0,0 +1,74 @@
+ '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 ListMessageGroupUserResponse
+ */
+ 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 = ListMessageGroupUserResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody.php
new file mode 100644
index 000000000..c36eb4734
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageGroupUserResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result.php
new file mode 100644
index 000000000..75dcfb300
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result.php
@@ -0,0 +1,84 @@
+ 'HasMore',
+ 'total' => 'Total',
+ 'userList' => 'UserList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->hasMore) {
+ $res['HasMore'] = $this->hasMore;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+ if (null !== $this->userList) {
+ $res['UserList'] = [];
+ if (null !== $this->userList && \is_array($this->userList)) {
+ $n = 0;
+ foreach ($this->userList as $item) {
+ $res['UserList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HasMore'])) {
+ $model->hasMore = $map['HasMore'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+ if (isset($map['UserList'])) {
+ if (!empty($map['UserList'])) {
+ $model->userList = [];
+ $n = 0;
+ foreach ($map['UserList'] as $item) {
+ $model->userList[$n++] = null !== $item ? userList::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result/userList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result/userList.php
new file mode 100644
index 000000000..9ccdd70dd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result/userList.php
@@ -0,0 +1,59 @@
+ 'JoinTime',
+ 'userId' => 'UserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->joinTime) {
+ $res['JoinTime'] = $this->joinTime;
+ }
+ if (null !== $this->userId) {
+ $res['UserId'] = $this->userId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return userList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['JoinTime'])) {
+ $model->joinTime = $map['JoinTime'];
+ }
+ if (isset($map['UserId'])) {
+ $model->userId = $map['UserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageRequest.php
new file mode 100644
index 000000000..1be96895c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageRequest.php
@@ -0,0 +1,107 @@
+ 'AppId',
+ 'groupId' => 'GroupId',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'sortType' => 'SortType',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->sortType) {
+ $res['SortType'] = $this->sortType;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SortType'])) {
+ $model->sortType = $map['SortType'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponse.php
new file mode 100644
index 000000000..e0cd8b6e6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponse.php
@@ -0,0 +1,74 @@
+ '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 ListMessageResponse
+ */
+ 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 = ListMessageResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody.php
new file mode 100644
index 000000000..eb0ecf9cb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListMessageResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result.php
new file mode 100644
index 000000000..b94b78077
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result.php
@@ -0,0 +1,72 @@
+ 'HasMore',
+ 'messageList' => 'MessageList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->hasMore) {
+ $res['HasMore'] = $this->hasMore;
+ }
+ if (null !== $this->messageList) {
+ $res['MessageList'] = [];
+ if (null !== $this->messageList && \is_array($this->messageList)) {
+ $n = 0;
+ foreach ($this->messageList as $item) {
+ $res['MessageList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HasMore'])) {
+ $model->hasMore = $map['HasMore'];
+ }
+ if (isset($map['MessageList'])) {
+ if (!empty($map['MessageList'])) {
+ $model->messageList = [];
+ $n = 0;
+ foreach ($map['MessageList'] as $item) {
+ $model->messageList[$n++] = null !== $item ? messageList::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result/messageList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result/messageList.php
new file mode 100644
index 000000000..b88688923
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result/messageList.php
@@ -0,0 +1,95 @@
+ 'Data',
+ 'groupId' => 'GroupId',
+ 'messageId' => 'MessageId',
+ 'senderId' => 'SenderId',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->messageId) {
+ $res['MessageId'] = $this->messageId;
+ }
+ if (null !== $this->senderId) {
+ $res['SenderId'] = $this->senderId;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return messageList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['MessageId'])) {
+ $model->messageId = $map['MessageId'];
+ }
+ if (isset($map['SenderId'])) {
+ $model->senderId = $map['SenderId'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsRequest.php
new file mode 100644
index 000000000..b905544f6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'programId' => 'ProgramId',
+ 'programItemIds' => 'ProgramItemIds',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->programItemIds) {
+ $res['ProgramItemIds'] = $this->programItemIds;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListPlaylistItemsRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['ProgramItemIds'])) {
+ $model->programItemIds = $map['ProgramItemIds'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponse.php
new file mode 100644
index 000000000..532db2b4f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponse.php
@@ -0,0 +1,74 @@
+ '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 ListPlaylistItemsResponse
+ */
+ 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 = ListPlaylistItemsResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody.php
new file mode 100644
index 000000000..e49873776
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody.php
@@ -0,0 +1,84 @@
+ 'ProgramItems',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->programItems) {
+ $res['ProgramItems'] = [];
+ if (null !== $this->programItems && \is_array($this->programItems)) {
+ $n = 0;
+ foreach ($this->programItems as $item) {
+ $res['ProgramItems'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListPlaylistItemsResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ProgramItems'])) {
+ if (!empty($map['ProgramItems'])) {
+ $model->programItems = [];
+ $n = 0;
+ foreach ($map['ProgramItems'] as $item) {
+ $model->programItems[$n++] = null !== $item ? programItems::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody/programItems.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody/programItems.php
new file mode 100644
index 000000000..8c5cfc505
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody/programItems.php
@@ -0,0 +1,107 @@
+ 'Index',
+ 'programId' => 'ProgramId',
+ 'programItemId' => 'ProgramItemId',
+ 'programItemName' => 'ProgramItemName',
+ 'resourceType' => 'ResourceType',
+ 'resourceValue' => 'ResourceValue',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->index) {
+ $res['Index'] = $this->index;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->programItemId) {
+ $res['ProgramItemId'] = $this->programItemId;
+ }
+ if (null !== $this->programItemName) {
+ $res['ProgramItemName'] = $this->programItemName;
+ }
+ if (null !== $this->resourceType) {
+ $res['ResourceType'] = $this->resourceType;
+ }
+ if (null !== $this->resourceValue) {
+ $res['ResourceValue'] = $this->resourceValue;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return programItems
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Index'])) {
+ $model->index = $map['Index'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['ProgramItemId'])) {
+ $model->programItemId = $map['ProgramItemId'];
+ }
+ if (isset($map['ProgramItemName'])) {
+ $model->programItemName = $map['ProgramItemName'];
+ }
+ if (isset($map['ResourceType'])) {
+ $model->resourceType = $map['ResourceType'];
+ }
+ if (isset($map['ResourceValue'])) {
+ $model->resourceValue = $map['ResourceValue'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistRequest.php
new file mode 100644
index 000000000..8dc83202b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'page' => 'Page',
+ 'pageSize' => 'PageSize',
+ 'programId' => 'ProgramId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->page) {
+ $res['Page'] = $this->page;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListPlaylistRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Page'])) {
+ $model->page = $map['Page'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponse.php
new file mode 100644
index 000000000..f53e3b752
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponse.php
@@ -0,0 +1,74 @@
+ '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 ListPlaylistResponse
+ */
+ 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 = ListPlaylistResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody.php
new file mode 100644
index 000000000..43c6887fd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody.php
@@ -0,0 +1,84 @@
+ 'ProgramList',
+ 'requestId' => 'RequestId',
+ 'total' => 'Total',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->programList) {
+ $res['ProgramList'] = [];
+ if (null !== $this->programList && \is_array($this->programList)) {
+ $n = 0;
+ foreach ($this->programList as $item) {
+ $res['ProgramList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->total) {
+ $res['Total'] = $this->total;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ListPlaylistResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ProgramList'])) {
+ if (!empty($map['ProgramList'])) {
+ $model->programList = [];
+ $n = 0;
+ foreach ($map['ProgramList'] as $item) {
+ $model->programList[$n++] = null !== $item ? programList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Total'])) {
+ $model->total = $map['Total'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody/programList.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody/programList.php
new file mode 100644
index 000000000..c755afe40
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody/programList.php
@@ -0,0 +1,107 @@
+ 'CasterId',
+ 'domainName' => 'DomainName',
+ 'programId' => 'ProgramId',
+ 'programName' => 'ProgramName',
+ 'repeatNumber' => 'RepeatNumber',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->programName) {
+ $res['ProgramName'] = $this->programName;
+ }
+ if (null !== $this->repeatNumber) {
+ $res['RepeatNumber'] = $this->repeatNumber;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return programList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['ProgramName'])) {
+ $model->programName = $map['ProgramName'];
+ }
+ if (isset($map['RepeatNumber'])) {
+ $model->repeatNumber = $map['RepeatNumber'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentRequest.php
new file mode 100644
index 000000000..0004e6b1c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentRequest.php
@@ -0,0 +1,155 @@
+ 'CaptionLayerContent',
+ 'casterId' => 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'componentLayer' => 'ComponentLayer',
+ 'componentName' => 'ComponentName',
+ 'componentType' => 'ComponentType',
+ 'effect' => 'Effect',
+ 'imageLayerContent' => 'ImageLayerContent',
+ 'ownerId' => 'OwnerId',
+ 'textLayerContent' => 'TextLayerContent',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->captionLayerContent) {
+ $res['CaptionLayerContent'] = $this->captionLayerContent;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->componentLayer) {
+ $res['ComponentLayer'] = $this->componentLayer;
+ }
+ if (null !== $this->componentName) {
+ $res['ComponentName'] = $this->componentName;
+ }
+ if (null !== $this->componentType) {
+ $res['ComponentType'] = $this->componentType;
+ }
+ if (null !== $this->effect) {
+ $res['Effect'] = $this->effect;
+ }
+ if (null !== $this->imageLayerContent) {
+ $res['ImageLayerContent'] = $this->imageLayerContent;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->textLayerContent) {
+ $res['TextLayerContent'] = $this->textLayerContent;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterComponentRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CaptionLayerContent'])) {
+ $model->captionLayerContent = $map['CaptionLayerContent'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ if (isset($map['ComponentLayer'])) {
+ $model->componentLayer = $map['ComponentLayer'];
+ }
+ if (isset($map['ComponentName'])) {
+ $model->componentName = $map['ComponentName'];
+ }
+ if (isset($map['ComponentType'])) {
+ $model->componentType = $map['ComponentType'];
+ }
+ if (isset($map['Effect'])) {
+ $model->effect = $map['Effect'];
+ }
+ if (isset($map['ImageLayerContent'])) {
+ $model->imageLayerContent = $map['ImageLayerContent'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['TextLayerContent'])) {
+ $model->textLayerContent = $map['TextLayerContent'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponse.php
new file mode 100644
index 000000000..f7b669292
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyCasterComponentResponse
+ */
+ 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 = ModifyCasterComponentResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponseBody.php
new file mode 100644
index 000000000..f8d92ef80
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponseBody.php
@@ -0,0 +1,59 @@
+ 'ComponentId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterComponentResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeRequest.php
new file mode 100644
index 000000000..6f39e98f2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeRequest.php
@@ -0,0 +1,145 @@
+ 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'endTime' => 'EndTime',
+ 'episodeId' => 'EpisodeId',
+ 'episodeName' => 'EpisodeName',
+ 'ownerId' => 'OwnerId',
+ 'resourceId' => 'ResourceId',
+ 'startTime' => 'StartTime',
+ 'switchType' => 'SwitchType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->episodeName) {
+ $res['EpisodeName'] = $this->episodeName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->switchType) {
+ $res['SwitchType'] = $this->switchType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterEpisodeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ if (!empty($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['EpisodeName'])) {
+ $model->episodeName = $map['EpisodeName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['SwitchType'])) {
+ $model->switchType = $map['SwitchType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponse.php
new file mode 100644
index 000000000..d2872968d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyCasterEpisodeResponse
+ */
+ 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 = ModifyCasterEpisodeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponseBody.php
new file mode 100644
index 000000000..dac62b50b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponseBody.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'episodeId' => 'EpisodeId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterEpisodeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest.php
new file mode 100644
index 000000000..96269bcd6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest.php
@@ -0,0 +1,149 @@
+ 'AudioLayer',
+ 'blendList' => 'BlendList',
+ 'casterId' => 'CasterId',
+ 'layoutId' => 'LayoutId',
+ 'mixList' => 'MixList',
+ 'ownerId' => 'OwnerId',
+ 'videoLayer' => 'VideoLayer',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioLayer) {
+ $res['AudioLayer'] = [];
+ if (null !== $this->audioLayer && \is_array($this->audioLayer)) {
+ $n = 0;
+ foreach ($this->audioLayer as $item) {
+ $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->blendList) {
+ $res['BlendList'] = $this->blendList;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->mixList) {
+ $res['MixList'] = $this->mixList;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->videoLayer) {
+ $res['VideoLayer'] = [];
+ if (null !== $this->videoLayer && \is_array($this->videoLayer)) {
+ $n = 0;
+ foreach ($this->videoLayer as $item) {
+ $res['VideoLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterLayoutRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioLayer'])) {
+ if (!empty($map['AudioLayer'])) {
+ $model->audioLayer = [];
+ $n = 0;
+ foreach ($map['AudioLayer'] as $item) {
+ $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['BlendList'])) {
+ if (!empty($map['BlendList'])) {
+ $model->blendList = $map['BlendList'];
+ }
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['MixList'])) {
+ if (!empty($map['MixList'])) {
+ $model->mixList = $map['MixList'];
+ }
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['VideoLayer'])) {
+ if (!empty($map['VideoLayer'])) {
+ $model->videoLayer = [];
+ $n = 0;
+ foreach ($map['VideoLayer'] as $item) {
+ $model->videoLayer[$n++] = null !== $item ? videoLayer::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/audioLayer.php
new file mode 100644
index 000000000..8d8056c2a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/audioLayer.php
@@ -0,0 +1,71 @@
+ 'FixedDelayDuration',
+ 'validChannel' => 'ValidChannel',
+ 'volumeRate' => 'VolumeRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->validChannel) {
+ $res['ValidChannel'] = $this->validChannel;
+ }
+ if (null !== $this->volumeRate) {
+ $res['VolumeRate'] = $this->volumeRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['ValidChannel'])) {
+ $model->validChannel = $map['ValidChannel'];
+ }
+ if (isset($map['VolumeRate'])) {
+ $model->volumeRate = $map['VolumeRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/videoLayer.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/videoLayer.php
new file mode 100644
index 000000000..c881f3015
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/videoLayer.php
@@ -0,0 +1,109 @@
+ 'FillMode',
+ 'fixedDelayDuration' => 'FixedDelayDuration',
+ 'heightNormalized' => 'HeightNormalized',
+ 'positionNormalized' => 'PositionNormalized',
+ 'positionRefer' => 'PositionRefer',
+ 'widthNormalized' => 'WidthNormalized',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fillMode) {
+ $res['FillMode'] = $this->fillMode;
+ }
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->heightNormalized) {
+ $res['HeightNormalized'] = $this->heightNormalized;
+ }
+ if (null !== $this->positionNormalized) {
+ $res['PositionNormalized'] = $this->positionNormalized;
+ }
+ if (null !== $this->positionRefer) {
+ $res['PositionRefer'] = $this->positionRefer;
+ }
+ if (null !== $this->widthNormalized) {
+ $res['WidthNormalized'] = $this->widthNormalized;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return videoLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FillMode'])) {
+ $model->fillMode = $map['FillMode'];
+ }
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['HeightNormalized'])) {
+ $model->heightNormalized = $map['HeightNormalized'];
+ }
+ if (isset($map['PositionNormalized'])) {
+ if (!empty($map['PositionNormalized'])) {
+ $model->positionNormalized = $map['PositionNormalized'];
+ }
+ }
+ if (isset($map['PositionRefer'])) {
+ $model->positionRefer = $map['PositionRefer'];
+ }
+ if (isset($map['WidthNormalized'])) {
+ $model->widthNormalized = $map['WidthNormalized'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponse.php
new file mode 100644
index 000000000..1e295639e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyCasterLayoutResponse
+ */
+ 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 = ModifyCasterLayoutResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponseBody.php
new file mode 100644
index 000000000..df3e405ec
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponseBody.php
@@ -0,0 +1,59 @@
+ 'LayoutId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterLayoutResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest.php
new file mode 100644
index 000000000..07482b517
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest.php
@@ -0,0 +1,84 @@
+ 'CasterId',
+ 'episode' => 'Episode',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->episode) {
+ $res['Episode'] = [];
+ if (null !== $this->episode && \is_array($this->episode)) {
+ $n = 0;
+ foreach ($this->episode as $item) {
+ $res['Episode'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterProgramRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['Episode'])) {
+ if (!empty($map['Episode'])) {
+ $model->episode = [];
+ $n = 0;
+ foreach ($map['Episode'] as $item) {
+ $model->episode[$n++] = null !== $item ? episode::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest/episode.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest/episode.php
new file mode 100644
index 000000000..a06a0f51f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest/episode.php
@@ -0,0 +1,133 @@
+ 'ComponentId',
+ 'endTime' => 'EndTime',
+ 'episodeId' => 'EpisodeId',
+ 'episodeName' => 'EpisodeName',
+ 'episodeType' => 'EpisodeType',
+ 'resourceId' => 'ResourceId',
+ 'startTime' => 'StartTime',
+ 'switchType' => 'SwitchType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->episodeId) {
+ $res['EpisodeId'] = $this->episodeId;
+ }
+ if (null !== $this->episodeName) {
+ $res['EpisodeName'] = $this->episodeName;
+ }
+ if (null !== $this->episodeType) {
+ $res['EpisodeType'] = $this->episodeType;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->switchType) {
+ $res['SwitchType'] = $this->switchType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return episode
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ComponentId'])) {
+ if (!empty($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['EpisodeId'])) {
+ $model->episodeId = $map['EpisodeId'];
+ }
+ if (isset($map['EpisodeName'])) {
+ $model->episodeName = $map['EpisodeName'];
+ }
+ if (isset($map['EpisodeType'])) {
+ $model->episodeType = $map['EpisodeType'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['SwitchType'])) {
+ $model->switchType = $map['SwitchType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponse.php
new file mode 100644
index 000000000..86087cddc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyCasterProgramResponse
+ */
+ 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 = ModifyCasterProgramResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponseBody.php
new file mode 100644
index 000000000..6c2a35449
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponseBody.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterProgramResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceRequest.php
new file mode 100644
index 000000000..ed271336e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceRequest.php
@@ -0,0 +1,167 @@
+ 'BeginOffset',
+ 'casterId' => 'CasterId',
+ 'endOffset' => 'EndOffset',
+ 'liveStreamUrl' => 'LiveStreamUrl',
+ 'materialId' => 'MaterialId',
+ 'ownerId' => 'OwnerId',
+ 'ptsCallbackInterval' => 'PtsCallbackInterval',
+ 'repeatNum' => 'RepeatNum',
+ 'resourceId' => 'ResourceId',
+ 'resourceName' => 'ResourceName',
+ 'vodUrl' => 'VodUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->beginOffset) {
+ $res['BeginOffset'] = $this->beginOffset;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->endOffset) {
+ $res['EndOffset'] = $this->endOffset;
+ }
+ if (null !== $this->liveStreamUrl) {
+ $res['LiveStreamUrl'] = $this->liveStreamUrl;
+ }
+ if (null !== $this->materialId) {
+ $res['MaterialId'] = $this->materialId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->ptsCallbackInterval) {
+ $res['PtsCallbackInterval'] = $this->ptsCallbackInterval;
+ }
+ if (null !== $this->repeatNum) {
+ $res['RepeatNum'] = $this->repeatNum;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceName) {
+ $res['ResourceName'] = $this->resourceName;
+ }
+ if (null !== $this->vodUrl) {
+ $res['VodUrl'] = $this->vodUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterVideoResourceRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BeginOffset'])) {
+ $model->beginOffset = $map['BeginOffset'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EndOffset'])) {
+ $model->endOffset = $map['EndOffset'];
+ }
+ if (isset($map['LiveStreamUrl'])) {
+ $model->liveStreamUrl = $map['LiveStreamUrl'];
+ }
+ if (isset($map['MaterialId'])) {
+ $model->materialId = $map['MaterialId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PtsCallbackInterval'])) {
+ $model->ptsCallbackInterval = $map['PtsCallbackInterval'];
+ }
+ if (isset($map['RepeatNum'])) {
+ $model->repeatNum = $map['RepeatNum'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['ResourceName'])) {
+ $model->resourceName = $map['ResourceName'];
+ }
+ if (isset($map['VodUrl'])) {
+ $model->vodUrl = $map['VodUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponse.php
new file mode 100644
index 000000000..3f4654d29
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyCasterVideoResourceResponse
+ */
+ 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 = ModifyCasterVideoResourceResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponseBody.php
new file mode 100644
index 000000000..f7bbf35ee
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponseBody.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ 'resourceId' => 'ResourceId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyCasterVideoResourceResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyRequest.php
new file mode 100644
index 000000000..811471347
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'property' => 'Property',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->property) {
+ $res['Property'] = $this->property;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyLiveDomainSchdmByPropertyRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Property'])) {
+ $model->property = $map['Property'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponse.php
new file mode 100644
index 000000000..953c9c489
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyLiveDomainSchdmByPropertyResponse
+ */
+ 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 = ModifyLiveDomainSchdmByPropertyResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponseBody.php
new file mode 100644
index 000000000..f9b017fe1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyLiveDomainSchdmByPropertyResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryRequest.php
new file mode 100644
index 000000000..c11394a4e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'logstore' => 'Logstore',
+ 'ownerId' => 'OwnerId',
+ 'project' => 'Project',
+ 'region' => 'Region',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->logstore) {
+ $res['Logstore'] = $this->logstore;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->project) {
+ $res['Project'] = $this->project;
+ }
+ if (null !== $this->region) {
+ $res['Region'] = $this->region;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyLiveRealtimeLogDeliveryRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Logstore'])) {
+ $model->logstore = $map['Logstore'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Project'])) {
+ $model->project = $map['Project'];
+ }
+ if (isset($map['Region'])) {
+ $model->region = $map['Region'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponse.php
new file mode 100644
index 000000000..588c51998
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyLiveRealtimeLogDeliveryResponse
+ */
+ 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 = ModifyLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponseBody.php
new file mode 100644
index 000000000..3d17a62a7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyLiveRealtimeLogDeliveryResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListRequest.php
new file mode 100644
index 000000000..583a993d3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListRequest.php
@@ -0,0 +1,119 @@
+ 'CasterId',
+ 'highPriorityShowId' => 'HighPriorityShowId',
+ 'highPriorityShowStartTime' => 'HighPriorityShowStartTime',
+ 'ownerId' => 'OwnerId',
+ 'repeatTimes' => 'RepeatTimes',
+ 'showId' => 'ShowId',
+ 'spot' => 'Spot',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->highPriorityShowId) {
+ $res['HighPriorityShowId'] = $this->highPriorityShowId;
+ }
+ if (null !== $this->highPriorityShowStartTime) {
+ $res['HighPriorityShowStartTime'] = $this->highPriorityShowStartTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->repeatTimes) {
+ $res['RepeatTimes'] = $this->repeatTimes;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+ if (null !== $this->spot) {
+ $res['Spot'] = $this->spot;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyShowListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['HighPriorityShowId'])) {
+ $model->highPriorityShowId = $map['HighPriorityShowId'];
+ }
+ if (isset($map['HighPriorityShowStartTime'])) {
+ $model->highPriorityShowStartTime = $map['HighPriorityShowStartTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RepeatTimes'])) {
+ $model->repeatTimes = $map['RepeatTimes'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+ if (isset($map['Spot'])) {
+ $model->spot = $map['Spot'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponse.php
new file mode 100644
index 000000000..3241fd997
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyShowListResponse
+ */
+ 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 = ModifyShowListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponseBody.php
new file mode 100644
index 000000000..9a45d7394
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyShowListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutRequest.php
new file mode 100644
index 000000000..72a547240
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutRequest.php
@@ -0,0 +1,143 @@
+ 'BgImageConfig',
+ 'casterId' => 'CasterId',
+ 'commonConfig' => 'CommonConfig',
+ 'layerOrderConfigList' => 'LayerOrderConfigList',
+ 'layoutId' => 'LayoutId',
+ 'layoutName' => 'LayoutName',
+ 'mediaInputConfigList' => 'MediaInputConfigList',
+ 'ownerId' => 'OwnerId',
+ 'screenInputConfigList' => 'ScreenInputConfigList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->bgImageConfig) {
+ $res['BgImageConfig'] = $this->bgImageConfig;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->commonConfig) {
+ $res['CommonConfig'] = $this->commonConfig;
+ }
+ if (null !== $this->layerOrderConfigList) {
+ $res['LayerOrderConfigList'] = $this->layerOrderConfigList;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->layoutName) {
+ $res['LayoutName'] = $this->layoutName;
+ }
+ if (null !== $this->mediaInputConfigList) {
+ $res['MediaInputConfigList'] = $this->mediaInputConfigList;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->screenInputConfigList) {
+ $res['ScreenInputConfigList'] = $this->screenInputConfigList;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyStudioLayoutRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['BgImageConfig'])) {
+ $model->bgImageConfig = $map['BgImageConfig'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['CommonConfig'])) {
+ $model->commonConfig = $map['CommonConfig'];
+ }
+ if (isset($map['LayerOrderConfigList'])) {
+ $model->layerOrderConfigList = $map['LayerOrderConfigList'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['LayoutName'])) {
+ $model->layoutName = $map['LayoutName'];
+ }
+ if (isset($map['MediaInputConfigList'])) {
+ $model->mediaInputConfigList = $map['MediaInputConfigList'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ScreenInputConfigList'])) {
+ $model->screenInputConfigList = $map['ScreenInputConfigList'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponse.php
new file mode 100644
index 000000000..9a4b4f6d8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponse.php
@@ -0,0 +1,74 @@
+ '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 ModifyStudioLayoutResponse
+ */
+ 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 = ModifyStudioLayoutResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponseBody.php
new file mode 100644
index 000000000..6dc666348
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ModifyStudioLayoutResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftRequest.php b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftRequest.php
new file mode 100644
index 000000000..df4c8cf29
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'duration' => 'Duration',
+ 'ignoreTranscode' => 'IgnoreTranscode',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ 'vision' => 'Vision',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->duration) {
+ $res['Duration'] = $this->duration;
+ }
+ if (null !== $this->ignoreTranscode) {
+ $res['IgnoreTranscode'] = $this->ignoreTranscode;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->vision) {
+ $res['Vision'] = $this->vision;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return OpenLiveShiftRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Duration'])) {
+ $model->duration = $map['Duration'];
+ }
+ if (isset($map['IgnoreTranscode'])) {
+ $model->ignoreTranscode = $map['IgnoreTranscode'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Vision'])) {
+ $model->vision = $map['Vision'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponse.php b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponse.php
new file mode 100644
index 000000000..c87f221f6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponse.php
@@ -0,0 +1,74 @@
+ '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 OpenLiveShiftResponse
+ */
+ 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 = OpenLiveShiftResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponseBody.php
new file mode 100644
index 000000000..b898820d8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return OpenLiveShiftResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowRequest.php b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowRequest.php
new file mode 100644
index 000000000..9e0ccd169
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'showId' => 'ShowId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return PlayChoosenShowRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponse.php b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponse.php
new file mode 100644
index 000000000..a32d4e576
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponse.php
@@ -0,0 +1,74 @@
+ '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 PlayChoosenShowResponse
+ */
+ 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 = PlayChoosenShowResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponseBody.php
new file mode 100644
index 000000000..11d8285ce
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'showId' => 'ShowId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return PlayChoosenShowResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionRequest.php b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionRequest.php
new file mode 100644
index 000000000..05f0851b9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'functionName' => 'FunctionName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->functionName) {
+ $res['FunctionName'] = $this->functionName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return PublishLiveStagingConfigToProductionRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['FunctionName'])) {
+ $model->functionName = $map['FunctionName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponse.php b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponse.php
new file mode 100644
index 000000000..b8c90ab20
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponse.php
@@ -0,0 +1,74 @@
+ '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 PublishLiveStagingConfigToProductionResponse
+ */
+ 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 = PublishLiveStagingConfigToProductionResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponseBody.php
new file mode 100644
index 000000000..23a990d6e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return PublishLiveStagingConfigToProductionResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppRequest.php
new file mode 100644
index 000000000..1814f64a7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'appName' => 'AppName',
+ 'pageNum' => 'PageNum',
+ 'pageSize' => 'PageSize',
+ 'sortType' => 'SortType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->pageNum) {
+ $res['PageNum'] = $this->pageNum;
+ }
+ if (null !== $this->pageSize) {
+ $res['PageSize'] = $this->pageSize;
+ }
+ if (null !== $this->sortType) {
+ $res['SortType'] = $this->sortType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return QueryMessageAppRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['PageNum'])) {
+ $model->pageNum = $map['PageNum'];
+ }
+ if (isset($map['PageSize'])) {
+ $model->pageSize = $map['PageSize'];
+ }
+ if (isset($map['SortType'])) {
+ $model->sortType = $map['SortType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponse.php
new file mode 100644
index 000000000..71c9090c3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponse.php
@@ -0,0 +1,74 @@
+ '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 QueryMessageAppResponse
+ */
+ 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 = QueryMessageAppResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody.php
new file mode 100644
index 000000000..5df088e38
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody.php
@@ -0,0 +1,72 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = [];
+ if (null !== $this->result && \is_array($this->result)) {
+ $n = 0;
+ foreach ($this->result as $item) {
+ $res['Result'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return QueryMessageAppResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ if (!empty($map['Result'])) {
+ $model->result = [];
+ $n = 0;
+ foreach ($map['Result'] as $item) {
+ $model->result[$n++] = null !== $item ? result::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result.php
new file mode 100644
index 000000000..1c4977071
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result.php
@@ -0,0 +1,84 @@
+ 'AppList',
+ 'hasMore' => 'HasMore',
+ 'totalCount' => 'TotalCount',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appList) {
+ $res['AppList'] = [];
+ if (null !== $this->appList && \is_array($this->appList)) {
+ $n = 0;
+ foreach ($this->appList as $item) {
+ $res['AppList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->hasMore) {
+ $res['HasMore'] = $this->hasMore;
+ }
+ if (null !== $this->totalCount) {
+ $res['TotalCount'] = $this->totalCount;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppList'])) {
+ if (!empty($map['AppList'])) {
+ $model->appList = [];
+ $n = 0;
+ foreach ($map['AppList'] as $item) {
+ $model->appList[$n++] = null !== $item ? appList::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['HasMore'])) {
+ $model->hasMore = $map['HasMore'];
+ }
+ if (isset($map['TotalCount'])) {
+ $model->totalCount = $map['TotalCount'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result/appList.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result/appList.php
new file mode 100644
index 000000000..9a6666d2a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result/appList.php
@@ -0,0 +1,107 @@
+ 'AppConfig',
+ 'appId' => 'AppId',
+ 'appName' => 'AppName',
+ 'createTime' => 'CreateTime',
+ 'extension' => 'Extension',
+ 'status' => 'Status',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appConfig) {
+ $res['AppConfig'] = $this->appConfig;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->createTime) {
+ $res['CreateTime'] = $this->createTime;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+ if (null !== $this->status) {
+ $res['Status'] = $this->status;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return appList
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppConfig'])) {
+ $model->appConfig = $map['AppConfig'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['CreateTime'])) {
+ $model->createTime = $map['CreateTime'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+ if (isset($map['Status'])) {
+ $model->status = $map['Status'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthRequest.php b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthRequest.php
new file mode 100644
index 000000000..2961984d1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthRequest.php
@@ -0,0 +1,59 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return QuerySnapshotCallbackAuthRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponse.php b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponse.php
new file mode 100644
index 000000000..62938fbed
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponse.php
@@ -0,0 +1,74 @@
+ '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 QuerySnapshotCallbackAuthResponse
+ */
+ 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 = QuerySnapshotCallbackAuthResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponseBody.php
new file mode 100644
index 000000000..fb9a47556
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponseBody.php
@@ -0,0 +1,83 @@
+ 'CallbackAuthKey',
+ 'callbackReqAuth' => 'CallbackReqAuth',
+ 'domainName' => 'DomainName',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callbackAuthKey) {
+ $res['CallbackAuthKey'] = $this->callbackAuthKey;
+ }
+ if (null !== $this->callbackReqAuth) {
+ $res['CallbackReqAuth'] = $this->callbackReqAuth;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return QuerySnapshotCallbackAuthResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CallbackAuthKey'])) {
+ $model->callbackAuthKey = $map['CallbackAuthKey'];
+ }
+ if (isset($map['CallbackReqAuth'])) {
+ $model->callbackReqAuth = $map['CallbackReqAuth'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandRequest.php
new file mode 100644
index 000000000..f40eb9f2c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandRequest.php
@@ -0,0 +1,95 @@
+ 'AppName',
+ 'command' => 'Command',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->command) {
+ $res['Command'] = $this->command;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RealTimeRecordCommandRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Command'])) {
+ $model->command = $map['Command'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponse.php
new file mode 100644
index 000000000..407b5eeb4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponse.php
@@ -0,0 +1,74 @@
+ '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 RealTimeRecordCommandResponse
+ */
+ 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 = RealTimeRecordCommandResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponseBody.php
new file mode 100644
index 000000000..e0246cfa6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RealTimeRecordCommandResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandRequest.php
new file mode 100644
index 000000000..b82f9ebc6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandRequest.php
@@ -0,0 +1,131 @@
+ 'AppName',
+ 'command' => 'Command',
+ 'domainName' => 'DomainName',
+ 'interval' => 'Interval',
+ 'mode' => 'Mode',
+ 'ownerId' => 'OwnerId',
+ 'source' => 'Source',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->command) {
+ $res['Command'] = $this->command;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->mode) {
+ $res['Mode'] = $this->mode;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->source) {
+ $res['Source'] = $this->source;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RealTimeSnapshotCommandRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Command'])) {
+ $model->command = $map['Command'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['Mode'])) {
+ $model->mode = $map['Mode'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Source'])) {
+ $model->source = $map['Source'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponse.php
new file mode 100644
index 000000000..4c6fb83fa
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponse.php
@@ -0,0 +1,74 @@
+ '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 RealTimeSnapshotCommandResponse
+ */
+ 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 = RealTimeSnapshotCommandResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponseBody.php
new file mode 100644
index 000000000..be904c8fe
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RealTimeSnapshotCommandResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListRequest.php
new file mode 100644
index 000000000..e245a0fc8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListRequest.php
@@ -0,0 +1,97 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'showId' => 'ShowId',
+ 'isBatchMode' => 'isBatchMode',
+ 'showIdList' => 'showIdList',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+ if (null !== $this->isBatchMode) {
+ $res['isBatchMode'] = $this->isBatchMode;
+ }
+ if (null !== $this->showIdList) {
+ $res['showIdList'] = $this->showIdList;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RemoveShowFromShowListRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+ if (isset($map['isBatchMode'])) {
+ $model->isBatchMode = $map['isBatchMode'];
+ }
+ if (isset($map['showIdList'])) {
+ if (!empty($map['showIdList'])) {
+ $model->showIdList = $map['showIdList'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponse.php
new file mode 100644
index 000000000..a46fdb68a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponse.php
@@ -0,0 +1,74 @@
+ '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 RemoveShowFromShowListResponse
+ */
+ 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 = RemoveShowFromShowListResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponseBody.php
new file mode 100644
index 000000000..be2ea3b5b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponseBody.php
@@ -0,0 +1,83 @@
+ 'RequestId',
+ 'showId' => 'ShowId',
+ 'failedList' => 'failedList',
+ 'successfulShowIds' => 'successfulShowIds',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->showId) {
+ $res['ShowId'] = $this->showId;
+ }
+ if (null !== $this->failedList) {
+ $res['failedList'] = $this->failedList;
+ }
+ if (null !== $this->successfulShowIds) {
+ $res['successfulShowIds'] = $this->successfulShowIds;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RemoveShowFromShowListResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['ShowId'])) {
+ $model->showId = $map['ShowId'];
+ }
+ if (isset($map['failedList'])) {
+ $model->failedList = $map['failedList'];
+ }
+ if (isset($map['successfulShowIds'])) {
+ $model->successfulShowIds = $map['successfulShowIds'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RestartCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterRequest.php
new file mode 100644
index 000000000..8f60817d8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RestartCasterRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponse.php
new file mode 100644
index 000000000..bb6c87a3d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponse.php
@@ -0,0 +1,74 @@
+ '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 RestartCasterResponse
+ */
+ 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 = RestartCasterResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponseBody.php
new file mode 100644
index 000000000..9fb28e486
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RestartCasterResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamRequest.php
new file mode 100644
index 000000000..081ede66b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamRequest.php
@@ -0,0 +1,107 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'liveStreamType' => 'LiveStreamType',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->liveStreamType) {
+ $res['LiveStreamType'] = $this->liveStreamType;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ResumeLiveStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['LiveStreamType'])) {
+ $model->liveStreamType = $map['LiveStreamType'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponse.php
new file mode 100644
index 000000000..ad6841dc4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 ResumeLiveStreamResponse
+ */
+ 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 = ResumeLiveStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponseBody.php
new file mode 100644
index 000000000..493a2612f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return ResumeLiveStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigRequest.php
new file mode 100644
index 000000000..2022a147e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'functionName' => 'FunctionName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->functionName) {
+ $res['FunctionName'] = $this->functionName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RollbackLiveStagingConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['FunctionName'])) {
+ $model->functionName = $map['FunctionName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponse.php
new file mode 100644
index 000000000..d62ade729
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 RollbackLiveStagingConfigResponse
+ */
+ 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 = RollbackLiveStagingConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponseBody.php
new file mode 100644
index 000000000..c830b5718
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return RollbackLiveStagingConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeRequest.php
new file mode 100644
index 000000000..5af6b0a43
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'broadCastType' => 'BroadCastType',
+ 'count' => 'Count',
+ 'groupId' => 'GroupId',
+ 'operatorUserId' => 'OperatorUserId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->broadCastType) {
+ $res['BroadCastType'] = $this->broadCastType;
+ }
+ if (null !== $this->count) {
+ $res['Count'] = $this->count;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->operatorUserId) {
+ $res['OperatorUserId'] = $this->operatorUserId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendLikeRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BroadCastType'])) {
+ $model->broadCastType = $map['BroadCastType'];
+ }
+ if (isset($map['Count'])) {
+ $model->count = $map['Count'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['OperatorUserId'])) {
+ $model->operatorUserId = $map['OperatorUserId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponse.php
new file mode 100644
index 000000000..55e4cbfd1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponse.php
@@ -0,0 +1,74 @@
+ '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 SendLikeResponse
+ */
+ 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 = SendLikeResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody.php
new file mode 100644
index 000000000..0d4f168a1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendLikeResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody/result.php
new file mode 100644
index 000000000..f4458ad16
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'LikeCount',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->likeCount) {
+ $res['LikeCount'] = $this->likeCount;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['LikeCount'])) {
+ $model->likeCount = $map['LikeCount'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupRequest.php
new file mode 100644
index 000000000..82884c987
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupRequest.php
@@ -0,0 +1,95 @@
+ 'AppId',
+ 'data' => 'Data',
+ 'groupId' => 'GroupId',
+ 'operatorUserId' => 'OperatorUserId',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->operatorUserId) {
+ $res['OperatorUserId'] = $this->operatorUserId;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendMessageToGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['OperatorUserId'])) {
+ $model->operatorUserId = $map['OperatorUserId'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponse.php
new file mode 100644
index 000000000..506420d96
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 SendMessageToGroupResponse
+ */
+ 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 = SendMessageToGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody.php
new file mode 100644
index 000000000..86418e50f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendMessageToGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody/result.php
new file mode 100644
index 000000000..e51c6f5c8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'MessageId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->messageId) {
+ $res['MessageId'] = $this->messageId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MessageId'])) {
+ $model->messageId = $map['MessageId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersRequest.php
new file mode 100644
index 000000000..a14ba08c6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersRequest.php
@@ -0,0 +1,109 @@
+ 'AppId',
+ 'data' => 'Data',
+ 'groupId' => 'GroupId',
+ 'operatorUserId' => 'OperatorUserId',
+ 'receiverIdList' => 'ReceiverIdList',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->operatorUserId) {
+ $res['OperatorUserId'] = $this->operatorUserId;
+ }
+ if (null !== $this->receiverIdList) {
+ $res['ReceiverIdList'] = $this->receiverIdList;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendMessageToGroupUsersRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['OperatorUserId'])) {
+ $model->operatorUserId = $map['OperatorUserId'];
+ }
+ if (isset($map['ReceiverIdList'])) {
+ if (!empty($map['ReceiverIdList'])) {
+ $model->receiverIdList = $map['ReceiverIdList'];
+ }
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponse.php
new file mode 100644
index 000000000..0ff167ff0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponse.php
@@ -0,0 +1,74 @@
+ '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 SendMessageToGroupUsersResponse
+ */
+ 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 = SendMessageToGroupUsersResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody.php
new file mode 100644
index 000000000..63ef56a1f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendMessageToGroupUsersResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody/result.php
new file mode 100644
index 000000000..1f637b1b5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'MessageId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->messageId) {
+ $res['MessageId'] = $this->messageId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MessageId'])) {
+ $model->messageId = $map['MessageId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersShrinkRequest.php
new file mode 100644
index 000000000..14ec87b4a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersShrinkRequest.php
@@ -0,0 +1,107 @@
+ 'AppId',
+ 'data' => 'Data',
+ 'groupId' => 'GroupId',
+ 'operatorUserId' => 'OperatorUserId',
+ 'receiverIdListShrink' => 'ReceiverIdList',
+ 'type' => 'Type',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+ if (null !== $this->operatorUserId) {
+ $res['OperatorUserId'] = $this->operatorUserId;
+ }
+ if (null !== $this->receiverIdListShrink) {
+ $res['ReceiverIdList'] = $this->receiverIdListShrink;
+ }
+ if (null !== $this->type) {
+ $res['Type'] = $this->type;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendMessageToGroupUsersShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+ if (isset($map['OperatorUserId'])) {
+ $model->operatorUserId = $map['OperatorUserId'];
+ }
+ if (isset($map['ReceiverIdList'])) {
+ $model->receiverIdListShrink = $map['ReceiverIdList'];
+ }
+ if (isset($map['Type'])) {
+ $model->type = $map['Type'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationRequest.php
new file mode 100644
index 000000000..cd776f87a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationRequest.php
@@ -0,0 +1,107 @@
+ 'AppId',
+ 'appUid' => 'AppUid',
+ 'data' => 'Data',
+ 'ownerId' => 'OwnerId',
+ 'priority' => 'Priority',
+ 'roomId' => 'RoomId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->priority) {
+ $res['Priority'] = $this->priority;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendRoomNotificationRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Priority'])) {
+ $model->priority = $map['Priority'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponse.php
new file mode 100644
index 000000000..3d6a95fe7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponse.php
@@ -0,0 +1,74 @@
+ '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 SendRoomNotificationResponse
+ */
+ 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 = SendRoomNotificationResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponseBody.php
new file mode 100644
index 000000000..5bab7b823
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponseBody.php
@@ -0,0 +1,59 @@
+ 'MessageId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->messageId) {
+ $res['MessageId'] = $this->messageId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendRoomNotificationResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MessageId'])) {
+ $model->messageId = $map['MessageId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationRequest.php
new file mode 100644
index 000000000..084823f05
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationRequest.php
@@ -0,0 +1,119 @@
+ 'AppId',
+ 'appUid' => 'AppUid',
+ 'data' => 'Data',
+ 'ownerId' => 'OwnerId',
+ 'priority' => 'Priority',
+ 'roomId' => 'RoomId',
+ 'toAppUid' => 'ToAppUid',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appUid) {
+ $res['AppUid'] = $this->appUid;
+ }
+ if (null !== $this->data) {
+ $res['Data'] = $this->data;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->priority) {
+ $res['Priority'] = $this->priority;
+ }
+ if (null !== $this->roomId) {
+ $res['RoomId'] = $this->roomId;
+ }
+ if (null !== $this->toAppUid) {
+ $res['ToAppUid'] = $this->toAppUid;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendRoomUserNotificationRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppUid'])) {
+ $model->appUid = $map['AppUid'];
+ }
+ if (isset($map['Data'])) {
+ $model->data = $map['Data'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Priority'])) {
+ $model->priority = $map['Priority'];
+ }
+ if (isset($map['RoomId'])) {
+ $model->roomId = $map['RoomId'];
+ }
+ if (isset($map['ToAppUid'])) {
+ $model->toAppUid = $map['ToAppUid'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponse.php
new file mode 100644
index 000000000..3c4da5443
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponse.php
@@ -0,0 +1,74 @@
+ '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 SendRoomUserNotificationResponse
+ */
+ 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 = SendRoomUserNotificationResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponseBody.php
new file mode 100644
index 000000000..c102704d2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponseBody.php
@@ -0,0 +1,59 @@
+ 'MessageId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->messageId) {
+ $res['MessageId'] = $this->messageId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SendRoomUserNotificationResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MessageId'])) {
+ $model->messageId = $map['MessageId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackRequest.php
new file mode 100644
index 000000000..caa7b13c3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackRequest.php
@@ -0,0 +1,119 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'authKey' => 'AuthKey',
+ 'authSwitch' => 'AuthSwitch',
+ 'callbackEnable' => 'CallbackEnable',
+ 'callbackUri' => 'CallbackUri',
+ 'callbackEvents' => 'CallbackEvents',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->authKey) {
+ $res['AuthKey'] = $this->authKey;
+ }
+ if (null !== $this->authSwitch) {
+ $res['AuthSwitch'] = $this->authSwitch;
+ }
+ if (null !== $this->callbackEnable) {
+ $res['CallbackEnable'] = $this->callbackEnable;
+ }
+ if (null !== $this->callbackUri) {
+ $res['CallbackUri'] = $this->callbackUri;
+ }
+ if (null !== $this->callbackEvents) {
+ $res['CallbackEvents'] = $this->callbackEvents;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetBoardCallbackRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AuthKey'])) {
+ $model->authKey = $map['AuthKey'];
+ }
+ if (isset($map['AuthSwitch'])) {
+ $model->authSwitch = $map['AuthSwitch'];
+ }
+ if (isset($map['CallbackEnable'])) {
+ $model->callbackEnable = $map['CallbackEnable'];
+ }
+ if (isset($map['CallbackUri'])) {
+ $model->callbackUri = $map['CallbackUri'];
+ }
+ if (isset($map['CallbackEvents'])) {
+ $model->callbackEvents = $map['CallbackEvents'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponse.php
new file mode 100644
index 000000000..39ed15f88
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetBoardCallbackResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = SetBoardCallbackResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponseBody.php
new file mode 100644
index 000000000..d8446af3a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetBoardCallbackResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelRequest.php
new file mode 100644
index 000000000..3711ba26e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelRequest.php
@@ -0,0 +1,119 @@
+ 'CasterId',
+ 'channelId' => 'ChannelId',
+ 'faceBeauty' => 'FaceBeauty',
+ 'ownerId' => 'OwnerId',
+ 'playStatus' => 'PlayStatus',
+ 'resourceId' => 'ResourceId',
+ 'seekOffset' => 'SeekOffset',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->channelId) {
+ $res['ChannelId'] = $this->channelId;
+ }
+ if (null !== $this->faceBeauty) {
+ $res['FaceBeauty'] = $this->faceBeauty;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->playStatus) {
+ $res['PlayStatus'] = $this->playStatus;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->seekOffset) {
+ $res['SeekOffset'] = $this->seekOffset;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterChannelRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ChannelId'])) {
+ $model->channelId = $map['ChannelId'];
+ }
+ if (isset($map['FaceBeauty'])) {
+ $model->faceBeauty = $map['FaceBeauty'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PlayStatus'])) {
+ $model->playStatus = $map['PlayStatus'];
+ }
+ if (isset($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ if (isset($map['SeekOffset'])) {
+ $model->seekOffset = $map['SeekOffset'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponse.php
new file mode 100644
index 000000000..fad480425
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponse.php
@@ -0,0 +1,74 @@
+ '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 SetCasterChannelResponse
+ */
+ 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 = SetCasterChannelResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponseBody.php
new file mode 100644
index 000000000..e3b58a919
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterChannelResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigRequest.php
new file mode 100644
index 000000000..51c5e3af9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigRequest.php
@@ -0,0 +1,227 @@
+ 'CallbackUrl',
+ 'casterId' => 'CasterId',
+ 'casterName' => 'CasterName',
+ 'channelEnable' => 'ChannelEnable',
+ 'delay' => 'Delay',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'programEffect' => 'ProgramEffect',
+ 'programName' => 'ProgramName',
+ 'recordConfig' => 'RecordConfig',
+ 'sideOutputUrl' => 'SideOutputUrl',
+ 'sideOutputUrlList' => 'SideOutputUrlList',
+ 'syncGroupsConfig' => 'SyncGroupsConfig',
+ 'transcodeConfig' => 'TranscodeConfig',
+ 'urgentLiveStreamUrl' => 'UrgentLiveStreamUrl',
+ 'urgentMaterialId' => 'UrgentMaterialId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callbackUrl) {
+ $res['CallbackUrl'] = $this->callbackUrl;
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->casterName) {
+ $res['CasterName'] = $this->casterName;
+ }
+ if (null !== $this->channelEnable) {
+ $res['ChannelEnable'] = $this->channelEnable;
+ }
+ if (null !== $this->delay) {
+ $res['Delay'] = $this->delay;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programEffect) {
+ $res['ProgramEffect'] = $this->programEffect;
+ }
+ if (null !== $this->programName) {
+ $res['ProgramName'] = $this->programName;
+ }
+ if (null !== $this->recordConfig) {
+ $res['RecordConfig'] = $this->recordConfig;
+ }
+ if (null !== $this->sideOutputUrl) {
+ $res['SideOutputUrl'] = $this->sideOutputUrl;
+ }
+ if (null !== $this->sideOutputUrlList) {
+ $res['SideOutputUrlList'] = $this->sideOutputUrlList;
+ }
+ if (null !== $this->syncGroupsConfig) {
+ $res['SyncGroupsConfig'] = $this->syncGroupsConfig;
+ }
+ if (null !== $this->transcodeConfig) {
+ $res['TranscodeConfig'] = $this->transcodeConfig;
+ }
+ if (null !== $this->urgentLiveStreamUrl) {
+ $res['UrgentLiveStreamUrl'] = $this->urgentLiveStreamUrl;
+ }
+ if (null !== $this->urgentMaterialId) {
+ $res['UrgentMaterialId'] = $this->urgentMaterialId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CallbackUrl'])) {
+ $model->callbackUrl = $map['CallbackUrl'];
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['CasterName'])) {
+ $model->casterName = $map['CasterName'];
+ }
+ if (isset($map['ChannelEnable'])) {
+ $model->channelEnable = $map['ChannelEnable'];
+ }
+ if (isset($map['Delay'])) {
+ $model->delay = $map['Delay'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramEffect'])) {
+ $model->programEffect = $map['ProgramEffect'];
+ }
+ if (isset($map['ProgramName'])) {
+ $model->programName = $map['ProgramName'];
+ }
+ if (isset($map['RecordConfig'])) {
+ $model->recordConfig = $map['RecordConfig'];
+ }
+ if (isset($map['SideOutputUrl'])) {
+ $model->sideOutputUrl = $map['SideOutputUrl'];
+ }
+ if (isset($map['SideOutputUrlList'])) {
+ $model->sideOutputUrlList = $map['SideOutputUrlList'];
+ }
+ if (isset($map['SyncGroupsConfig'])) {
+ $model->syncGroupsConfig = $map['SyncGroupsConfig'];
+ }
+ if (isset($map['TranscodeConfig'])) {
+ $model->transcodeConfig = $map['TranscodeConfig'];
+ }
+ if (isset($map['UrgentLiveStreamUrl'])) {
+ $model->urgentLiveStreamUrl = $map['UrgentLiveStreamUrl'];
+ }
+ if (isset($map['UrgentMaterialId'])) {
+ $model->urgentMaterialId = $map['UrgentMaterialId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponse.php
new file mode 100644
index 000000000..05496f5bb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 SetCasterConfigResponse
+ */
+ 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 = SetCasterConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponseBody.php
new file mode 100644
index 000000000..142495bc3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponseBody.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigRequest.php
new file mode 100644
index 000000000..4c07da026
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigRequest.php
@@ -0,0 +1,97 @@
+ 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'layoutId' => 'LayoutId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterSceneConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ if (!empty($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponse.php
new file mode 100644
index 000000000..774b785e7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 SetCasterSceneConfigResponse
+ */
+ 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 = SetCasterSceneConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponseBody.php
new file mode 100644
index 000000000..df756ab3e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterSceneConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest.php
new file mode 100644
index 000000000..49d00c470
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest.php
@@ -0,0 +1,84 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'syncGroup' => 'SyncGroup',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->syncGroup) {
+ $res['SyncGroup'] = [];
+ if (null !== $this->syncGroup && \is_array($this->syncGroup)) {
+ $n = 0;
+ foreach ($this->syncGroup as $item) {
+ $res['SyncGroup'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterSyncGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SyncGroup'])) {
+ if (!empty($map['SyncGroup'])) {
+ $model->syncGroup = [];
+ $n = 0;
+ foreach ($map['SyncGroup'] as $item) {
+ $model->syncGroup[$n++] = null !== $item ? syncGroup::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest/syncGroup.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest/syncGroup.php
new file mode 100644
index 000000000..b46ef243f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest/syncGroup.php
@@ -0,0 +1,99 @@
+ 'HostResourceId',
+ 'mode' => 'Mode',
+ 'resourceIds' => 'ResourceIds',
+ 'syncDelayThreshold' => 'SyncDelayThreshold',
+ 'syncOffsets' => 'SyncOffsets',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->hostResourceId) {
+ $res['HostResourceId'] = $this->hostResourceId;
+ }
+ if (null !== $this->mode) {
+ $res['Mode'] = $this->mode;
+ }
+ if (null !== $this->resourceIds) {
+ $res['ResourceIds'] = $this->resourceIds;
+ }
+ if (null !== $this->syncDelayThreshold) {
+ $res['SyncDelayThreshold'] = $this->syncDelayThreshold;
+ }
+ if (null !== $this->syncOffsets) {
+ $res['SyncOffsets'] = $this->syncOffsets;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return syncGroup
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['HostResourceId'])) {
+ $model->hostResourceId = $map['HostResourceId'];
+ }
+ if (isset($map['Mode'])) {
+ $model->mode = $map['Mode'];
+ }
+ if (isset($map['ResourceIds'])) {
+ if (!empty($map['ResourceIds'])) {
+ $model->resourceIds = $map['ResourceIds'];
+ }
+ }
+ if (isset($map['SyncDelayThreshold'])) {
+ $model->syncDelayThreshold = $map['SyncDelayThreshold'];
+ }
+ if (isset($map['SyncOffsets'])) {
+ if (!empty($map['SyncOffsets'])) {
+ $model->syncOffsets = $map['SyncOffsets'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponse.php
new file mode 100644
index 000000000..5618502d9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 SetCasterSyncGroupResponse
+ */
+ 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 = SetCasterSyncGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponseBody.php
new file mode 100644
index 000000000..077f9fe9d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterSyncGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventRequest.php
new file mode 100644
index 000000000..cbd483d4c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventRequest.php
@@ -0,0 +1,83 @@
+ 'CasterId',
+ 'eventName' => 'EventName',
+ 'ownerId' => 'OwnerId',
+ 'startTimeUTC' => 'StartTimeUTC',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->eventName) {
+ $res['EventName'] = $this->eventName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->startTimeUTC) {
+ $res['StartTimeUTC'] = $this->startTimeUTC;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterTimedEventRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['EventName'])) {
+ $model->eventName = $map['EventName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StartTimeUTC'])) {
+ $model->startTimeUTC = $map['StartTimeUTC'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponse.php
new file mode 100644
index 000000000..a74fdb749
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponse.php
@@ -0,0 +1,74 @@
+ '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 SetCasterTimedEventResponse
+ */
+ 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 = SetCasterTimedEventResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponseBody.php
new file mode 100644
index 000000000..f976d56ac
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetCasterTimedEventResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateRequest.php
new file mode 100644
index 000000000..3c85a8df2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateRequest.php
@@ -0,0 +1,143 @@
+ 'CertName',
+ 'certType' => 'CertType',
+ 'domainName' => 'DomainName',
+ 'forceSet' => 'ForceSet',
+ 'ownerId' => 'OwnerId',
+ 'SSLPri' => 'SSLPri',
+ 'SSLProtocol' => 'SSLProtocol',
+ 'SSLPub' => 'SSLPub',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->certName) {
+ $res['CertName'] = $this->certName;
+ }
+ if (null !== $this->certType) {
+ $res['CertType'] = $this->certType;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->forceSet) {
+ $res['ForceSet'] = $this->forceSet;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->SSLPri) {
+ $res['SSLPri'] = $this->SSLPri;
+ }
+ if (null !== $this->SSLProtocol) {
+ $res['SSLProtocol'] = $this->SSLProtocol;
+ }
+ if (null !== $this->SSLPub) {
+ $res['SSLPub'] = $this->SSLPub;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveDomainCertificateRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CertName'])) {
+ $model->certName = $map['CertName'];
+ }
+ if (isset($map['CertType'])) {
+ $model->certType = $map['CertType'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['ForceSet'])) {
+ $model->forceSet = $map['ForceSet'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SSLPri'])) {
+ $model->SSLPri = $map['SSLPri'];
+ }
+ if (isset($map['SSLProtocol'])) {
+ $model->SSLProtocol = $map['SSLProtocol'];
+ }
+ if (isset($map['SSLPub'])) {
+ $model->SSLPub = $map['SSLPub'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponse.php
new file mode 100644
index 000000000..8940a6b41
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponse.php
@@ -0,0 +1,74 @@
+ '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 SetLiveDomainCertificateResponse
+ */
+ 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 = SetLiveDomainCertificateResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponseBody.php
new file mode 100644
index 000000000..bf337c916
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveDomainCertificateResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigRequest.php
new file mode 100644
index 000000000..9a35b688a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'functions' => 'Functions',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->functions) {
+ $res['Functions'] = $this->functions;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveDomainStagingConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Functions'])) {
+ $model->functions = $map['Functions'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponse.php
new file mode 100644
index 000000000..2cb50c4f6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 SetLiveDomainStagingConfigResponse
+ */
+ 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 = SetLiveDomainStagingConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponseBody.php
new file mode 100644
index 000000000..433c6a8d3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveDomainStagingConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferRequest.php
new file mode 100644
index 000000000..41e2964a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'httpDns' => 'HttpDns',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ 'targetDomainList' => 'TargetDomainList',
+ 'transferArgs' => 'TransferArgs',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->httpDns) {
+ $res['HttpDns'] = $this->httpDns;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->targetDomainList) {
+ $res['TargetDomainList'] = $this->targetDomainList;
+ }
+ if (null !== $this->transferArgs) {
+ $res['TransferArgs'] = $this->transferArgs;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveEdgeTransferRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['HttpDns'])) {
+ $model->httpDns = $map['HttpDns'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TargetDomainList'])) {
+ $model->targetDomainList = $map['TargetDomainList'];
+ }
+ if (isset($map['TransferArgs'])) {
+ $model->transferArgs = $map['TransferArgs'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponse.php
new file mode 100644
index 000000000..69138a6eb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponse.php
@@ -0,0 +1,74 @@
+ '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 SetLiveEdgeTransferResponse
+ */
+ 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 = SetLiveEdgeTransferResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponseBody.php
new file mode 100644
index 000000000..83d966a47
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveEdgeTransferResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigRequest.php
new file mode 100644
index 000000000..fe8101faf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigRequest.php
@@ -0,0 +1,107 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'pullAppName' => 'PullAppName',
+ 'pullDomainName' => 'PullDomainName',
+ 'pullProtocol' => 'PullProtocol',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pullAppName) {
+ $res['PullAppName'] = $this->pullAppName;
+ }
+ if (null !== $this->pullDomainName) {
+ $res['PullDomainName'] = $this->pullDomainName;
+ }
+ if (null !== $this->pullProtocol) {
+ $res['PullProtocol'] = $this->pullProtocol;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveLazyPullStreamInfoConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PullAppName'])) {
+ $model->pullAppName = $map['PullAppName'];
+ }
+ if (isset($map['PullDomainName'])) {
+ $model->pullDomainName = $map['PullDomainName'];
+ }
+ if (isset($map['PullProtocol'])) {
+ $model->pullProtocol = $map['PullProtocol'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponse.php
new file mode 100644
index 000000000..2d58e83db
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 SetLiveLazyPullStreamInfoConfigResponse
+ */
+ 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 = SetLiveLazyPullStreamInfoConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponseBody.php
new file mode 100644
index 000000000..6d63aa3b7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveLazyPullStreamInfoConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigRequest.php
new file mode 100644
index 000000000..702af28b8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigRequest.php
@@ -0,0 +1,131 @@
+ 'DomainName',
+ 'flvDelay' => 'FlvDelay',
+ 'flvLevel' => 'FlvLevel',
+ 'hlsDelay' => 'HlsDelay',
+ 'hlsLevel' => 'HlsLevel',
+ 'ownerId' => 'OwnerId',
+ 'rtmpDelay' => 'RtmpDelay',
+ 'rtmpLevel' => 'RtmpLevel',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->flvDelay) {
+ $res['FlvDelay'] = $this->flvDelay;
+ }
+ if (null !== $this->flvLevel) {
+ $res['FlvLevel'] = $this->flvLevel;
+ }
+ if (null !== $this->hlsDelay) {
+ $res['HlsDelay'] = $this->hlsDelay;
+ }
+ if (null !== $this->hlsLevel) {
+ $res['HlsLevel'] = $this->hlsLevel;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->rtmpDelay) {
+ $res['RtmpDelay'] = $this->rtmpDelay;
+ }
+ if (null !== $this->rtmpLevel) {
+ $res['RtmpLevel'] = $this->rtmpLevel;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveStreamDelayConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['FlvDelay'])) {
+ $model->flvDelay = $map['FlvDelay'];
+ }
+ if (isset($map['FlvLevel'])) {
+ $model->flvLevel = $map['FlvLevel'];
+ }
+ if (isset($map['HlsDelay'])) {
+ $model->hlsDelay = $map['HlsDelay'];
+ }
+ if (isset($map['HlsLevel'])) {
+ $model->hlsLevel = $map['HlsLevel'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RtmpDelay'])) {
+ $model->rtmpDelay = $map['RtmpDelay'];
+ }
+ if (isset($map['RtmpLevel'])) {
+ $model->rtmpLevel = $map['RtmpLevel'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponse.php
new file mode 100644
index 000000000..8784aa23e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 SetLiveStreamDelayConfigResponse
+ */
+ 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 = SetLiveStreamDelayConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponseBody.php
new file mode 100644
index 000000000..8ebde00c7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveStreamDelayConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigRequest.php
new file mode 100644
index 000000000..d775ad209
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigRequest.php
@@ -0,0 +1,95 @@
+ 'ConfigName',
+ 'configStatus' => 'ConfigStatus',
+ 'configValue' => 'ConfigValue',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->configName) {
+ $res['ConfigName'] = $this->configName;
+ }
+ if (null !== $this->configStatus) {
+ $res['ConfigStatus'] = $this->configStatus;
+ }
+ if (null !== $this->configValue) {
+ $res['ConfigValue'] = $this->configValue;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveStreamOptimizedFeatureConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ConfigName'])) {
+ $model->configName = $map['ConfigName'];
+ }
+ if (isset($map['ConfigStatus'])) {
+ $model->configStatus = $map['ConfigStatus'];
+ }
+ if (isset($map['ConfigValue'])) {
+ $model->configValue = $map['ConfigValue'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponse.php
new file mode 100644
index 000000000..efced33fd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 SetLiveStreamOptimizedFeatureConfigResponse
+ */
+ 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 = SetLiveStreamOptimizedFeatureConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponseBody.php
new file mode 100644
index 000000000..b11b195ce
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveStreamOptimizedFeatureConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigRequest.php
new file mode 100644
index 000000000..04c6f6482
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'notifyAuthKey' => 'NotifyAuthKey',
+ 'notifyReqAuth' => 'NotifyReqAuth',
+ 'notifyUrl' => 'NotifyUrl',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyAuthKey) {
+ $res['NotifyAuthKey'] = $this->notifyAuthKey;
+ }
+ if (null !== $this->notifyReqAuth) {
+ $res['NotifyReqAuth'] = $this->notifyReqAuth;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveStreamsNotifyUrlConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyAuthKey'])) {
+ $model->notifyAuthKey = $map['NotifyAuthKey'];
+ }
+ if (isset($map['NotifyReqAuth'])) {
+ $model->notifyReqAuth = $map['NotifyReqAuth'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponse.php
new file mode 100644
index 000000000..34b7879d2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 SetLiveStreamsNotifyUrlConfigResponse
+ */
+ 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 = SetLiveStreamsNotifyUrlConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponseBody.php
new file mode 100644
index 000000000..b721d891b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetLiveStreamsNotifyUrlConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthRequest.php
new file mode 100644
index 000000000..78c3a5f6b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthRequest.php
@@ -0,0 +1,83 @@
+ 'CallbackAuthKey',
+ 'callbackReqAuth' => 'CallbackReqAuth',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callbackAuthKey) {
+ $res['CallbackAuthKey'] = $this->callbackAuthKey;
+ }
+ if (null !== $this->callbackReqAuth) {
+ $res['CallbackReqAuth'] = $this->callbackReqAuth;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetSnapshotCallbackAuthRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CallbackAuthKey'])) {
+ $model->callbackAuthKey = $map['CallbackAuthKey'];
+ }
+ if (isset($map['CallbackReqAuth'])) {
+ $model->callbackReqAuth = $map['CallbackReqAuth'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponse.php
new file mode 100644
index 000000000..35dd566e3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponse.php
@@ -0,0 +1,74 @@
+ '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 SetSnapshotCallbackAuthResponse
+ */
+ 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 = SetSnapshotCallbackAuthResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponseBody.php
new file mode 100644
index 000000000..d3e346e53
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return SetSnapshotCallbackAuthResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordRequest.php
new file mode 100644
index 000000000..439a4b536
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordRequest.php
@@ -0,0 +1,83 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'boardId' => 'BoardId',
+ 'startTime' => 'StartTime',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->boardId) {
+ $res['BoardId'] = $this->boardId;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartBoardRecordRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BoardId'])) {
+ $model->boardId = $map['BoardId'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponse.php
new file mode 100644
index 000000000..cd8506a33
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartBoardRecordResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = StartBoardRecordResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponseBody.php
new file mode 100644
index 000000000..1e63b1547
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'recordId' => 'RecordId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->recordId) {
+ $res['RecordId'] = $this->recordId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartBoardRecordResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['RecordId'])) {
+ $model->recordId = $map['RecordId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterRequest.php
new file mode 100644
index 000000000..e8305be51
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartCasterRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponse.php
new file mode 100644
index 000000000..ca68b584c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponse.php
@@ -0,0 +1,74 @@
+ '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 StartCasterResponse
+ */
+ 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 = StartCasterResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody.php
new file mode 100644
index 000000000..cf5240c6b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody.php
@@ -0,0 +1,73 @@
+ 'PgmSceneInfos',
+ 'pvwSceneInfos' => 'PvwSceneInfos',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pgmSceneInfos) {
+ $res['PgmSceneInfos'] = null !== $this->pgmSceneInfos ? $this->pgmSceneInfos->toMap() : null;
+ }
+ if (null !== $this->pvwSceneInfos) {
+ $res['PvwSceneInfos'] = null !== $this->pvwSceneInfos ? $this->pvwSceneInfos->toMap() : null;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartCasterResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PgmSceneInfos'])) {
+ $model->pgmSceneInfos = pgmSceneInfos::fromMap($map['PgmSceneInfos']);
+ }
+ if (isset($map['PvwSceneInfos'])) {
+ $model->pvwSceneInfos = pvwSceneInfos::fromMap($map['PvwSceneInfos']);
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos.php
new file mode 100644
index 000000000..d693cebde
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos.php
@@ -0,0 +1,60 @@
+ 'SceneInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->sceneInfo) {
+ $res['SceneInfo'] = [];
+ if (null !== $this->sceneInfo && \is_array($this->sceneInfo)) {
+ $n = 0;
+ foreach ($this->sceneInfo as $item) {
+ $res['SceneInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return pgmSceneInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SceneInfo'])) {
+ if (!empty($map['SceneInfo'])) {
+ $model->sceneInfo = [];
+ $n = 0;
+ foreach ($map['SceneInfo'] as $item) {
+ $model->sceneInfo[$n++] = null !== $item ? sceneInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo.php
new file mode 100644
index 000000000..da3c597c7
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo.php
@@ -0,0 +1,72 @@
+ 'SceneId',
+ 'streamInfos' => 'StreamInfos',
+ 'streamUrl' => 'StreamUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+ if (null !== $this->streamInfos) {
+ $res['StreamInfos'] = null !== $this->streamInfos ? $this->streamInfos->toMap() : null;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return sceneInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+ if (isset($map['StreamInfos'])) {
+ $model->streamInfos = streamInfos::fromMap($map['StreamInfos']);
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos.php
new file mode 100644
index 000000000..c876713f0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos.php
@@ -0,0 +1,60 @@
+ 'StreamInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->streamInfo) {
+ $res['StreamInfo'] = [];
+ if (null !== $this->streamInfo && \is_array($this->streamInfo)) {
+ $n = 0;
+ foreach ($this->streamInfo as $item) {
+ $res['StreamInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['StreamInfo'])) {
+ if (!empty($map['StreamInfo'])) {
+ $model->streamInfo = [];
+ $n = 0;
+ foreach ($map['StreamInfo'] as $item) {
+ $model->streamInfo[$n++] = null !== $item ? streamInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos/streamInfo.php
new file mode 100644
index 000000000..70507fa58
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos/streamInfo.php
@@ -0,0 +1,71 @@
+ 'OutputStreamUrl',
+ 'transcodeConfig' => 'TranscodeConfig',
+ 'videoFormat' => 'VideoFormat',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->outputStreamUrl) {
+ $res['OutputStreamUrl'] = $this->outputStreamUrl;
+ }
+ if (null !== $this->transcodeConfig) {
+ $res['TranscodeConfig'] = $this->transcodeConfig;
+ }
+ if (null !== $this->videoFormat) {
+ $res['VideoFormat'] = $this->videoFormat;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OutputStreamUrl'])) {
+ $model->outputStreamUrl = $map['OutputStreamUrl'];
+ }
+ if (isset($map['TranscodeConfig'])) {
+ $model->transcodeConfig = $map['TranscodeConfig'];
+ }
+ if (isset($map['VideoFormat'])) {
+ $model->videoFormat = $map['VideoFormat'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos.php
new file mode 100644
index 000000000..d7e46674a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos.php
@@ -0,0 +1,60 @@
+ 'SceneInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->sceneInfo) {
+ $res['SceneInfo'] = [];
+ if (null !== $this->sceneInfo && \is_array($this->sceneInfo)) {
+ $n = 0;
+ foreach ($this->sceneInfo as $item) {
+ $res['SceneInfo'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return pvwSceneInfos
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SceneInfo'])) {
+ if (!empty($map['SceneInfo'])) {
+ $model->sceneInfo = [];
+ $n = 0;
+ foreach ($map['SceneInfo'] as $item) {
+ $model->sceneInfo[$n++] = null !== $item ? sceneInfo::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos/sceneInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos/sceneInfo.php
new file mode 100644
index 000000000..b47938090
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos/sceneInfo.php
@@ -0,0 +1,59 @@
+ 'SceneId',
+ 'streamUrl' => 'StreamUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return sceneInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneRequest.php
new file mode 100644
index 000000000..47636c37f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartCasterSceneRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponse.php
new file mode 100644
index 000000000..205ccb5d6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponse.php
@@ -0,0 +1,74 @@
+ '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 StartCasterSceneResponse
+ */
+ 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 = StartCasterSceneResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponseBody.php
new file mode 100644
index 000000000..9531b74cd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponseBody.php
@@ -0,0 +1,59 @@
+ 'RequestId',
+ 'streamUrl' => 'StreamUrl',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamUrl) {
+ $res['StreamUrl'] = $this->streamUrl;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartCasterSceneResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamUrl'])) {
+ $model->streamUrl = $map['StreamUrl'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainRequest.php
new file mode 100644
index 000000000..2fc7d3e54
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartLiveDomainRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponse.php
new file mode 100644
index 000000000..bb5c6b948
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponse.php
@@ -0,0 +1,74 @@
+ '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 StartLiveDomainResponse
+ */
+ 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 = StartLiveDomainResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponseBody.php
new file mode 100644
index 000000000..9a2be2742
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartLiveDomainResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexRequest.php
new file mode 100644
index 000000000..cbc0f1275
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexRequest.php
@@ -0,0 +1,167 @@
+ 'OwnerId',
+ 'domainName' => 'DomainName',
+ 'appName' => 'AppName',
+ 'streamName' => 'StreamName',
+ 'tokenId' => 'TokenId',
+ 'inputUrl' => 'InputUrl',
+ 'interval' => 'Interval',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossUserId' => 'OssUserId',
+ 'ossRamRole' => 'OssRamRole',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->tokenId) {
+ $res['TokenId'] = $this->tokenId;
+ }
+ if (null !== $this->inputUrl) {
+ $res['InputUrl'] = $this->inputUrl;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossUserId) {
+ $res['OssUserId'] = $this->ossUserId;
+ }
+ if (null !== $this->ossRamRole) {
+ $res['OssRamRole'] = $this->ossRamRole;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartLiveIndexRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TokenId'])) {
+ $model->tokenId = $map['TokenId'];
+ }
+ if (isset($map['InputUrl'])) {
+ $model->inputUrl = $map['InputUrl'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssUserId'])) {
+ $model->ossUserId = $map['OssUserId'];
+ }
+ if (isset($map['OssRamRole'])) {
+ $model->ossRamRole = $map['OssRamRole'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponse.php
new file mode 100644
index 000000000..9a5e5013d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartLiveIndexResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = StartLiveIndexResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponseBody.php
new file mode 100644
index 000000000..2ecba9184
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponseBody.php
@@ -0,0 +1,59 @@
+ 'TaskId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->taskId) {
+ $res['TaskId'] = $this->taskId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartLiveIndexResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['TaskId'])) {
+ $model->taskId = $map['TaskId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorRequest.php
new file mode 100644
index 000000000..a50e51f0f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorRequest.php
@@ -0,0 +1,59 @@
+ 'MonitorId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->monitorId) {
+ $res['MonitorId'] = $this->monitorId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartLiveStreamMonitorRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MonitorId'])) {
+ $model->monitorId = $map['MonitorId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponse.php
new file mode 100644
index 000000000..13435e0c0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponse.php
@@ -0,0 +1,74 @@
+ '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 StartLiveStreamMonitorResponse
+ */
+ 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 = StartLiveStreamMonitorResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponseBody.php
new file mode 100644
index 000000000..3e901dc31
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartLiveStreamMonitorResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistRequest.php
new file mode 100644
index 000000000..1c26b8876
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistRequest.php
@@ -0,0 +1,95 @@
+ 'Offset',
+ 'ownerId' => 'OwnerId',
+ 'programId' => 'ProgramId',
+ 'resumeMode' => 'ResumeMode',
+ 'startItemId' => 'StartItemId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->offset) {
+ $res['Offset'] = $this->offset;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->resumeMode) {
+ $res['ResumeMode'] = $this->resumeMode;
+ }
+ if (null !== $this->startItemId) {
+ $res['StartItemId'] = $this->startItemId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartPlaylistRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Offset'])) {
+ $model->offset = $map['Offset'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['ResumeMode'])) {
+ $model->resumeMode = $map['ResumeMode'];
+ }
+ if (isset($map['StartItemId'])) {
+ $model->startItemId = $map['StartItemId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponse.php
new file mode 100644
index 000000000..775245b88
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponse.php
@@ -0,0 +1,74 @@
+ '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 StartPlaylistResponse
+ */
+ 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 = StartPlaylistResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody.php
new file mode 100644
index 000000000..ffbe1338e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody.php
@@ -0,0 +1,72 @@
+ 'ProgramId',
+ 'requestId' => 'RequestId',
+ 'streamInfo' => 'StreamInfo',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->streamInfo) {
+ $res['StreamInfo'] = null !== $this->streamInfo ? $this->streamInfo->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StartPlaylistResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['StreamInfo'])) {
+ $model->streamInfo = streamInfo::fromMap($map['StreamInfo']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo.php
new file mode 100644
index 000000000..850939935
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo.php
@@ -0,0 +1,84 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'streamName' => 'StreamName',
+ 'streams' => 'Streams',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->streams) {
+ $res['Streams'] = null !== $this->streams ? $this->streams->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streamInfo
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['Streams'])) {
+ $model->streams = streams::fromMap($map['Streams']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams.php
new file mode 100644
index 000000000..41987a63d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams.php
@@ -0,0 +1,60 @@
+ 'Stream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->stream) {
+ $res['Stream'] = [];
+ if (null !== $this->stream && \is_array($this->stream)) {
+ $n = 0;
+ foreach ($this->stream as $item) {
+ $res['Stream'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return streams
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Stream'])) {
+ if (!empty($map['Stream'])) {
+ $model->stream = [];
+ $n = 0;
+ foreach ($map['Stream'] as $item) {
+ $model->stream[$n++] = null !== $item ? stream::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams/stream.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams/stream.php
new file mode 100644
index 000000000..05b779bc3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams/stream.php
@@ -0,0 +1,83 @@
+ 'PullFlvUrl',
+ 'pullM3U8Url' => 'PullM3U8Url',
+ 'pullRtmpUrl' => 'PullRtmpUrl',
+ 'quality' => 'Quality',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->pullFlvUrl) {
+ $res['PullFlvUrl'] = $this->pullFlvUrl;
+ }
+ if (null !== $this->pullM3U8Url) {
+ $res['PullM3U8Url'] = $this->pullM3U8Url;
+ }
+ if (null !== $this->pullRtmpUrl) {
+ $res['PullRtmpUrl'] = $this->pullRtmpUrl;
+ }
+ if (null !== $this->quality) {
+ $res['Quality'] = $this->quality;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return stream
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['PullFlvUrl'])) {
+ $model->pullFlvUrl = $map['PullFlvUrl'];
+ }
+ if (isset($map['PullM3U8Url'])) {
+ $model->pullM3U8Url = $map['PullM3U8Url'];
+ }
+ if (isset($map['PullRtmpUrl'])) {
+ $model->pullRtmpUrl = $map['PullRtmpUrl'];
+ }
+ if (isset($map['Quality'])) {
+ $model->quality = $map['Quality'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterRequest.php
new file mode 100644
index 000000000..64ddb8c03
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterRequest.php
@@ -0,0 +1,59 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopCasterRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponse.php
new file mode 100644
index 000000000..b42d6354d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponse.php
@@ -0,0 +1,74 @@
+ '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 StopCasterResponse
+ */
+ 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 = StopCasterResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponseBody.php
new file mode 100644
index 000000000..4a5700263
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopCasterResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneRequest.php
new file mode 100644
index 000000000..f407e03da
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneRequest.php
@@ -0,0 +1,71 @@
+ 'CasterId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopCasterSceneRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponse.php
new file mode 100644
index 000000000..8d2d5eacd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponse.php
@@ -0,0 +1,74 @@
+ '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 StopCasterSceneResponse
+ */
+ 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 = StopCasterSceneResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponseBody.php
new file mode 100644
index 000000000..df16165d5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopCasterSceneResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainRequest.php
new file mode 100644
index 000000000..ee65ec593
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopLiveDomainRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponse.php
new file mode 100644
index 000000000..49323d59a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponse.php
@@ -0,0 +1,74 @@
+ '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 StopLiveDomainResponse
+ */
+ 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 = StopLiveDomainResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponseBody.php
new file mode 100644
index 000000000..b4a3fc74b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopLiveDomainResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexRequest.php
new file mode 100644
index 000000000..0688eba25
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexRequest.php
@@ -0,0 +1,95 @@
+ 'OwnerId',
+ 'domainName' => 'DomainName',
+ 'appName' => 'AppName',
+ 'streamName' => 'StreamName',
+ 'taskId' => 'TaskId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->taskId) {
+ $res['TaskId'] = $this->taskId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopLiveIndexRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['TaskId'])) {
+ $model->taskId = $map['TaskId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponse.php
new file mode 100644
index 000000000..4d9a32905
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopLiveIndexResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = StopLiveIndexResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponseBody.php
new file mode 100644
index 000000000..90b533d69
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopLiveIndexResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorRequest.php
new file mode 100644
index 000000000..472fc856a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorRequest.php
@@ -0,0 +1,59 @@
+ 'MonitorId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->monitorId) {
+ $res['MonitorId'] = $this->monitorId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopLiveStreamMonitorRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MonitorId'])) {
+ $model->monitorId = $map['MonitorId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponse.php
new file mode 100644
index 000000000..d5be7f2a8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponse.php
@@ -0,0 +1,74 @@
+ '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 StopLiveStreamMonitorResponse
+ */
+ 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 = StopLiveStreamMonitorResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponseBody.php
new file mode 100644
index 000000000..70ff6db47
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopLiveStreamMonitorResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistRequest.php
new file mode 100644
index 000000000..a434637c5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistRequest.php
@@ -0,0 +1,59 @@
+ 'OwnerId',
+ 'programId' => 'ProgramId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopPlaylistRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponse.php
new file mode 100644
index 000000000..90548de60
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponse.php
@@ -0,0 +1,74 @@
+ '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 StopPlaylistResponse
+ */
+ 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 = StopPlaylistResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponseBody.php
new file mode 100644
index 000000000..2bb4b01a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponseBody.php
@@ -0,0 +1,59 @@
+ 'ProgramId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->programId) {
+ $res['ProgramId'] = $this->programId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return StopPlaylistResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['ProgramId'])) {
+ $model->programId = $map['ProgramId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest.php
new file mode 100644
index 000000000..eef0bbbe9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest.php
@@ -0,0 +1,98 @@
+ 'OwnerId',
+ 'resourceId' => 'ResourceId',
+ 'resourceType' => 'ResourceType',
+ 'tag' => 'Tag',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceType) {
+ $res['ResourceType'] = $this->resourceType;
+ }
+ if (null !== $this->tag) {
+ $res['Tag'] = [];
+ if (null !== $this->tag && \is_array($this->tag)) {
+ $n = 0;
+ foreach ($this->tag as $item) {
+ $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return TagLiveResourcesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceId'])) {
+ if (!empty($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ }
+ if (isset($map['ResourceType'])) {
+ $model->resourceType = $map['ResourceType'];
+ }
+ if (isset($map['Tag'])) {
+ if (!empty($map['Tag'])) {
+ $model->tag = [];
+ $n = 0;
+ foreach ($map['Tag'] as $item) {
+ $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item;
+ }
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest/tag.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest/tag.php
new file mode 100644
index 000000000..900cdbd92
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest/tag.php
@@ -0,0 +1,59 @@
+ 'Key',
+ 'value' => 'Value',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->key) {
+ $res['Key'] = $this->key;
+ }
+ if (null !== $this->value) {
+ $res['Value'] = $this->value;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return tag
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Key'])) {
+ $model->key = $map['Key'];
+ }
+ if (isset($map['Value'])) {
+ $model->value = $map['Value'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponse.php
new file mode 100644
index 000000000..eea8e16a2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponse.php
@@ -0,0 +1,74 @@
+ '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 TagLiveResourcesResponse
+ */
+ 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 = TagLiveResourcesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponseBody.php
new file mode 100644
index 000000000..69af08cc8
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return TagLiveResourcesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesRequest.php
new file mode 100644
index 000000000..d62e13c23
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesRequest.php
@@ -0,0 +1,99 @@
+ 'All',
+ 'ownerId' => 'OwnerId',
+ 'resourceId' => 'ResourceId',
+ 'resourceType' => 'ResourceType',
+ 'tagKey' => 'TagKey',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->all) {
+ $res['All'] = $this->all;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->resourceId) {
+ $res['ResourceId'] = $this->resourceId;
+ }
+ if (null !== $this->resourceType) {
+ $res['ResourceType'] = $this->resourceType;
+ }
+ if (null !== $this->tagKey) {
+ $res['TagKey'] = $this->tagKey;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UnTagLiveResourcesRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['All'])) {
+ $model->all = $map['All'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['ResourceId'])) {
+ if (!empty($map['ResourceId'])) {
+ $model->resourceId = $map['ResourceId'];
+ }
+ }
+ if (isset($map['ResourceType'])) {
+ $model->resourceType = $map['ResourceType'];
+ }
+ if (isset($map['TagKey'])) {
+ if (!empty($map['TagKey'])) {
+ $model->tagKey = $map['TagKey'];
+ }
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponse.php
new file mode 100644
index 000000000..f6dc67e1c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponse.php
@@ -0,0 +1,74 @@
+ '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 UnTagLiveResourcesResponse
+ */
+ 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 = UnTagLiveResourcesResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponseBody.php
new file mode 100644
index 000000000..e833c9953
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UnTagLiveResourcesResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackRequest.php
new file mode 100644
index 000000000..bb6c73211
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackRequest.php
@@ -0,0 +1,119 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'authKey' => 'AuthKey',
+ 'authSwitch' => 'AuthSwitch',
+ 'callbackEnable' => 'CallbackEnable',
+ 'callbackUri' => 'CallbackUri',
+ 'callbackEvents' => 'CallbackEvents',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->authKey) {
+ $res['AuthKey'] = $this->authKey;
+ }
+ if (null !== $this->authSwitch) {
+ $res['AuthSwitch'] = $this->authSwitch;
+ }
+ if (null !== $this->callbackEnable) {
+ $res['CallbackEnable'] = $this->callbackEnable;
+ }
+ if (null !== $this->callbackUri) {
+ $res['CallbackUri'] = $this->callbackUri;
+ }
+ if (null !== $this->callbackEvents) {
+ $res['CallbackEvents'] = $this->callbackEvents;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateBoardCallbackRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AuthKey'])) {
+ $model->authKey = $map['AuthKey'];
+ }
+ if (isset($map['AuthSwitch'])) {
+ $model->authSwitch = $map['AuthSwitch'];
+ }
+ if (isset($map['CallbackEnable'])) {
+ $model->callbackEnable = $map['CallbackEnable'];
+ }
+ if (isset($map['CallbackUri'])) {
+ $model->callbackUri = $map['CallbackUri'];
+ }
+ if (isset($map['CallbackEvents'])) {
+ $model->callbackEvents = $map['CallbackEvents'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponse.php
new file mode 100644
index 000000000..ae71184ac
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateBoardCallbackResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = UpdateBoardCallbackResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponseBody.php
new file mode 100644
index 000000000..9479cb13c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateBoardCallbackResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardRequest.php
new file mode 100644
index 000000000..309b62ec4
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardRequest.php
@@ -0,0 +1,71 @@
+ 'OwnerId',
+ 'appId' => 'AppId',
+ 'boardData' => 'BoardData',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->boardData) {
+ $res['BoardData'] = $this->boardData;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateBoardRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['BoardData'])) {
+ $model->boardData = $map['BoardData'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponse.php
new file mode 100644
index 000000000..274cbc448
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateBoardResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = UpdateBoardResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponseBody.php
new file mode 100644
index 000000000..7758b011a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateBoardResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest.php
new file mode 100644
index 000000000..cf1c95f10
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest.php
@@ -0,0 +1,122 @@
+ 'AudioLayer',
+ 'casterId' => 'CasterId',
+ 'followEnable' => 'FollowEnable',
+ 'mixList' => 'MixList',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->audioLayer) {
+ $res['AudioLayer'] = [];
+ if (null !== $this->audioLayer && \is_array($this->audioLayer)) {
+ $n = 0;
+ foreach ($this->audioLayer as $item) {
+ $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->followEnable) {
+ $res['FollowEnable'] = $this->followEnable;
+ }
+ if (null !== $this->mixList) {
+ $res['MixList'] = $this->mixList;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateCasterSceneAudioRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AudioLayer'])) {
+ if (!empty($map['AudioLayer'])) {
+ $model->audioLayer = [];
+ $n = 0;
+ foreach ($map['AudioLayer'] as $item) {
+ $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item;
+ }
+ }
+ }
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['FollowEnable'])) {
+ $model->followEnable = $map['FollowEnable'];
+ }
+ if (isset($map['MixList'])) {
+ if (!empty($map['MixList'])) {
+ $model->mixList = $map['MixList'];
+ }
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest/audioLayer.php
new file mode 100644
index 000000000..4c33ec792
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest/audioLayer.php
@@ -0,0 +1,71 @@
+ 'FixedDelayDuration',
+ 'validChannel' => 'ValidChannel',
+ 'volumeRate' => 'VolumeRate',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->fixedDelayDuration) {
+ $res['FixedDelayDuration'] = $this->fixedDelayDuration;
+ }
+ if (null !== $this->validChannel) {
+ $res['ValidChannel'] = $this->validChannel;
+ }
+ if (null !== $this->volumeRate) {
+ $res['VolumeRate'] = $this->volumeRate;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return audioLayer
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['FixedDelayDuration'])) {
+ $model->fixedDelayDuration = $map['FixedDelayDuration'];
+ }
+ if (isset($map['ValidChannel'])) {
+ $model->validChannel = $map['ValidChannel'];
+ }
+ if (isset($map['VolumeRate'])) {
+ $model->volumeRate = $map['VolumeRate'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponse.php
new file mode 100644
index 000000000..bf915d331
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateCasterSceneAudioResponse
+ */
+ 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 = UpdateCasterSceneAudioResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponseBody.php
new file mode 100644
index 000000000..7e4b1ecd9
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateCasterSceneAudioResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigRequest.php
new file mode 100644
index 000000000..844d61b13
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigRequest.php
@@ -0,0 +1,97 @@
+ 'CasterId',
+ 'componentId' => 'ComponentId',
+ 'layoutId' => 'LayoutId',
+ 'ownerId' => 'OwnerId',
+ 'sceneId' => 'SceneId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->casterId) {
+ $res['CasterId'] = $this->casterId;
+ }
+ if (null !== $this->componentId) {
+ $res['ComponentId'] = $this->componentId;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sceneId) {
+ $res['SceneId'] = $this->sceneId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateCasterSceneConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['CasterId'])) {
+ $model->casterId = $map['CasterId'];
+ }
+ if (isset($map['ComponentId'])) {
+ if (!empty($map['ComponentId'])) {
+ $model->componentId = $map['ComponentId'];
+ }
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SceneId'])) {
+ $model->sceneId = $map['SceneId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponse.php
new file mode 100644
index 000000000..1529d94fb
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateCasterSceneConfigResponse
+ */
+ 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 = UpdateCasterSceneConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponseBody.php
new file mode 100644
index 000000000..db0abbd9b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateCasterSceneConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigRequest.php
new file mode 100644
index 000000000..213d32ed3
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigRequest.php
@@ -0,0 +1,131 @@
+ 'OwnerId',
+ 'domainName' => 'DomainName',
+ 'appName' => 'AppName',
+ 'streamName' => 'StreamName',
+ 'mnsTopic' => 'MnsTopic',
+ 'mnsRegion' => 'MnsRegion',
+ 'period' => 'Period',
+ 'httpCallbackURL' => 'HttpCallbackURL',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+ if (null !== $this->mnsTopic) {
+ $res['MnsTopic'] = $this->mnsTopic;
+ }
+ if (null !== $this->mnsRegion) {
+ $res['MnsRegion'] = $this->mnsRegion;
+ }
+ if (null !== $this->period) {
+ $res['Period'] = $this->period;
+ }
+ if (null !== $this->httpCallbackURL) {
+ $res['HttpCallbackURL'] = $this->httpCallbackURL;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveASRConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+ if (isset($map['MnsTopic'])) {
+ $model->mnsTopic = $map['MnsTopic'];
+ }
+ if (isset($map['MnsRegion'])) {
+ $model->mnsRegion = $map['MnsRegion'];
+ }
+ if (isset($map['Period'])) {
+ $model->period = $map['Period'];
+ }
+ if (isset($map['HttpCallbackURL'])) {
+ $model->httpCallbackURL = $map['HttpCallbackURL'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponse.php
new file mode 100644
index 000000000..db0dab8ab
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponse.php
@@ -0,0 +1,61 @@
+ 'headers',
+ 'body' => 'body',
+ ];
+
+ public function validate()
+ {
+ Model::validateRequired('headers', $this->headers, true);
+ Model::validateRequired('body', $this->body, true);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->headers) {
+ $res['headers'] = $this->headers;
+ }
+ if (null !== $this->body) {
+ $res['body'] = null !== $this->body ? $this->body->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveASRConfigResponse
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['headers'])) {
+ $model->headers = $map['headers'];
+ }
+ if (isset($map['body'])) {
+ $model->body = UpdateLiveASRConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponseBody.php
new file mode 100644
index 000000000..c050f28dc
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveASRConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigRequest.php
new file mode 100644
index 000000000..5d5b1036c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigRequest.php
@@ -0,0 +1,155 @@
+ 'AppName',
+ 'callback' => 'Callback',
+ 'domainName' => 'DomainName',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'overwriteOssObject' => 'OverwriteOssObject',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ 'sequenceOssObject' => 'SequenceOssObject',
+ 'timeInterval' => 'TimeInterval',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->callback) {
+ $res['Callback'] = $this->callback;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->overwriteOssObject) {
+ $res['OverwriteOssObject'] = $this->overwriteOssObject;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->sequenceOssObject) {
+ $res['SequenceOssObject'] = $this->sequenceOssObject;
+ }
+ if (null !== $this->timeInterval) {
+ $res['TimeInterval'] = $this->timeInterval;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveAppSnapshotConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Callback'])) {
+ $model->callback = $map['Callback'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OverwriteOssObject'])) {
+ $model->overwriteOssObject = $map['OverwriteOssObject'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['SequenceOssObject'])) {
+ $model->sequenceOssObject = $map['SequenceOssObject'];
+ }
+ if (isset($map['TimeInterval'])) {
+ $model->timeInterval = $map['TimeInterval'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponse.php
new file mode 100644
index 000000000..a0fe5b2f1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveAppSnapshotConfigResponse
+ */
+ 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 = UpdateLiveAppSnapshotConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponseBody.php
new file mode 100644
index 000000000..455d3f052
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveAppSnapshotConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigRequest.php
new file mode 100644
index 000000000..242af771e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigRequest.php
@@ -0,0 +1,131 @@
+ 'AppName',
+ 'bizType' => 'BizType',
+ 'domainName' => 'DomainName',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'ownerId' => 'OwnerId',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->bizType) {
+ $res['BizType'] = $this->bizType;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveAudioAuditConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['BizType'])) {
+ $model->bizType = $map['BizType'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponse.php
new file mode 100644
index 000000000..7dfcebf0c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveAudioAuditConfigResponse
+ */
+ 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 = UpdateLiveAudioAuditConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponseBody.php
new file mode 100644
index 000000000..2683a1147
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveAudioAuditConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigRequest.php
new file mode 100644
index 000000000..fc7771e05
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigRequest.php
@@ -0,0 +1,83 @@
+ 'Callback',
+ 'callbackTemplate' => 'CallbackTemplate',
+ 'domainName' => 'DomainName',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->callback) {
+ $res['Callback'] = $this->callback;
+ }
+ if (null !== $this->callbackTemplate) {
+ $res['CallbackTemplate'] = $this->callbackTemplate;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveAudioAuditNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Callback'])) {
+ $model->callback = $map['Callback'];
+ }
+ if (isset($map['CallbackTemplate'])) {
+ $model->callbackTemplate = $map['CallbackTemplate'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponse.php
new file mode 100644
index 000000000..3e00bf40b
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveAudioAuditNotifyConfigResponse
+ */
+ 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 = UpdateLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponseBody.php
new file mode 100644
index 000000000..a4ae1fe8c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveAudioAuditNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigRequest.php
new file mode 100644
index 000000000..9375206a1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigRequest.php
@@ -0,0 +1,83 @@
+ 'DomainName',
+ 'notifyUrl' => 'NotifyUrl',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveDetectNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponse.php
new file mode 100644
index 000000000..f42ec1dda
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveDetectNotifyConfigResponse
+ */
+ 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 = UpdateLiveDetectNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponseBody.php
new file mode 100644
index 000000000..9de62387d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveDetectNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigRequest.php
new file mode 100644
index 000000000..a9f2cb88a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigRequest.php
@@ -0,0 +1,119 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'endTime' => 'EndTime',
+ 'ownerId' => 'OwnerId',
+ 'sourceUrl' => 'SourceUrl',
+ 'startTime' => 'StartTime',
+ 'streamName' => 'StreamName',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->endTime) {
+ $res['EndTime'] = $this->endTime;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->sourceUrl) {
+ $res['SourceUrl'] = $this->sourceUrl;
+ }
+ if (null !== $this->startTime) {
+ $res['StartTime'] = $this->startTime;
+ }
+ if (null !== $this->streamName) {
+ $res['StreamName'] = $this->streamName;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLivePullStreamInfoConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['EndTime'])) {
+ $model->endTime = $map['EndTime'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SourceUrl'])) {
+ $model->sourceUrl = $map['SourceUrl'];
+ }
+ if (isset($map['StartTime'])) {
+ $model->startTime = $map['StartTime'];
+ }
+ if (isset($map['StreamName'])) {
+ $model->streamName = $map['StreamName'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponse.php
new file mode 100644
index 000000000..55e7ee1b6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLivePullStreamInfoConfigResponse
+ */
+ 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 = UpdateLivePullStreamInfoConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponseBody.php
new file mode 100644
index 000000000..1ded7409a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLivePullStreamInfoConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigRequest.php
new file mode 100644
index 000000000..ae2a16d60
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigRequest.php
@@ -0,0 +1,107 @@
+ 'DomainName',
+ 'needStatusNotify' => 'NeedStatusNotify',
+ 'notifyUrl' => 'NotifyUrl',
+ 'onDemandUrl' => 'OnDemandUrl',
+ 'ownerId' => 'OwnerId',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->needStatusNotify) {
+ $res['NeedStatusNotify'] = $this->needStatusNotify;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->onDemandUrl) {
+ $res['OnDemandUrl'] = $this->onDemandUrl;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveRecordNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NeedStatusNotify'])) {
+ $model->needStatusNotify = $map['NeedStatusNotify'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OnDemandUrl'])) {
+ $model->onDemandUrl = $map['OnDemandUrl'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponse.php
new file mode 100644
index 000000000..57c7a4318
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveRecordNotifyConfigResponse
+ */
+ 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 = UpdateLiveRecordNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponseBody.php
new file mode 100644
index 000000000..4b022a9de
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveRecordNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigRequest.php
new file mode 100644
index 000000000..39fbf21c0
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigRequest.php
@@ -0,0 +1,145 @@
+ 'AppName',
+ 'domainName' => 'DomainName',
+ 'interval' => 'Interval',
+ 'ossBucket' => 'OssBucket',
+ 'ossEndpoint' => 'OssEndpoint',
+ 'ossObject' => 'OssObject',
+ 'ownerId' => 'OwnerId',
+ 'scene' => 'Scene',
+ 'securityToken' => 'SecurityToken',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->interval) {
+ $res['Interval'] = $this->interval;
+ }
+ if (null !== $this->ossBucket) {
+ $res['OssBucket'] = $this->ossBucket;
+ }
+ if (null !== $this->ossEndpoint) {
+ $res['OssEndpoint'] = $this->ossEndpoint;
+ }
+ if (null !== $this->ossObject) {
+ $res['OssObject'] = $this->ossObject;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->scene) {
+ $res['Scene'] = $this->scene;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveSnapshotDetectPornConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['Interval'])) {
+ $model->interval = $map['Interval'];
+ }
+ if (isset($map['OssBucket'])) {
+ $model->ossBucket = $map['OssBucket'];
+ }
+ if (isset($map['OssEndpoint'])) {
+ $model->ossEndpoint = $map['OssEndpoint'];
+ }
+ if (isset($map['OssObject'])) {
+ $model->ossObject = $map['OssObject'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Scene'])) {
+ if (!empty($map['Scene'])) {
+ $model->scene = $map['Scene'];
+ }
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponse.php
new file mode 100644
index 000000000..4f4365809
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveSnapshotDetectPornConfigResponse
+ */
+ 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 = UpdateLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponseBody.php
new file mode 100644
index 000000000..5b83d679e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveSnapshotDetectPornConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigRequest.php
new file mode 100644
index 000000000..e02dd992f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'notifyAuthKey' => 'NotifyAuthKey',
+ 'notifyReqAuth' => 'NotifyReqAuth',
+ 'notifyUrl' => 'NotifyUrl',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->notifyAuthKey) {
+ $res['NotifyAuthKey'] = $this->notifyAuthKey;
+ }
+ if (null !== $this->notifyReqAuth) {
+ $res['NotifyReqAuth'] = $this->notifyReqAuth;
+ }
+ if (null !== $this->notifyUrl) {
+ $res['NotifyUrl'] = $this->notifyUrl;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveSnapshotNotifyConfigRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['NotifyAuthKey'])) {
+ $model->notifyAuthKey = $map['NotifyAuthKey'];
+ }
+ if (isset($map['NotifyReqAuth'])) {
+ $model->notifyReqAuth = $map['NotifyReqAuth'];
+ }
+ if (isset($map['NotifyUrl'])) {
+ $model->notifyUrl = $map['NotifyUrl'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponse.php
new file mode 100644
index 000000000..b45a72d27
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveSnapshotNotifyConfigResponse
+ */
+ 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 = UpdateLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponseBody.php
new file mode 100644
index 000000000..2a99e7230
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveSnapshotNotifyConfigResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorRequest.php
new file mode 100644
index 000000000..ba7cbc126
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorRequest.php
@@ -0,0 +1,131 @@
+ 'App',
+ 'domain' => 'Domain',
+ 'inputList' => 'InputList',
+ 'monitorId' => 'MonitorId',
+ 'monitorName' => 'MonitorName',
+ 'outputTemplate' => 'OutputTemplate',
+ 'ownerId' => 'OwnerId',
+ 'stream' => 'Stream',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->app) {
+ $res['App'] = $this->app;
+ }
+ if (null !== $this->domain) {
+ $res['Domain'] = $this->domain;
+ }
+ if (null !== $this->inputList) {
+ $res['InputList'] = $this->inputList;
+ }
+ if (null !== $this->monitorId) {
+ $res['MonitorId'] = $this->monitorId;
+ }
+ if (null !== $this->monitorName) {
+ $res['MonitorName'] = $this->monitorName;
+ }
+ if (null !== $this->outputTemplate) {
+ $res['OutputTemplate'] = $this->outputTemplate;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->stream) {
+ $res['Stream'] = $this->stream;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveStreamMonitorRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['App'])) {
+ $model->app = $map['App'];
+ }
+ if (isset($map['Domain'])) {
+ $model->domain = $map['Domain'];
+ }
+ if (isset($map['InputList'])) {
+ $model->inputList = $map['InputList'];
+ }
+ if (isset($map['MonitorId'])) {
+ $model->monitorId = $map['MonitorId'];
+ }
+ if (isset($map['MonitorName'])) {
+ $model->monitorName = $map['MonitorName'];
+ }
+ if (isset($map['OutputTemplate'])) {
+ $model->outputTemplate = $map['OutputTemplate'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['Stream'])) {
+ $model->stream = $map['Stream'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponse.php
new file mode 100644
index 000000000..20093f3ab
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveStreamMonitorResponse
+ */
+ 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 = UpdateLiveStreamMonitorResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponseBody.php
new file mode 100644
index 000000000..6c9197496
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveStreamMonitorResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRequest.php
new file mode 100644
index 000000000..c5f54b5e5
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRequest.php
@@ -0,0 +1,179 @@
+ 'Description',
+ 'height' => 'Height',
+ 'name' => 'Name',
+ 'offsetCorner' => 'OffsetCorner',
+ 'ownerId' => 'OwnerId',
+ 'pictureUrl' => 'PictureUrl',
+ 'refHeight' => 'RefHeight',
+ 'refWidth' => 'RefWidth',
+ 'templateId' => 'TemplateId',
+ 'transparency' => 'Transparency',
+ 'XOffset' => 'XOffset',
+ 'YOffset' => 'YOffset',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->height) {
+ $res['Height'] = $this->height;
+ }
+ if (null !== $this->name) {
+ $res['Name'] = $this->name;
+ }
+ if (null !== $this->offsetCorner) {
+ $res['OffsetCorner'] = $this->offsetCorner;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->pictureUrl) {
+ $res['PictureUrl'] = $this->pictureUrl;
+ }
+ if (null !== $this->refHeight) {
+ $res['RefHeight'] = $this->refHeight;
+ }
+ if (null !== $this->refWidth) {
+ $res['RefWidth'] = $this->refWidth;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+ if (null !== $this->transparency) {
+ $res['Transparency'] = $this->transparency;
+ }
+ if (null !== $this->XOffset) {
+ $res['XOffset'] = $this->XOffset;
+ }
+ if (null !== $this->YOffset) {
+ $res['YOffset'] = $this->YOffset;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveStreamWatermarkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['Height'])) {
+ $model->height = $map['Height'];
+ }
+ if (isset($map['Name'])) {
+ $model->name = $map['Name'];
+ }
+ if (isset($map['OffsetCorner'])) {
+ $model->offsetCorner = $map['OffsetCorner'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['PictureUrl'])) {
+ $model->pictureUrl = $map['PictureUrl'];
+ }
+ if (isset($map['RefHeight'])) {
+ $model->refHeight = $map['RefHeight'];
+ }
+ if (isset($map['RefWidth'])) {
+ $model->refWidth = $map['RefWidth'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+ if (isset($map['Transparency'])) {
+ $model->transparency = $map['Transparency'];
+ }
+ if (isset($map['XOffset'])) {
+ $model->XOffset = $map['XOffset'];
+ }
+ if (isset($map['YOffset'])) {
+ $model->YOffset = $map['YOffset'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponse.php
new file mode 100644
index 000000000..648de3e03
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveStreamWatermarkResponse
+ */
+ 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 = UpdateLiveStreamWatermarkResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponseBody.php
new file mode 100644
index 000000000..060a101b6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveStreamWatermarkResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleRequest.php
new file mode 100644
index 000000000..d9dea42a1
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleRequest.php
@@ -0,0 +1,95 @@
+ 'Description',
+ 'name' => 'Name',
+ 'ownerId' => 'OwnerId',
+ 'ruleId' => 'RuleId',
+ 'templateId' => 'TemplateId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->description) {
+ $res['Description'] = $this->description;
+ }
+ if (null !== $this->name) {
+ $res['Name'] = $this->name;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->ruleId) {
+ $res['RuleId'] = $this->ruleId;
+ }
+ if (null !== $this->templateId) {
+ $res['TemplateId'] = $this->templateId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveStreamWatermarkRuleRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Description'])) {
+ $model->description = $map['Description'];
+ }
+ if (isset($map['Name'])) {
+ $model->name = $map['Name'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['RuleId'])) {
+ $model->ruleId = $map['RuleId'];
+ }
+ if (isset($map['TemplateId'])) {
+ $model->templateId = $map['TemplateId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponse.php
new file mode 100644
index 000000000..22a30425a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveStreamWatermarkRuleResponse
+ */
+ 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 = UpdateLiveStreamWatermarkRuleResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponseBody.php
new file mode 100644
index 000000000..04ac10a9d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveStreamWatermarkRuleResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainRequest.php
new file mode 100644
index 000000000..e723601bf
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'securityToken' => 'SecurityToken',
+ 'topLevelDomain' => 'TopLevelDomain',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->securityToken) {
+ $res['SecurityToken'] = $this->securityToken;
+ }
+ if (null !== $this->topLevelDomain) {
+ $res['TopLevelDomain'] = $this->topLevelDomain;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveTopLevelDomainRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['SecurityToken'])) {
+ $model->securityToken = $map['SecurityToken'];
+ }
+ if (isset($map['TopLevelDomain'])) {
+ $model->topLevelDomain = $map['TopLevelDomain'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponse.php
new file mode 100644
index 000000000..283fa4c1f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateLiveTopLevelDomainResponse
+ */
+ 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 = UpdateLiveTopLevelDomainResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponseBody.php
new file mode 100644
index 000000000..fc0ef0513
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponseBody.php
@@ -0,0 +1,47 @@
+ 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateLiveTopLevelDomainResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppRequest.php
new file mode 100644
index 000000000..7eed6738d
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppRequest.php
@@ -0,0 +1,83 @@
+ 'AppConfig',
+ 'appId' => 'AppId',
+ 'appName' => 'AppName',
+ 'extension' => 'Extension',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appConfig) {
+ $res['AppConfig'] = $this->appConfig;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMessageAppRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppConfig'])) {
+ $model->appConfig = $map['AppConfig'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponse.php
new file mode 100644
index 000000000..03dc22d90
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateMessageAppResponse
+ */
+ 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 = UpdateMessageAppResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody.php
new file mode 100644
index 000000000..732a7c9dd
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMessageAppResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody/result.php
new file mode 100644
index 000000000..97ffe6dff
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'Success',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->success) {
+ $res['Success'] = $this->success;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Success'])) {
+ $model->success = $map['Success'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppShrinkRequest.php
new file mode 100644
index 000000000..53818f723
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppShrinkRequest.php
@@ -0,0 +1,83 @@
+ 'AppConfig',
+ 'appId' => 'AppId',
+ 'appName' => 'AppName',
+ 'extensionShrink' => 'Extension',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appConfigShrink) {
+ $res['AppConfig'] = $this->appConfigShrink;
+ }
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->appName) {
+ $res['AppName'] = $this->appName;
+ }
+ if (null !== $this->extensionShrink) {
+ $res['Extension'] = $this->extensionShrink;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMessageAppShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppConfig'])) {
+ $model->appConfigShrink = $map['AppConfig'];
+ }
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['AppName'])) {
+ $model->appName = $map['AppName'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extensionShrink = $map['Extension'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupRequest.php
new file mode 100644
index 000000000..8b121a63e
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'extension' => 'Extension',
+ 'groupId' => 'GroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->extension) {
+ $res['Extension'] = $this->extension;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMessageGroupRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extension = $map['Extension'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponse.php
new file mode 100644
index 000000000..90c28143a
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateMessageGroupResponse
+ */
+ 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 = UpdateMessageGroupResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody.php
new file mode 100644
index 000000000..2e8189f5f
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody.php
@@ -0,0 +1,60 @@
+ 'RequestId',
+ 'result' => 'Result',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+ if (null !== $this->result) {
+ $res['Result'] = null !== $this->result ? $this->result->toMap() : null;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMessageGroupResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+ if (isset($map['Result'])) {
+ $model->result = result::fromMap($map['Result']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody/result.php
new file mode 100644
index 000000000..9343a5734
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody/result.php
@@ -0,0 +1,47 @@
+ 'Success',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->success) {
+ $res['Success'] = $this->success;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return result
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Success'])) {
+ $model->success = $map['Success'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupShrinkRequest.php
new file mode 100644
index 000000000..41c113a6c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupShrinkRequest.php
@@ -0,0 +1,71 @@
+ 'AppId',
+ 'extensionShrink' => 'Extension',
+ 'groupId' => 'GroupId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->appId) {
+ $res['AppId'] = $this->appId;
+ }
+ if (null !== $this->extensionShrink) {
+ $res['Extension'] = $this->extensionShrink;
+ }
+ if (null !== $this->groupId) {
+ $res['GroupId'] = $this->groupId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMessageGroupShrinkRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['AppId'])) {
+ $model->appId = $map['AppId'];
+ }
+ if (isset($map['Extension'])) {
+ $model->extensionShrink = $map['Extension'];
+ }
+ if (isset($map['GroupId'])) {
+ $model->groupId = $map['GroupId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamRequest.php
new file mode 100644
index 000000000..afa6a74b2
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamRequest.php
@@ -0,0 +1,95 @@
+ 'DomainName',
+ 'inputStreamList' => 'InputStreamList',
+ 'layoutId' => 'LayoutId',
+ 'mixStreamId' => 'MixStreamId',
+ 'ownerId' => 'OwnerId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->inputStreamList) {
+ $res['InputStreamList'] = $this->inputStreamList;
+ }
+ if (null !== $this->layoutId) {
+ $res['LayoutId'] = $this->layoutId;
+ }
+ if (null !== $this->mixStreamId) {
+ $res['MixStreamId'] = $this->mixStreamId;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMixStreamRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['InputStreamList'])) {
+ $model->inputStreamList = $map['InputStreamList'];
+ }
+ if (isset($map['LayoutId'])) {
+ $model->layoutId = $map['LayoutId'];
+ }
+ if (isset($map['MixStreamId'])) {
+ $model->mixStreamId = $map['MixStreamId'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponse.php
new file mode 100644
index 000000000..8173a60a6
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponse.php
@@ -0,0 +1,74 @@
+ '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 UpdateMixStreamResponse
+ */
+ 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 = UpdateMixStreamResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponseBody.php
new file mode 100644
index 000000000..c9312df38
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponseBody.php
@@ -0,0 +1,59 @@
+ 'MixStreamId',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->mixStreamId) {
+ $res['MixStreamId'] = $this->mixStreamId;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return UpdateMixStreamResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['MixStreamId'])) {
+ $model->mixStreamId = $map['MixStreamId'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerRequest.php b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerRequest.php
new file mode 100644
index 000000000..70aaebd20
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerRequest.php
@@ -0,0 +1,71 @@
+ 'DomainName',
+ 'ownerId' => 'OwnerId',
+ 'verifyType' => 'VerifyType',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->domainName) {
+ $res['DomainName'] = $this->domainName;
+ }
+ if (null !== $this->ownerId) {
+ $res['OwnerId'] = $this->ownerId;
+ }
+ if (null !== $this->verifyType) {
+ $res['VerifyType'] = $this->verifyType;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return VerifyLiveDomainOwnerRequest
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['DomainName'])) {
+ $model->domainName = $map['DomainName'];
+ }
+ if (isset($map['OwnerId'])) {
+ $model->ownerId = $map['OwnerId'];
+ }
+ if (isset($map['VerifyType'])) {
+ $model->verifyType = $map['VerifyType'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponse.php b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponse.php
new file mode 100644
index 000000000..232490c8c
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponse.php
@@ -0,0 +1,74 @@
+ '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 VerifyLiveDomainOwnerResponse
+ */
+ 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 = VerifyLiveDomainOwnerResponseBody::fromMap($map['body']);
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponseBody.php
new file mode 100644
index 000000000..1f3a8d971
--- /dev/null
+++ b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponseBody.php
@@ -0,0 +1,59 @@
+ 'Content',
+ 'requestId' => 'RequestId',
+ ];
+
+ public function validate()
+ {
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->content) {
+ $res['Content'] = $this->content;
+ }
+ if (null !== $this->requestId) {
+ $res['RequestId'] = $this->requestId;
+ }
+
+ return $res;
+ }
+
+ /**
+ * @param array $map
+ *
+ * @return VerifyLiveDomainOwnerResponseBody
+ */
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['Content'])) {
+ $model->content = $map['Content'];
+ }
+ if (isset($map['RequestId'])) {
+ $model->requestId = $map['RequestId'];
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/live/Live.php b/vendor/alibabacloud/live/Live.php
new file mode 100644
index 000000000..1c6940c21
--- /dev/null
+++ b/vendor/alibabacloud/live/Live.php
@@ -0,0 +1,12 @@
+
+
+
+
+Alibaba Cloud Live SDK for PHP
+
+If [Alibaba Cloud SDK for PHP][sdk] is installed, there is no need to install the product dependency package. This product dependency package is only part of the synchronization from [Alibaba Cloud SDK for PHP][sdk], and its namespace and usage are consistent with [Alibaba Cloud SDK for PHP][sdk].
+
+If you don't care about file size, we recommend that you install [Alibaba Cloud SDK for PHP][sdk] and update it regularly so as to maintain the latest and most complete product support:
+```
+composer require alibabacloud/sdk
+```
+
+The product can also be installed only:
+> The version of this product is always synchronized with [Alibaba Cloud SDK for PHP][sdk] to ensure that it can switch with [Alibaba Cloud SDK for PHP][sdk] at any time without changing the business code, although the code between different versions of this product may not change.
+```
+composer require alibabacloud/live
+```
+
+***
+Refer to document [Alibaba Cloud SDK for PHP][sdk] for more SDK usage.
+
+[sdk]: https://github.com/aliyun/openapi-sdk-php
diff --git a/vendor/alibabacloud/live/README.md b/vendor/alibabacloud/live/README.md
new file mode 100644
index 000000000..3c11e6703
--- /dev/null
+++ b/vendor/alibabacloud/live/README.md
@@ -0,0 +1,25 @@
+简体中文 | [English](./README-EN.md)
+
+
+
+
+
+Alibaba Cloud Live SDK for PHP
+
+若已安装 [Alibaba Cloud SDK for PHP][sdk] 则无需安装本产品依赖包。本产品依赖包只是从 [Alibaba Cloud SDK for PHP][sdk] 中同步出来的一部分,其命名空间、用法与 [Alibaba Cloud SDK for PHP][sdk] 一致。
+
+如果您不在乎文件体积,建议您安装 [Alibaba Cloud SDK for PHP][sdk] 并经常更新,以便保持最新、最全的产品支持:
+```
+composer require alibabacloud/sdk
+```
+
+也可仅安装本产品:
+> 本产品的版本始终和 [Alibaba Cloud SDK for PHP][sdk] 保持同步,以保证在不改变业务代码的情况下随时和 [Alibaba Cloud SDK for PHP][sdk] 相互切换,尽管本产品不同版本之间的代码可能没有变化。
+```
+composer require alibabacloud/live
+```
+
+***
+更多 SDK 的使用请参考 [Alibaba Cloud SDK for PHP][sdk] 文档。
+
+[sdk]: https://github.com/aliyun/openapi-sdk-php
diff --git a/vendor/alibabacloud/live/V20161101/Live.php b/vendor/alibabacloud/live/V20161101/Live.php
new file mode 100644
index 000000000..449ec248e
--- /dev/null
+++ b/vendor/alibabacloud/live/V20161101/Live.php
@@ -0,0 +1,12 @@
+data['ComponentId'] = $componentId;
+ foreach ($componentId as $i => $iValue) {
+ $this->options['query']['ComponentId.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getClientToken()
+ * @method $this withClientToken($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getSideOutputUrl()
+ * @method $this withSideOutputUrl($value)
+ * @method array getItem()
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRepeatNum()
+ * @method $this withRepeatNum($value)
+ * @method string getCallbackUrl()
+ * @method $this withCallbackUrl($value)
+ */
+class AddCasterEpisodeGroup extends Rpc
+{
+
+ /**
+ * @param array $item
+ *
+ * @return $this
+ */
+ public function withItem(array $item)
+ {
+ $this->data['Item'] = $item;
+ foreach ($item as $depth1 => $depth1Value) {
+ if(isset($depth1Value['ItemName'])){
+ $this->options['query']['Item.' . ($depth1 + 1) . '.ItemName'] = $depth1Value['ItemName'];
+ }
+ if(isset($depth1Value['VodUrl'])){
+ $this->options['query']['Item.' . ($depth1 + 1) . '.VodUrl'] = $depth1Value['VodUrl'];
+ }
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getClientToken()
+ * @method $this withClientToken($value)
+ * @method string getContent()
+ * @method $this withContent($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class AddCasterEpisodeGroupContent extends Rpc
+{
+}
+
+/**
+ * @method array getBlendList()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method array getAudioLayer()
+ * @method array getVideoLayer()
+ * @method array getMixList()
+ */
+class AddCasterLayout extends Rpc
+{
+
+ /**
+ * @param array $blendList
+ *
+ * @return $this
+ */
+ public function withBlendList(array $blendList)
+ {
+ $this->data['BlendList'] = $blendList;
+ foreach ($blendList as $i => $iValue) {
+ $this->options['query']['BlendList.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $audioLayer
+ *
+ * @return $this
+ */
+ public function withAudioLayer(array $audioLayer)
+ {
+ $this->data['AudioLayer'] = $audioLayer;
+ foreach ($audioLayer as $depth1 => $depth1Value) {
+ if(isset($depth1Value['VolumeRate'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.VolumeRate'] = $depth1Value['VolumeRate'];
+ }
+ if(isset($depth1Value['ValidChannel'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.ValidChannel'] = $depth1Value['ValidChannel'];
+ }
+ if(isset($depth1Value['FixedDelayDuration'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration'];
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $videoLayer
+ *
+ * @return $this
+ */
+ public function withVideoLayer(array $videoLayer)
+ {
+ $this->data['VideoLayer'] = $videoLayer;
+ foreach ($videoLayer as $depth1 => $depth1Value) {
+ if(isset($depth1Value['FillMode'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FillMode'] = $depth1Value['FillMode'];
+ }
+ if(isset($depth1Value['HeightNormalized'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.HeightNormalized'] = $depth1Value['HeightNormalized'];
+ }
+ if(isset($depth1Value['WidthNormalized'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.WidthNormalized'] = $depth1Value['WidthNormalized'];
+ }
+ if(isset($depth1Value['PositionRefer'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionRefer'] = $depth1Value['PositionRefer'];
+ }
+ foreach ($depth1Value['PositionNormalized'] as $i => $iValue) {
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionNormalized.' . ($i + 1)] = $iValue;
+ }
+ if(isset($depth1Value['FixedDelayDuration'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration'];
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $mixList
+ *
+ * @return $this
+ */
+ public function withMixList(array $mixList)
+ {
+ $this->data['MixList'] = $mixList;
+ foreach ($mixList as $i => $iValue) {
+ $this->options['query']['MixList.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method array getEpisode()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class AddCasterProgram extends Rpc
+{
+
+ /**
+ * @param array $episode
+ *
+ * @return $this
+ */
+ public function withEpisode(array $episode)
+ {
+ $this->data['Episode'] = $episode;
+ foreach ($episode as $depth1 => $depth1Value) {
+ if(isset($depth1Value['EpisodeType'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeType'] = $depth1Value['EpisodeType'];
+ }
+ if(isset($depth1Value['EpisodeName'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeName'] = $depth1Value['EpisodeName'];
+ }
+ if(isset($depth1Value['ResourceId'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.ResourceId'] = $depth1Value['ResourceId'];
+ }
+ foreach ($depth1Value['ComponentId'] as $i => $iValue) {
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.ComponentId.' . ($i + 1)] = $iValue;
+ }
+ if(isset($depth1Value['StartTime'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.StartTime'] = $depth1Value['StartTime'];
+ }
+ if(isset($depth1Value['EndTime'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.EndTime'] = $depth1Value['EndTime'];
+ }
+ if(isset($depth1Value['SwitchType'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.SwitchType'] = $depth1Value['SwitchType'];
+ }
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getEndOffset()
+ * @method $this withEndOffset($value)
+ * @method string getMaterialId()
+ * @method $this withMaterialId($value)
+ * @method string getVodUrl()
+ * @method $this withVodUrl($value)
+ * @method string getStreamId()
+ * @method $this withStreamId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getBeginOffset()
+ * @method $this withBeginOffset($value)
+ * @method string getLiveStreamUrl()
+ * @method $this withLiveStreamUrl($value)
+ * @method string getLocationId()
+ * @method $this withLocationId($value)
+ * @method string getPtsCallbackInterval()
+ * @method $this withPtsCallbackInterval($value)
+ * @method string getResourceName()
+ * @method $this withResourceName($value)
+ * @method string getRepeatNum()
+ * @method $this withRepeatNum($value)
+ */
+class AddCasterVideoResource extends Rpc
+{
+}
+
+/**
+ * @method string getTemplate()
+ * @method $this withTemplate($value)
+ * @method string getLazy()
+ * @method $this withLazy($value)
+ * @method string getGop()
+ * @method $this withGop($value)
+ * @method string getAudioCodec()
+ * @method $this withAudioCodec($value)
+ * @method string getTemplateType()
+ * @method $this withTemplateType($value)
+ * @method string getAudioProfile()
+ * @method $this withAudioProfile($value)
+ * @method string getHeight()
+ * @method $this withHeight($value)
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getAudioChannelNum()
+ * @method $this withAudioChannelNum($value)
+ * @method string getProfile()
+ * @method $this withProfile($value)
+ * @method string getFPS()
+ * @method $this withFPS($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAudioRate()
+ * @method $this withAudioRate($value)
+ * @method string getAudioBitrate()
+ * @method $this withAudioBitrate($value)
+ * @method string getDomain()
+ * @method $this withDomain($value)
+ * @method string getWidth()
+ * @method $this withWidth($value)
+ * @method string getVideoBitrate()
+ * @method $this withVideoBitrate($value)
+ */
+class AddCustomLiveStreamTranscode extends Rpc
+{
+}
+
+/**
+ * @method string getServCert()
+ * @method $this withServCert($value)
+ * @method string getDescription()
+ * @method $this withDescription($value)
+ * @method string getPrivateKey()
+ * @method $this withPrivateKey($value)
+ * @method string getCertName()
+ * @method $this withCertName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAsk()
+ * @method $this withAsk($value)
+ * @method string getPassphrase()
+ * @method $this withPassphrase($value)
+ */
+class AddDRMCertificate extends Rpc
+{
+}
+
+/**
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getOnDemand()
+ * @method $this withOnDemand($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method array getRecordFormat()
+ */
+class AddLiveAppRecordConfig extends Rpc
+{
+
+ /**
+ * @param array $recordFormat
+ *
+ * @return $this
+ */
+ public function withRecordFormat(array $recordFormat)
+ {
+ $this->data['RecordFormat'] = $recordFormat;
+ foreach ($recordFormat as $depth1 => $depth1Value) {
+ if(isset($depth1Value['SliceOssObjectPrefix'])){
+ $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.SliceOssObjectPrefix'] = $depth1Value['SliceOssObjectPrefix'];
+ }
+ if(isset($depth1Value['Format'])){
+ $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.Format'] = $depth1Value['Format'];
+ }
+ if(isset($depth1Value['OssObjectPrefix'])){
+ $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.OssObjectPrefix'] = $depth1Value['OssObjectPrefix'];
+ }
+ if(isset($depth1Value['CycleDuration'])){
+ $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.CycleDuration'] = $depth1Value['CycleDuration'];
+ }
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getTimeInterval()
+ * @method $this withTimeInterval($value)
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getOverwriteOssObject()
+ * @method $this withOverwriteOssObject($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getSequenceOssObject()
+ * @method $this withSequenceOssObject($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCallback()
+ * @method $this withCallback($value)
+ */
+class AddLiveAppSnapshotConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getMnsTopic()
+ * @method $this withMnsTopic($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getPeriod()
+ * @method $this withPeriod($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getHttpCallbackURL()
+ * @method $this withHttpCallbackURL($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getMnsRegion()
+ * @method $this withMnsRegion($value)
+ */
+class AddLiveASRConfig extends Rpc
+{
+}
+
+/**
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getOssObject()
+ * @method $this withOssObject($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getBizType()
+ * @method $this withBizType($value)
+ */
+class AddLiveAudioAuditConfig extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCallbackTemplate()
+ * @method $this withCallbackTemplate($value)
+ * @method string getCallback()
+ * @method $this withCallback($value)
+ */
+class AddLiveAudioAuditNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getNotifyUrl()
+ * @method $this withNotifyUrl($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class AddLiveDetectNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getScope()
+ * @method $this withScope($value)
+ * @method string getTopLevelDomain()
+ * @method $this withTopLevelDomain($value)
+ * @method string getOwnerAccount()
+ * @method $this withOwnerAccount($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRegion()
+ * @method $this withRegion($value)
+ * @method string getCheckUrl()
+ * @method $this withCheckUrl($value)
+ * @method string getLiveDomainType()
+ * @method $this withLiveDomainType($value)
+ */
+class AddLiveDomain extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPushDomain()
+ * @method $this withPushDomain($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPullDomain()
+ * @method $this withPullDomain($value)
+ */
+class AddLiveDomainMapping extends Rpc
+{
+}
+
+/**
+ * @method string getPlayDomain()
+ * @method $this withPlayDomain($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPullDomain()
+ * @method $this withPullDomain($value)
+ */
+class AddLiveDomainPlayMapping extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getPullAlways()
+ * @method $this withPullAlways($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSourceUrl()
+ * @method $this withSourceUrl($value)
+ */
+class AddLivePullStreamInfoConfig extends Rpc
+{
+}
+
+/**
+ * @method string getOnDemandUrl()
+ * @method $this withOnDemandUrl($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getNotifyUrl()
+ * @method $this withNotifyUrl($value)
+ * @method string getNeedStatusNotify()
+ * @method $this withNeedStatusNotify($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class AddLiveRecordNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAutoCompose()
+ * @method $this withAutoCompose($value)
+ * @method string getComposeVodTranscodeGroupId()
+ * @method $this withComposeVodTranscodeGroupId($value)
+ * @method string getStorageLocation()
+ * @method $this withStorageLocation($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getVodTranscodeGroupId()
+ * @method $this withVodTranscodeGroupId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getCycleDuration()
+ * @method $this withCycleDuration($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class AddLiveRecordVodConfig extends Rpc
+{
+}
+
+/**
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getOssObject()
+ * @method $this withOssObject($value)
+ * @method array getScene()
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class AddLiveSnapshotDetectPornConfig extends Rpc
+{
+
+ /**
+ * @param array $scene
+ *
+ * @return $this
+ */
+ public function withScene(array $scene)
+ {
+ $this->data['Scene'] = $scene;
+ foreach ($scene as $i => $iValue) {
+ $this->options['query']['Scene.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getTemplate()
+ * @method $this withTemplate($value)
+ * @method string getLazy()
+ * @method $this withLazy($value)
+ * @method string getMix()
+ * @method $this withMix($value)
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getEncryptParameters()
+ * @method $this withEncryptParameters($value)
+ * @method string getWatermark()
+ * @method $this withWatermark($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDomain()
+ * @method $this withDomain($value)
+ * @method string getWaterPattern()
+ * @method $this withWaterPattern($value)
+ * @method string getOnlyAudio()
+ * @method $this withOnlyAudio($value)
+ */
+class AddLiveStreamTranscode extends Rpc
+{
+}
+
+/**
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getGroupId()
+ * @method $this withGroupId($value)
+ * @method string getTemplates()
+ * @method $this withTemplates($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getIsLazy()
+ * @method $this withIsLazy($value)
+ * @method string getAvFormat()
+ * @method $this withAvFormat($value)
+ * @method string getIsTimeAlign()
+ * @method $this withIsTimeAlign($value)
+ */
+class AddMultiRateConfig extends Rpc
+{
+}
+
+/**
+ * @method string getProgramItems()
+ * @method $this withProgramItems($value)
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getProgramConfig()
+ * @method $this withProgramConfig($value)
+ */
+class AddPlaylistItems extends Rpc
+{
+}
+
+/**
+ * @method string getTemplate()
+ * @method $this withTemplate($value)
+ * @method string getDeleteBframes()
+ * @method $this withDeleteBframes($value)
+ * @method string getLazy()
+ * @method $this withLazy($value)
+ * @method string getGop()
+ * @method $this withGop($value)
+ * @method string getOpus()
+ * @method $this withOpus($value)
+ * @method string getAudioCodec()
+ * @method $this withAudioCodec($value)
+ * @method string getTemplateType()
+ * @method $this withTemplateType($value)
+ * @method string getAudioProfile()
+ * @method $this withAudioProfile($value)
+ * @method string getHeight()
+ * @method $this withHeight($value)
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getAudioChannelNum()
+ * @method $this withAudioChannelNum($value)
+ * @method string getProfile()
+ * @method $this withProfile($value)
+ * @method string getFPS()
+ * @method $this withFPS($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAudioRate()
+ * @method $this withAudioRate($value)
+ * @method string getAudioBitrate()
+ * @method $this withAudioBitrate($value)
+ * @method string getDomain()
+ * @method $this withDomain($value)
+ * @method string getWidth()
+ * @method $this withWidth($value)
+ * @method string getVideoBitrate()
+ * @method $this withVideoBitrate($value)
+ */
+class AddRtsLiveStreamTranscode extends Rpc
+{
+}
+
+/**
+ * @method string getScreenInputConfigList()
+ * @method $this withScreenInputConfigList($value)
+ * @method string getLayoutType()
+ * @method $this withLayoutType($value)
+ * @method string getLayoutName()
+ * @method $this withLayoutName($value)
+ * @method string getLayerOrderConfigList()
+ * @method $this withLayerOrderConfigList($value)
+ * @method string getMediaInputConfigList()
+ * @method $this withMediaInputConfigList($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getBgImageConfig()
+ * @method $this withBgImageConfig($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCommonConfig()
+ * @method $this withCommonConfig($value)
+ */
+class AddStudioLayout extends Rpc
+{
+}
+
+/**
+ * @method string getPattern()
+ * @method $this withPattern($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getRepeat()
+ * @method $this withRepeat($value)
+ * @method string getText()
+ * @method $this withText($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDelay()
+ * @method $this withDelay($value)
+ */
+class AddTrancodeSEI extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class AllowPushStream extends Rpc
+{
+}
+
+/**
+ * @method string getBoardId()
+ * @method $this withBoardId($value)
+ * @method string getAppUid()
+ * @method $this withAppUid($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class ApplyBoardToken extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class ApplyRecordToken extends Rpc
+{
+}
+
+/**
+ * @method string getFunctionNames()
+ * @method $this withFunctionNames($value)
+ * @method string getDomainNames()
+ * @method $this withDomainNames($value)
+ * @method string getOwnerAccount()
+ * @method $this withOwnerAccount($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class BatchDeleteLiveDomainConfigs extends Rpc
+{
+}
+
+/**
+ * @method string getFunctions()
+ * @method $this withFunctions($value)
+ * @method string getDomainNames()
+ * @method $this withDomainNames($value)
+ * @method string getOwnerAccount()
+ * @method $this withOwnerAccount($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class BatchSetLiveDomainConfigs extends Rpc
+{
+}
+
+/**
+ * @method string getAccountId()
+ * @method $this withAccountId($value)
+ * @method string getSPIRegionId()
+ * @method $this withSPIRegionId($value)
+ * @method string getRoleArn()
+ * @method $this withRoleArn($value)
+ * @method string getDeletionTaskId()
+ * @method $this withDeletionTaskId($value)
+ * @method string getServiceName()
+ * @method $this withServiceName($value)
+ */
+class CheckServiceForRole extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class CloseLiveShift extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ * @method string getBoardId()
+ * @method $this withBoardId($value)
+ */
+class CompleteBoard extends Rpc
+{
+}
+
+/**
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRecordId()
+ * @method $this withRecordId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class CompleteBoardRecord extends Rpc
+{
+}
+
+/**
+ * @method string getHtmlUrl()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getOperate()
+ * @method $this withOperate($value)
+ * @method string getHtmlResourceId()
+ * @method $this withHtmlResourceId($value)
+ */
+class ControlHtmlResource extends Rpc
+{
+
+ /**
+ * @param string $value
+ *
+ * @return $this
+ */
+ public function withHtmlUrl($value)
+ {
+ $this->data['HtmlUrl'] = $value;
+ $this->options['query']['htmlUrl'] = $value;
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getClientToken()
+ * @method $this withClientToken($value)
+ * @method string getCasterName()
+ * @method $this withCasterName($value)
+ * @method string getSrcCasterId()
+ * @method $this withSrcCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class CopyCaster extends Rpc
+{
+}
+
+/**
+ * @method string getFromSceneId()
+ * @method $this withFromSceneId($value)
+ * @method string getToSceneId()
+ * @method $this withToSceneId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class CopyCasterSceneConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppUid()
+ * @method $this withAppUid($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class CreateBoard extends Rpc
+{
+}
+
+/**
+ * @method string getClientToken()
+ * @method $this withClientToken($value)
+ * @method string getCasterName()
+ * @method $this withCasterName($value)
+ * @method string getCasterTemplate()
+ * @method $this withCasterTemplate($value)
+ * @method string getExpireTime()
+ * @method $this withExpireTime($value)
+ * @method string getNormType()
+ * @method $this withNormType($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPurchaseTime()
+ * @method $this withPurchaseTime($value)
+ * @method string getChargeType()
+ * @method $this withChargeType($value)
+ */
+class CreateCaster extends Rpc
+{
+}
+
+/**
+ * @method string getProject()
+ * @method $this withProject($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRegion()
+ * @method $this withRegion($value)
+ * @method string getLogstore()
+ * @method $this withLogstore($value)
+ */
+class CreateLiveRealTimeLogDelivery extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getOssObject()
+ * @method $this withOssObject($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class CreateLiveStreamRecordIndexFiles extends Rpc
+{
+}
+
+/**
+ * @method string getOutputConfig()
+ * @method $this withOutputConfig($value)
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getInputStreamList()
+ * @method $this withInputStreamList($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCallbackConfig()
+ * @method $this withCallbackConfig($value)
+ */
+class CreateMixStream extends Rpc
+{
+}
+
+/**
+ * @method string getTemplateIds()
+ * @method $this withTemplateIds($value)
+ * @method string getAnchorId()
+ * @method $this withAnchorId($value)
+ * @method string getUseAppTranscode()
+ * @method $this withUseAppTranscode($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class CreateRoom extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ * @method string getBoardId()
+ * @method $this withBoardId($value)
+ */
+class DeleteBoard extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteCaster extends Rpc
+{
+}
+
+/**
+ * @method string getComponentId()
+ * @method $this withComponentId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteCasterComponent extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getEpisodeId()
+ * @method $this withEpisodeId($value)
+ */
+class DeleteCasterEpisode extends Rpc
+{
+}
+
+/**
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteCasterEpisodeGroup extends Rpc
+{
+}
+
+/**
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteCasterLayout extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteCasterProgram extends Rpc
+{
+}
+
+/**
+ * @method string getType()
+ * @method $this withType($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class DeleteCasterSceneConfig extends Rpc
+{
+}
+
+/**
+ * @method string getResourceId()
+ * @method $this withResourceId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteCasterVideoResource extends Rpc
+{
+}
+
+/**
+ * @method string getHtmlUrl()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getHtmlResourceId()
+ * @method $this withHtmlResourceId($value)
+ */
+class DeleteHtmlResource extends Rpc
+{
+
+ /**
+ * @param string $value
+ *
+ * @return $this
+ */
+ public function withHtmlUrl($value)
+ {
+ $this->data['HtmlUrl'] = $value;
+ $this->options['query']['htmlUrl'] = $value;
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveAppRecordConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveAppSnapshotConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveASRConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveAudioAuditConfig extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveAudioAuditNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveDetectNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerAccount()
+ * @method $this withOwnerAccount($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class DeleteLiveDomain extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPushDomain()
+ * @method $this withPushDomain($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPullDomain()
+ * @method $this withPullDomain($value)
+ */
+class DeleteLiveDomainMapping extends Rpc
+{
+}
+
+/**
+ * @method string getPlayDomain()
+ * @method $this withPlayDomain($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPullDomain()
+ * @method $this withPullDomain($value)
+ */
+class DeleteLiveDomainPlayMapping extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ */
+class DeleteLiveLazyPullStreamInfoConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLivePullStreamInfoConfig extends Rpc
+{
+}
+
+/**
+ * @method string getProject()
+ * @method $this withProject($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRegion()
+ * @method $this withRegion($value)
+ * @method string getLogstore()
+ * @method $this withLogstore($value)
+ */
+class DeleteLiveRealtimeLogDelivery extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getProject()
+ * @method $this withProject($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRegion()
+ * @method $this withRegion($value)
+ * @method string getLogstore()
+ * @method $this withLogstore($value)
+ */
+class DeleteLiveRealTimeLogLogstore extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveRecordNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveRecordVodConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveSnapshotDetectPornConfig extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteLiveStreamsNotifyUrlConfig extends Rpc
+{
+}
+
+/**
+ * @method string getTemplate()
+ * @method $this withTemplate($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDomain()
+ * @method $this withDomain($value)
+ */
+class DeleteLiveStreamTranscode extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getMixStreamId()
+ * @method $this withMixStreamId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteMixStream extends Rpc
+{
+}
+
+/**
+ * @method string getDeleteAll()
+ * @method $this withDeleteAll($value)
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getGroupId()
+ * @method $this withGroupId($value)
+ * @method string getTemplates()
+ * @method $this withTemplates($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteMultiRateConfig extends Rpc
+{
+}
+
+/**
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeletePlaylist extends Rpc
+{
+}
+
+/**
+ * @method string getProgramItemIds()
+ * @method $this withProgramItemIds($value)
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeletePlaylistItems extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DeleteRoom extends Rpc
+{
+}
+
+/**
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DeleteStudioLayout extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getBoardId()
+ * @method $this withBoardId($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeBoardEvents extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeBoards extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ * @method string getBoardId()
+ * @method $this withBoardId($value)
+ */
+class DescribeBoardSnapshot extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterChannels extends Rpc
+{
+}
+
+/**
+ * @method string getComponentId()
+ * @method $this withComponentId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterComponents extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterConfig extends Rpc
+{
+}
+
+/**
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterLayouts extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getEpisodeType()
+ * @method $this withEpisodeType($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getEpisodeId()
+ * @method $this withEpisodeId($value)
+ * @method string getStatus()
+ * @method $this withStatus($value)
+ */
+class DescribeCasterProgram extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterRtcInfo extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getCasterName()
+ * @method $this withCasterName($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getStatus()
+ * @method $this withStatus($value)
+ */
+class DescribeCasters extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class DescribeCasterSceneAudio extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class DescribeCasterScenes extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterStreamUrl extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterSyncGroup extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeCasterVideoResources extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getType()
+ * @method $this withType($value)
+ * @method string getArea()
+ * @method $this withArea($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getField()
+ * @method $this withField($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class DescribeDomainUsageData extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeDRMCertList extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeForbidPushStreamRoomList extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getTime()
+ * @method $this withTime($value)
+ */
+class DescribeHlsLiveStreamRealTimeBpsData extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getHtmlUrl()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getHtmlResourceId()
+ * @method $this withHtmlResourceId($value)
+ */
+class DescribeHtmlResource extends Rpc
+{
+
+ /**
+ * @param string $value
+ *
+ * @return $this
+ */
+ public function withHtmlUrl($value)
+ {
+ $this->data['HtmlUrl'] = $value;
+ $this->options['query']['htmlUrl'] = $value;
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveAsrConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveAudioAuditConfig extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveAudioAuditNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getCertName()
+ * @method $this withCertName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class DescribeLiveCertificateDetail extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class DescribeLiveCertificateList extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDetectNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getFee()
+ * @method $this withFee($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getScene()
+ * @method $this withScene($value)
+ * @method string getStream()
+ * @method $this withStream($value)
+ * @method string getSplitBy()
+ * @method $this withSplitBy($value)
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRegion()
+ * @method $this withRegion($value)
+ */
+class DescribeLiveDetectPornData extends Rpc
+{
+}
+
+/**
+ * @method string getLocationNameEn()
+ * @method $this withLocationNameEn($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getIspNameEn()
+ * @method $this withIspNameEn($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class DescribeLiveDomainBpsData extends Rpc
+{
+}
+
+/**
+ * @method string getLocationNames()
+ * @method $this withLocationNames($value)
+ * @method string getIspNames()
+ * @method $this withIspNames($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getTimePoint()
+ * @method $this withTimePoint($value)
+ */
+class DescribeLiveDomainBpsDataByTimeStamp extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainCertificateInfo extends Rpc
+{
+}
+
+/**
+ * @method string getFunctionNames()
+ * @method $this withFunctionNames($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class DescribeLiveDomainConfigs extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class DescribeLiveDomainDetail extends Rpc
+{
+}
+
+/**
+ * @method string getQueryTime()
+ * @method $this withQueryTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainFrameRateAndBitRateData extends Rpc
+{
+}
+
+/**
+ * @method string getLiveapiRequestFrom()
+ * @method $this withLiveapiRequestFrom($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainLimit extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainMapping extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getQueryTime()
+ * @method $this withQueryTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainOnlineUserNum extends Rpc
+{
+}
+
+/**
+ * @method string getLocationNameEn()
+ * @method $this withLocationNameEn($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getIspNameEn()
+ * @method $this withIspNameEn($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class DescribeLiveDomainPushBpsData extends Rpc
+{
+}
+
+/**
+ * @method string getLocationNameEn()
+ * @method $this withLocationNameEn($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getIspNameEn()
+ * @method $this withIspNameEn($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class DescribeLiveDomainPushTrafficData extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainPvUvData extends Rpc
+{
+}
+
+/**
+ * @method string getLocationNameEn()
+ * @method $this withLocationNameEn($value)
+ * @method string getIspNameEn()
+ * @method $this withIspNameEn($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainRealTimeBpsData extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getLocationNameEn()
+ * @method $this withLocationNameEn($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getIspNameEn()
+ * @method $this withIspNameEn($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainRealTimeHttpCodeData extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainRealtimeLogDelivery extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getLocationNameEn()
+ * @method $this withLocationNameEn($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getIspNameEn()
+ * @method $this withIspNameEn($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainRealTimeTrafficData extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getRecordType()
+ * @method $this withRecordType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainRecordData extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainSnapshotData extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getSplit()
+ * @method $this withSplit($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainStreamTranscodeData extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class DescribeLiveDomainTimeShiftData extends Rpc
+{
+}
+
+/**
+ * @method string getLocationNameEn()
+ * @method $this withLocationNameEn($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getIspNameEn()
+ * @method $this withIspNameEn($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class DescribeLiveDomainTrafficData extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveDomainTranscodeData extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getLiveapiRequestFrom()
+ * @method $this withLiveapiRequestFrom($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveLazyPullStreamConfig extends Rpc
+{
+}
+
+/**
+ * @method string getLiveapiRequestFrom()
+ * @method $this withLiveapiRequestFrom($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLivePullStreamConfig extends Rpc
+{
+}
+
+/**
+ * @method string getProject()
+ * @method $this withProject($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ * @method string getLogStore()
+ * @method $this withLogStore($value)
+ */
+class DescribeLiveRealtimeDeliveryAcc extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getLiveOpenapiReserve()
+ * @method $this withLiveOpenapiReserve($value)
+ */
+class DescribeLiveRealtimeLogAuthorized extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveRecordConfig extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveRecordNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveRecordVodConfigs extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveShiftConfigs extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveSnapshotConfig extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveSnapshotDetectPornConfig extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamBitRateData extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamCount extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamDelayConfig extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamHistoryUserNum extends Rpc
+{
+}
+
+/**
+ * @method string getConfigName()
+ * @method $this withConfigName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamOptimizedFeatureConfig extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamRecordContent extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRecordId()
+ * @method $this withRecordId($value)
+ */
+class DescribeLiveStreamRecordIndexFile extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamRecordIndexFiles extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamsBlockList extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRows()
+ * @method $this withRows($value)
+ * @method string getPage()
+ * @method $this withPage($value)
+ */
+class DescribeLiveStreamsControlHistory extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getLimit()
+ * @method $this withLimit($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamSnapshotInfo extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamsNotifyUrlConfig extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getQueryType()
+ * @method $this withQueryType($value)
+ * @method string getStreamType()
+ * @method $this withStreamType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOrderBy()
+ * @method $this withOrderBy($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamsOnlineList extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getPageNumber()
+ * @method $this withPageNumber($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getQueryType()
+ * @method $this withQueryType($value)
+ * @method string getStreamType()
+ * @method $this withStreamType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOrderBy()
+ * @method $this withOrderBy($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamsPublishList extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDomainTranscodeName()
+ * @method $this withDomainTranscodeName($value)
+ */
+class DescribeLiveStreamTranscodeInfo extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveStreamTranscodeStreamNum extends Rpc
+{
+}
+
+/**
+ * @method string getScope()
+ * @method $this withScope($value)
+ * @method array getTag()
+ * @method array getResourceId()
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getResourceType()
+ * @method $this withResourceType($value)
+ */
+class DescribeLiveTagResources extends Rpc
+{
+
+ /**
+ * @param array $tag
+ *
+ * @return $this
+ */
+ public function withTag(array $tag)
+ {
+ $this->data['Tag'] = $tag;
+ foreach ($tag as $depth1 => $depth1Value) {
+ if(isset($depth1Value['Key'])){
+ $this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
+ }
+ if(isset($depth1Value['Value'])){
+ $this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $resourceId
+ *
+ * @return $this
+ */
+ public function withResourceId(array $resourceId)
+ {
+ $this->data['ResourceId'] = $resourceId;
+ foreach ($resourceId as $i => $iValue) {
+ $this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getLimit()
+ * @method $this withLimit($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveTopDomainsByFlow extends Rpc
+{
+}
+
+/**
+ * @method string getPageNumber()
+ * @method $this withPageNumber($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getRegionName()
+ * @method $this withRegionName($value)
+ * @method array getTag()
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDomainStatus()
+ * @method $this withDomainStatus($value)
+ * @method string getDomainSearchType()
+ * @method $this withDomainSearchType($value)
+ * @method string getLiveDomainType()
+ * @method $this withLiveDomainType($value)
+ */
+class DescribeLiveUserDomains extends Rpc
+{
+
+ /**
+ * @param array $tag
+ *
+ * @return $this
+ */
+ public function withTag(array $tag)
+ {
+ $this->data['Tag'] = $tag;
+ foreach ($tag as $depth1 => $depth1Value) {
+ if(isset($depth1Value['Value'])){
+ $this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
+ }
+ if(isset($depth1Value['Key'])){
+ $this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
+ }
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveUserTags extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeLiveVerifyContent extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getMixStreamId()
+ * @method $this withMixStreamId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPageNo()
+ * @method $this withPageNo($value)
+ */
+class DescribeMixStreamList extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRecordId()
+ * @method $this withRecordId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeRecord extends Rpc
+{
+}
+
+/**
+ * @method string getRecordState()
+ * @method $this withRecordState($value)
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeRecords extends Rpc
+{
+}
+
+/**
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeRoomKickoutUserList extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getAnchorId()
+ * @method $this withAnchorId($value)
+ * @method string getPageNum()
+ * @method $this withPageNum($value)
+ * @method string getRoomStatus()
+ * @method $this withRoomStatus($value)
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getOrder()
+ * @method $this withOrder($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeRoomList extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class DescribeRoomStatus extends Rpc
+{
+}
+
+/**
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DescribeStudioLayouts extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDomainSwitch()
+ * @method $this withDomainSwitch($value)
+ */
+class DescribeUpBpsPeakData extends Rpc
+{
+}
+
+/**
+ * @method string getLine()
+ * @method $this withLine($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDomainSwitch()
+ * @method $this withDomainSwitch($value)
+ */
+class DescribeUpBpsPeakOfLine extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDomainSwitch()
+ * @method $this withDomainSwitch($value)
+ */
+class DescribeUpPeakPublishStreamData extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class DisableLiveRealtimeLogDelivery extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getHtmlUrl()
+ * @method $this withHtmlUrl($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getHtmlContent()
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getHtmlResourceId()
+ * @method $this withHtmlResourceId($value)
+ * @method string getConfig()
+ * @method $this withConfig($value)
+ */
+class EditHtmlResource extends Rpc
+{
+
+ /**
+ * @param string $value
+ *
+ * @return $this
+ */
+ public function withHtmlContent($value)
+ {
+ $this->data['HtmlContent'] = $value;
+ $this->options['query']['htmlContent'] = $value;
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getProgramItems()
+ * @method $this withProgramItems($value)
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getProgramConfig()
+ * @method $this withProgramConfig($value)
+ */
+class EditPlaylist extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class EffectCasterUrgent extends Rpc
+{
+}
+
+/**
+ * @method string getResourceId()
+ * @method $this withResourceId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class EffectCasterVideoResource extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class EnableLiveRealtimeLogDelivery extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getControlStreamAction()
+ * @method $this withControlStreamAction($value)
+ * @method string getResumeTime()
+ * @method $this withResumeTime($value)
+ * @method string getLiveStreamType()
+ * @method $this withLiveStreamType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getOneshot()
+ * @method $this withOneshot($value)
+ */
+class ForbidLiveStream extends Rpc
+{
+}
+
+/**
+ * @method string getUserData()
+ * @method $this withUserData($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class ForbidPushStream extends Rpc
+{
+}
+
+/**
+ * @method string getApp()
+ * @method $this withApp($value)
+ * @method string getGroupId()
+ * @method $this withGroupId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class GetMultiRateConfig extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class GetMultiRateConfigList extends Rpc
+{
+}
+
+/**
+ * @method string getBoardId()
+ * @method $this withBoardId($value)
+ * @method string getAppUid()
+ * @method $this withAppUid($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class JoinBoard extends Rpc
+{
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getLiveOpenapiReserve()
+ * @method $this withLiveOpenapiReserve($value)
+ */
+class ListLiveRealtimeLogDelivery extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getProject()
+ * @method $this withProject($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRegion()
+ * @method $this withRegion($value)
+ * @method string getLogstore()
+ * @method $this withLogstore($value)
+ */
+class ListLiveRealtimeLogDeliveryDomains extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getLiveOpenapiReserve()
+ * @method $this withLiveOpenapiReserve($value)
+ */
+class ListLiveRealtimeLogDeliveryInfos extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getPageSize()
+ * @method $this withPageSize($value)
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPage()
+ * @method $this withPage($value)
+ */
+class ListPlaylist extends Rpc
+{
+}
+
+/**
+ * @method string getProgramItemIds()
+ * @method $this withProgramItemIds($value)
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class ListPlaylistItems extends Rpc
+{
+}
+
+/**
+ * @method string getImageLayerContent()
+ * @method $this withImageLayerContent($value)
+ * @method string getComponentName()
+ * @method $this withComponentName($value)
+ * @method string getComponentId()
+ * @method $this withComponentId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getComponentLayer()
+ * @method $this withComponentLayer($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getComponentType()
+ * @method $this withComponentType($value)
+ * @method string getEffect()
+ * @method $this withEffect($value)
+ * @method string getCaptionLayerContent()
+ * @method $this withCaptionLayerContent($value)
+ * @method string getTextLayerContent()
+ * @method $this withTextLayerContent($value)
+ */
+class ModifyCasterComponent extends Rpc
+{
+}
+
+/**
+ * @method string getEpisodeName()
+ * @method $this withEpisodeName($value)
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getResourceId()
+ * @method $this withResourceId($value)
+ * @method array getComponentId()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getEndTime()
+ * @method $this withEndTime($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getEpisodeId()
+ * @method $this withEpisodeId($value)
+ * @method string getSwitchType()
+ * @method $this withSwitchType($value)
+ */
+class ModifyCasterEpisode extends Rpc
+{
+
+ /**
+ * @param array $componentId
+ *
+ * @return $this
+ */
+ public function withComponentId(array $componentId)
+ {
+ $this->data['ComponentId'] = $componentId;
+ foreach ($componentId as $i => $iValue) {
+ $this->options['query']['ComponentId.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method array getBlendList()
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method array getAudioLayer()
+ * @method array getVideoLayer()
+ * @method array getMixList()
+ */
+class ModifyCasterLayout extends Rpc
+{
+
+ /**
+ * @param array $blendList
+ *
+ * @return $this
+ */
+ public function withBlendList(array $blendList)
+ {
+ $this->data['BlendList'] = $blendList;
+ foreach ($blendList as $i => $iValue) {
+ $this->options['query']['BlendList.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $audioLayer
+ *
+ * @return $this
+ */
+ public function withAudioLayer(array $audioLayer)
+ {
+ $this->data['AudioLayer'] = $audioLayer;
+ foreach ($audioLayer as $depth1 => $depth1Value) {
+ if(isset($depth1Value['VolumeRate'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.VolumeRate'] = $depth1Value['VolumeRate'];
+ }
+ if(isset($depth1Value['ValidChannel'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.ValidChannel'] = $depth1Value['ValidChannel'];
+ }
+ if(isset($depth1Value['FixedDelayDuration'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration'];
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $videoLayer
+ *
+ * @return $this
+ */
+ public function withVideoLayer(array $videoLayer)
+ {
+ $this->data['VideoLayer'] = $videoLayer;
+ foreach ($videoLayer as $depth1 => $depth1Value) {
+ if(isset($depth1Value['FillMode'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FillMode'] = $depth1Value['FillMode'];
+ }
+ if(isset($depth1Value['HeightNormalized'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.HeightNormalized'] = $depth1Value['HeightNormalized'];
+ }
+ if(isset($depth1Value['WidthNormalized'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.WidthNormalized'] = $depth1Value['WidthNormalized'];
+ }
+ if(isset($depth1Value['PositionRefer'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionRefer'] = $depth1Value['PositionRefer'];
+ }
+ foreach ($depth1Value['PositionNormalized'] as $i => $iValue) {
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionNormalized.' . ($i + 1)] = $iValue;
+ }
+ if(isset($depth1Value['FixedDelayDuration'])){
+ $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration'];
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $mixList
+ *
+ * @return $this
+ */
+ public function withMixList(array $mixList)
+ {
+ $this->data['MixList'] = $mixList;
+ foreach ($mixList as $i => $iValue) {
+ $this->options['query']['MixList.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method array getEpisode()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class ModifyCasterProgram extends Rpc
+{
+
+ /**
+ * @param array $episode
+ *
+ * @return $this
+ */
+ public function withEpisode(array $episode)
+ {
+ $this->data['Episode'] = $episode;
+ foreach ($episode as $depth1 => $depth1Value) {
+ if(isset($depth1Value['EpisodeId'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeId'] = $depth1Value['EpisodeId'];
+ }
+ if(isset($depth1Value['EpisodeType'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeType'] = $depth1Value['EpisodeType'];
+ }
+ if(isset($depth1Value['EpisodeName'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeName'] = $depth1Value['EpisodeName'];
+ }
+ if(isset($depth1Value['ResourceId'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.ResourceId'] = $depth1Value['ResourceId'];
+ }
+ foreach ($depth1Value['ComponentId'] as $i => $iValue) {
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.ComponentId.' . ($i + 1)] = $iValue;
+ }
+ if(isset($depth1Value['StartTime'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.StartTime'] = $depth1Value['StartTime'];
+ }
+ if(isset($depth1Value['EndTime'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.EndTime'] = $depth1Value['EndTime'];
+ }
+ if(isset($depth1Value['SwitchType'])){
+ $this->options['query']['Episode.' . ($depth1 + 1) . '.SwitchType'] = $depth1Value['SwitchType'];
+ }
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getEndOffset()
+ * @method $this withEndOffset($value)
+ * @method string getMaterialId()
+ * @method $this withMaterialId($value)
+ * @method string getResourceId()
+ * @method $this withResourceId($value)
+ * @method string getVodUrl()
+ * @method $this withVodUrl($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getBeginOffset()
+ * @method $this withBeginOffset($value)
+ * @method string getLiveStreamUrl()
+ * @method $this withLiveStreamUrl($value)
+ * @method string getPtsCallbackInterval()
+ * @method $this withPtsCallbackInterval($value)
+ * @method string getResourceName()
+ * @method $this withResourceName($value)
+ * @method string getRepeatNum()
+ * @method $this withRepeatNum($value)
+ */
+class ModifyCasterVideoResource extends Rpc
+{
+}
+
+/**
+ * @method string getProperty()
+ * @method $this withProperty($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class ModifyLiveDomainSchdmByProperty extends Rpc
+{
+}
+
+/**
+ * @method string getProject()
+ * @method $this withProject($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getRegion()
+ * @method $this withRegion($value)
+ * @method string getLogstore()
+ * @method $this withLogstore($value)
+ */
+class ModifyLiveRealtimeLogDelivery extends Rpc
+{
+
+ /** @var string */
+ public $method = 'GET';
+}
+
+/**
+ * @method string getScreenInputConfigList()
+ * @method $this withScreenInputConfigList($value)
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getLayoutName()
+ * @method $this withLayoutName($value)
+ * @method string getLayerOrderConfigList()
+ * @method $this withLayerOrderConfigList($value)
+ * @method string getMediaInputConfigList()
+ * @method $this withMediaInputConfigList($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getBgImageConfig()
+ * @method $this withBgImageConfig($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCommonConfig()
+ * @method $this withCommonConfig($value)
+ */
+class ModifyStudioLayout extends Rpc
+{
+}
+
+/**
+ * @method string getDuration()
+ * @method $this withDuration($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getVision()
+ * @method $this withVision($value)
+ */
+class OpenLiveShift extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCommand()
+ * @method $this withCommand($value)
+ */
+class RealTimeRecordCommand extends Rpc
+{
+}
+
+/**
+ * @method string getMode()
+ * @method $this withMode($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCommand()
+ * @method $this withCommand($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class RealTimeSnapshotCommand extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getLiveStreamType()
+ * @method $this withLiveStreamType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class ResumeLiveStream extends Rpc
+{
+}
+
+/**
+ * @method string getData()
+ * @method $this withData($value)
+ * @method string getAppUid()
+ * @method $this withAppUid($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPriority()
+ * @method $this withPriority($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class SendRoomNotification extends Rpc
+{
+}
+
+/**
+ * @method string getData()
+ * @method $this withData($value)
+ * @method string getToAppUid()
+ * @method $this withToAppUid($value)
+ * @method string getAppUid()
+ * @method $this withAppUid($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPriority()
+ * @method $this withPriority($value)
+ * @method string getRoomId()
+ * @method $this withRoomId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class SendRoomUserNotification extends Rpc
+{
+}
+
+/**
+ * @method string getAuthKey()
+ * @method $this withAuthKey($value)
+ * @method string getCallbackEnable()
+ * @method $this withCallbackEnable($value)
+ * @method string getCallbackEvents()
+ * @method $this withCallbackEvents($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCallbackUri()
+ * @method $this withCallbackUri($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ * @method string getAuthSwitch()
+ * @method $this withAuthSwitch($value)
+ */
+class SetBoardCallback extends Rpc
+{
+}
+
+/**
+ * @method string getSeekOffset()
+ * @method $this withSeekOffset($value)
+ * @method string getPlayStatus()
+ * @method $this withPlayStatus($value)
+ * @method string getResourceId()
+ * @method $this withResourceId($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getReloadFlag()
+ * @method $this withReloadFlag($value)
+ * @method string getChannelId()
+ * @method $this withChannelId($value)
+ */
+class SetCasterChannel extends Rpc
+{
+}
+
+/**
+ * @method string getChannelEnable()
+ * @method $this withChannelEnable($value)
+ * @method string getProgramEffect()
+ * @method $this withProgramEffect($value)
+ * @method string getProgramName()
+ * @method $this withProgramName($value)
+ * @method string getRecordConfig()
+ * @method $this withRecordConfig($value)
+ * @method string getUrgentMaterialId()
+ * @method $this withUrgentMaterialId($value)
+ * @method string getTranscodeConfig()
+ * @method $this withTranscodeConfig($value)
+ * @method string getCasterName()
+ * @method $this withCasterName($value)
+ * @method string getSideOutputUrl()
+ * @method $this withSideOutputUrl($value)
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getDelay()
+ * @method $this withDelay($value)
+ * @method string getCallbackUrl()
+ * @method $this withCallbackUrl($value)
+ */
+class SetCasterConfig extends Rpc
+{
+}
+
+/**
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method array getComponentId()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class SetCasterSceneConfig extends Rpc
+{
+
+ /**
+ * @param array $componentId
+ *
+ * @return $this
+ */
+ public function withComponentId(array $componentId)
+ {
+ $this->data['ComponentId'] = $componentId;
+ foreach ($componentId as $i => $iValue) {
+ $this->options['query']['ComponentId.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method array getSyncGroup()
+ */
+class SetCasterSyncGroup extends Rpc
+{
+
+ /**
+ * @param array $syncGroup
+ *
+ * @return $this
+ */
+ public function withSyncGroup(array $syncGroup)
+ {
+ $this->data['SyncGroup'] = $syncGroup;
+ foreach ($syncGroup as $depth1 => $depth1Value) {
+ if(isset($depth1Value['Mode'])){
+ $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.Mode'] = $depth1Value['Mode'];
+ }
+ if(isset($depth1Value['SyncDelayThreshold'])){
+ $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.SyncDelayThreshold'] = $depth1Value['SyncDelayThreshold'];
+ }
+ if(isset($depth1Value['HostResourceId'])){
+ $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.HostResourceId'] = $depth1Value['HostResourceId'];
+ }
+ foreach ($depth1Value['ResourceIds'] as $i => $iValue) {
+ $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.ResourceIds.' . ($i + 1)] = $iValue;
+ }
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getSSLProtocol()
+ * @method $this withSSLProtocol($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getCertType()
+ * @method $this withCertType($value)
+ * @method string getSSLPri()
+ * @method $this withSSLPri($value)
+ * @method string getForceSet()
+ * @method $this withForceSet($value)
+ * @method string getCertName()
+ * @method $this withCertName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSSLPub()
+ * @method $this withSSLPub($value)
+ */
+class SetLiveDomainCertificate extends Rpc
+{
+}
+
+/**
+ * @method string getPullArgs()
+ * @method $this withPullArgs($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getLiveapiRequestFrom()
+ * @method $this withLiveapiRequestFrom($value)
+ * @method string getPullAuthKey()
+ * @method $this withPullAuthKey($value)
+ * @method string getPullAuthType()
+ * @method $this withPullAuthType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getPullDomainName()
+ * @method $this withPullDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getPullAppName()
+ * @method $this withPullAppName($value)
+ * @method string getPullProtocol()
+ * @method $this withPullProtocol($value)
+ */
+class SetLiveLazyPullStreamInfoConfig extends Rpc
+{
+}
+
+/**
+ * @method string getFlvLevel()
+ * @method $this withFlvLevel($value)
+ * @method string getHlsLevel()
+ * @method $this withHlsLevel($value)
+ * @method string getRtmpDelay()
+ * @method $this withRtmpDelay($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getFlvDelay()
+ * @method $this withFlvDelay($value)
+ * @method string getRtmpLevel()
+ * @method $this withRtmpLevel($value)
+ * @method string getHlsDelay()
+ * @method $this withHlsDelay($value)
+ */
+class SetLiveStreamDelayConfig extends Rpc
+{
+}
+
+/**
+ * @method string getConfigStatus()
+ * @method $this withConfigStatus($value)
+ * @method string getConfigName()
+ * @method $this withConfigName($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getConfigValue()
+ * @method $this withConfigValue($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class SetLiveStreamOptimizedFeatureConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAuthKey()
+ * @method $this withAuthKey($value)
+ * @method string getAuthType()
+ * @method $this withAuthType($value)
+ * @method string getNotifyUrl()
+ * @method $this withNotifyUrl($value)
+ * @method string getNotifyType()
+ * @method $this withNotifyType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class SetLiveStreamsNotifyUrlConfig extends Rpc
+{
+}
+
+/**
+ * @method string getStartTime()
+ * @method $this withStartTime($value)
+ * @method string getBoardId()
+ * @method $this withBoardId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ */
+class StartBoardRecord extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class StartCaster extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class StartCasterScene extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class StartLiveDomain extends Rpc
+{
+}
+
+/**
+ * @method string getTokenId()
+ * @method $this withTokenId($value)
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getOssRamRole()
+ * @method $this withOssRamRole($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOssUserId()
+ * @method $this withOssUserId($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getInputUrl()
+ * @method $this withInputUrl($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class StartLiveIndex extends Rpc
+{
+}
+
+/**
+ * @method string getResumeMode()
+ * @method $this withResumeMode($value)
+ * @method string getStartItemId()
+ * @method $this withStartItemId($value)
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOffset()
+ * @method $this withOffset($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class StartPlaylist extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class StopCaster extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class StopCasterScene extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class StopLiveDomain extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getTaskId()
+ * @method $this withTaskId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class StopLiveIndex extends Rpc
+{
+}
+
+/**
+ * @method string getProgramId()
+ * @method $this withProgramId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class StopPlaylist extends Rpc
+{
+}
+
+/**
+ * @method array getTag()
+ * @method array getResourceId()
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getResourceType()
+ * @method $this withResourceType($value)
+ */
+class TagLiveResources extends Rpc
+{
+
+ /**
+ * @param array $tag
+ *
+ * @return $this
+ */
+ public function withTag(array $tag)
+ {
+ $this->data['Tag'] = $tag;
+ foreach ($tag as $depth1 => $depth1Value) {
+ if(isset($depth1Value['Key'])){
+ $this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
+ }
+ if(isset($depth1Value['Value'])){
+ $this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $resourceId
+ *
+ * @return $this
+ */
+ public function withResourceId(array $resourceId)
+ {
+ $this->data['ResourceId'] = $resourceId;
+ foreach ($resourceId as $i => $iValue) {
+ $this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getAll()
+ * @method $this withAll($value)
+ * @method array getResourceId()
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getResourceType()
+ * @method $this withResourceType($value)
+ * @method array getTagKey()
+ */
+class UnTagLiveResources extends Rpc
+{
+
+ /**
+ * @param array $resourceId
+ *
+ * @return $this
+ */
+ public function withResourceId(array $resourceId)
+ {
+ $this->data['ResourceId'] = $resourceId;
+ foreach ($resourceId as $i => $iValue) {
+ $this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $tagKey
+ *
+ * @return $this
+ */
+ public function withTagKey(array $tagKey)
+ {
+ $this->data['TagKey'] = $tagKey;
+ foreach ($tagKey as $i => $iValue) {
+ $this->options['query']['TagKey.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ * @method string getBoardData()
+ * @method $this withBoardData($value)
+ */
+class UpdateBoard extends Rpc
+{
+}
+
+/**
+ * @method string getAuthKey()
+ * @method $this withAuthKey($value)
+ * @method string getCallbackEnable()
+ * @method $this withCallbackEnable($value)
+ * @method string getCallbackEvents()
+ * @method $this withCallbackEvents($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCallbackUri()
+ * @method $this withCallbackUri($value)
+ * @method string getAppId()
+ * @method $this withAppId($value)
+ * @method string getAuthSwitch()
+ * @method $this withAuthSwitch($value)
+ */
+class UpdateBoardCallback extends Rpc
+{
+}
+
+/**
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method array getAudioLayer()
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ * @method array getMixList()
+ * @method string getFollowEnable()
+ * @method $this withFollowEnable($value)
+ */
+class UpdateCasterSceneAudio extends Rpc
+{
+
+ /**
+ * @param array $audioLayer
+ *
+ * @return $this
+ */
+ public function withAudioLayer(array $audioLayer)
+ {
+ $this->data['AudioLayer'] = $audioLayer;
+ foreach ($audioLayer as $depth1 => $depth1Value) {
+ if(isset($depth1Value['VolumeRate'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.VolumeRate'] = $depth1Value['VolumeRate'];
+ }
+ if(isset($depth1Value['ValidChannel'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.ValidChannel'] = $depth1Value['ValidChannel'];
+ }
+ if(isset($depth1Value['FixedDelayDuration'])){
+ $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration'];
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * @param array $mixList
+ *
+ * @return $this
+ */
+ public function withMixList(array $mixList)
+ {
+ $this->data['MixList'] = $mixList;
+ foreach ($mixList as $i => $iValue) {
+ $this->options['query']['MixList.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method array getComponentId()
+ * @method string getCasterId()
+ * @method $this withCasterId($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSceneId()
+ * @method $this withSceneId($value)
+ */
+class UpdateCasterSceneConfig extends Rpc
+{
+
+ /**
+ * @param array $componentId
+ *
+ * @return $this
+ */
+ public function withComponentId(array $componentId)
+ {
+ $this->data['ComponentId'] = $componentId;
+ foreach ($componentId as $i => $iValue) {
+ $this->options['query']['ComponentId.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getTimeInterval()
+ * @method $this withTimeInterval($value)
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getOverwriteOssObject()
+ * @method $this withOverwriteOssObject($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getSequenceOssObject()
+ * @method $this withSequenceOssObject($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCallback()
+ * @method $this withCallback($value)
+ */
+class UpdateLiveAppSnapshotConfig extends Rpc
+{
+}
+
+/**
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getMnsTopic()
+ * @method $this withMnsTopic($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getPeriod()
+ * @method $this withPeriod($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getHttpCallbackURL()
+ * @method $this withHttpCallbackURL($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getMnsRegion()
+ * @method $this withMnsRegion($value)
+ */
+class UpdateLiveASRConfig extends Rpc
+{
+}
+
+/**
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getOssObject()
+ * @method $this withOssObject($value)
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getStreamName()
+ * @method $this withStreamName($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getBizType()
+ * @method $this withBizType($value)
+ */
+class UpdateLiveAudioAuditConfig extends Rpc
+{
+}
+
+/**
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getCallbackTemplate()
+ * @method $this withCallbackTemplate($value)
+ * @method string getCallback()
+ * @method $this withCallback($value)
+ */
+class UpdateLiveAudioAuditNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getNotifyUrl()
+ * @method $this withNotifyUrl($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class UpdateLiveDetectNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getOnDemandUrl()
+ * @method $this withOnDemandUrl($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getNotifyUrl()
+ * @method $this withNotifyUrl($value)
+ * @method string getNeedStatusNotify()
+ * @method $this withNeedStatusNotify($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class UpdateLiveRecordNotifyConfig extends Rpc
+{
+}
+
+/**
+ * @method string getOssEndpoint()
+ * @method $this withOssEndpoint($value)
+ * @method string getOssObject()
+ * @method $this withOssObject($value)
+ * @method array getScene()
+ * @method string getAppName()
+ * @method $this withAppName($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ * @method string getOssBucket()
+ * @method $this withOssBucket($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getInterval()
+ * @method $this withInterval($value)
+ */
+class UpdateLiveSnapshotDetectPornConfig extends Rpc
+{
+
+ /**
+ * @param array $scene
+ *
+ * @return $this
+ */
+ public function withScene(array $scene)
+ {
+ $this->data['Scene'] = $scene;
+ foreach ($scene as $i => $iValue) {
+ $this->options['query']['Scene.' . ($i + 1)] = $iValue;
+ }
+
+ return $this;
+ }
+}
+
+/**
+ * @method string getTopLevelDomain()
+ * @method $this withTopLevelDomain($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ * @method string getSecurityToken()
+ * @method $this withSecurityToken($value)
+ */
+class UpdateLiveTopLevelDomain extends Rpc
+{
+}
+
+/**
+ * @method string getLayoutId()
+ * @method $this withLayoutId($value)
+ * @method string getMixStreamId()
+ * @method $this withMixStreamId($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getInputStreamList()
+ * @method $this withInputStreamList($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class UpdateMixStream extends Rpc
+{
+}
+
+/**
+ * @method string getVerifyType()
+ * @method $this withVerifyType($value)
+ * @method string getDomainName()
+ * @method $this withDomainName($value)
+ * @method string getOwnerId()
+ * @method $this withOwnerId($value)
+ */
+class VerifyLiveDomainOwner extends Rpc
+{
+}
diff --git a/vendor/alibabacloud/live/composer.json b/vendor/alibabacloud/live/composer.json
new file mode 100644
index 000000000..2412043e9
--- /dev/null
+++ b/vendor/alibabacloud/live/composer.json
@@ -0,0 +1,43 @@
+{
+ "name": "alibabacloud/live",
+ "homepage": "https://www.alibabacloud.com/",
+ "description": "Alibaba Cloud Live SDK for PHP",
+ "keywords": [
+ "live",
+ "sdk",
+ "cloud",
+ "aliyun",
+ "alibaba",
+ "library",
+ "alibabacloud"
+ ],
+ "type": "library",
+ "license": "Apache-2.0",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/live",
+ "issues": "https://github.com/alibabacloud-sdk-php/live/issues"
+ },
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com",
+ "homepage": "http://www.alibabacloud.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.5",
+ "alibabacloud/client": "^1.5"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Live\\": ""
+ }
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true,
+ "minimum-stability": "dev"
+}
diff --git a/vendor/alibabacloud/live/endpoints.json b/vendor/alibabacloud/live/endpoints.json
new file mode 100644
index 000000000..a05335bd0
--- /dev/null
+++ b/vendor/alibabacloud/live/endpoints.json
@@ -0,0 +1 @@
+{"endpoint_map":{"cn-qingdao":"live.aliyuncs.com","cn-beijing":"live.aliyuncs.com","cn-hangzhou":"live.aliyuncs.com","cn-shanghai":"live.aliyuncs.com","cn-shenzhen":"live.aliyuncs.com","ap-southeast-1":"live.aliyuncs.com","ap-southeast-5":"live.aliyuncs.com","ap-northeast-1":"live.aliyuncs.com","eu-central-1":"live.aliyuncs.com","ap-south-1":"live.aliyuncs.com","ap-northeast-2-pop":"live.ap-southeast-1.aliyuncs.com","ap-southeast-2":"live.ap-southeast-1.aliyuncs.com","ap-southeast-3":"live.ap-southeast-1.aliyuncs.com","cn-beijing-finance-1":"live.aliyuncs.com","cn-beijing-finance-pop":"live.aliyuncs.com","cn-beijing-gov-1":"live.aliyuncs.com","cn-beijing-nu16-b01":"live.aliyuncs.com","cn-chengdu":"live.aliyuncs.com","cn-edge-1":"live.aliyuncs.com","cn-fujian":"live.aliyuncs.com","cn-haidian-cm12-c01":"live.aliyuncs.com","cn-hangzhou-bj-b01":"live.aliyuncs.com","cn-hangzhou-finance":"live.aliyuncs.com","cn-hangzhou-internal-prod-1":"live.aliyuncs.com","cn-hangzhou-internal-test-1":"live.aliyuncs.com","cn-hangzhou-internal-test-2":"live.aliyuncs.com","cn-hangzhou-internal-test-3":"live.aliyuncs.com","cn-hangzhou-test-306":"live.aliyuncs.com","cn-hongkong":"live.aliyuncs.com","cn-hongkong-finance-pop":"live.aliyuncs.com","cn-huhehaote":"live.aliyuncs.com","cn-north-2-gov-1":"live.aliyuncs.com","cn-qingdao-nebula":"live.aliyuncs.com","cn-shanghai-et15-b01":"live.aliyuncs.com","cn-shanghai-et2-b01":"live.aliyuncs.com","cn-shanghai-finance-1":"live.aliyuncs.com","cn-shanghai-inner":"live.aliyuncs.com","cn-shanghai-internal-test-1":"live.aliyuncs.com","cn-shenzhen-finance-1":"live.aliyuncs.com","cn-shenzhen-inner":"live.aliyuncs.com","cn-shenzhen-st4-d01":"live.aliyuncs.com","cn-shenzhen-su18-b01":"live.aliyuncs.com","cn-wuhan":"live.aliyuncs.com","cn-yushanfang":"live.aliyuncs.com","cn-zhangbei-na61-b01":"live.aliyuncs.com","cn-zhangjiakou":"live.aliyuncs.com","cn-zhangjiakou-na62-a01":"live.aliyuncs.com","cn-zhengzhou-nebula-1":"live.aliyuncs.com","eu-west-1":"live.ap-southeast-1.aliyuncs.com","eu-west-1-oxs":"live.ap-southeast-1.aliyuncs.com","me-east-1":"live.ap-southeast-1.aliyuncs.com","rus-west-1-pop":"live.ap-southeast-1.aliyuncs.com","us-east-1":"live.ap-southeast-1.aliyuncs.com","us-west-1":"live.ap-southeast-1.aliyuncs.com"},"endpoint_regional":"regional","standard":[],"regions":["cn-qingdao","cn-beijing","cn-hangzhou","cn-shanghai","cn-shenzhen","ap-southeast-1","ap-southeast-5","ap-northeast-1","eu-central-1","ap-south-1","ap-northeast-2-pop","ap-southeast-2","ap-southeast-3","cn-beijing-finance-1","cn-beijing-finance-pop","cn-beijing-gov-1","cn-beijing-nu16-b01","cn-chengdu","cn-edge-1","cn-fujian","cn-haidian-cm12-c01","cn-hangzhou-bj-b01","cn-hangzhou-finance","cn-hangzhou-internal-prod-1","cn-hangzhou-internal-test-1","cn-hangzhou-internal-test-2","cn-hangzhou-internal-test-3","cn-hangzhou-test-306","cn-hongkong","cn-hongkong-finance-pop","cn-huhehaote","cn-north-2-gov-1","cn-qingdao-nebula","cn-shanghai-et15-b01","cn-shanghai-et2-b01","cn-shanghai-finance-1","cn-shanghai-inner","cn-shanghai-internal-test-1","cn-shenzhen-finance-1","cn-shenzhen-inner","cn-shenzhen-st4-d01","cn-shenzhen-su18-b01","cn-wuhan","cn-yushanfang","cn-zhangbei-na61-b01","cn-zhangjiakou","cn-zhangjiakou-na62-a01","cn-zhengzhou-nebula-1","eu-west-1","eu-west-1-oxs","me-east-1","rus-west-1-pop","us-east-1","us-west-1"],"endpoint_health":[]}
diff --git a/vendor/alibabacloud/openapi-util/.gitignore b/vendor/alibabacloud/openapi-util/.gitignore
new file mode 100644
index 000000000..89c7aa58e
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/.gitignore
@@ -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
diff --git a/vendor/alibabacloud/openapi-util/.php_cs.dist b/vendor/alibabacloud/openapi-util/.php_cs.dist
new file mode 100644
index 000000000..8617ec2fa
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/.php_cs.dist
@@ -0,0 +1,65 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/openapi-util/README-CN.md b/vendor/alibabacloud/openapi-util/README-CN.md
new file mode 100644
index 000000000..57b03a429
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/README-CN.md
@@ -0,0 +1,31 @@
+[English](README.md) | 简体中文
+
+
+
+## Alibaba Cloud OpenApi Util
+
+## 安装
+
+### Composer
+
+```bash
+composer require alibabacloud/openapi-util
+```
+
+## 问题
+
+[提交 Issue](https://github.com/aliyun/openapiutil/issues/new),不符合指南的问题可能会立即关闭。
+
+## 发行说明
+
+每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
+
+## 相关
+
+* [最新源码](https://github.com/aliyun/openapiutil)
+
+## 许可证
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/openapi-util/README.md b/vendor/alibabacloud/openapi-util/README.md
new file mode 100644
index 000000000..2ad047211
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/README.md
@@ -0,0 +1,31 @@
+English | [简体中文](README-CN.md)
+
+
+
+## Alibaba Cloud OpenApi Util
+
+## Installation
+
+### Composer
+
+```bash
+composer require alibabacloud/openapi-util
+```
+
+## Issues
+
+[Opening an Issue](https://github.com/aliyun/openapiutil/issues/new), Issues not conforming to the guidelines may be closed immediately.
+
+## Changelog
+
+Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
+
+## References
+
+* [Latest Release](https://github.com/aliyun/openapiutil)
+
+## License
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/openapi-util/autoload.php b/vendor/alibabacloud/openapi-util/autoload.php
new file mode 100644
index 000000000..b787ba0e2
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/autoload.php
@@ -0,0 +1,17 @@
+5.5",
+ "alibabacloud/tea": "^3.1",
+ "alibabacloud/tea-utils": "^0.2",
+ "lizhichao/one-sm": "^1.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\OpenApiUtil\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "AlibabaCloud\\OpenApiUtil\\Tests\\": "tests"
+ }
+ },
+ "scripts": {
+ "fixer": "php-cs-fixer fix ./",
+ "test": [
+ "@clearCache",
+ "./vendor/bin/phpunit --colors=always"
+ ],
+ "clearCache": "rm -rf cache/*"
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true
+}
diff --git a/vendor/alibabacloud/openapi-util/phpunit.xml b/vendor/alibabacloud/openapi-util/phpunit.xml
new file mode 100644
index 000000000..5042ba874
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/phpunit.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+ tests
+
+
+ ./tests
+
+
+
+
+
+ integration
+
+
+
+
+
+
+
+
+
+
+ ./src
+
+
+
diff --git a/vendor/alibabacloud/openapi-util/src/OpenApiUtilClient.php b/vendor/alibabacloud/openapi-util/src/OpenApiUtilClient.php
new file mode 100644
index 000000000..b89171231
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/src/OpenApiUtilClient.php
@@ -0,0 +1,573 @@
+toMap();
+ $map = self::exceptStream($map);
+ $newContent = $content::fromMap($map);
+ $class = new \ReflectionClass($newContent);
+ foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) {
+ $name = $property->getName();
+ if (!$property->isStatic()) {
+ $content->{$name} = $property->getValue($newContent);
+ }
+ }
+ }
+
+ private static function exceptStream($map)
+ {
+ if ($map instanceof StreamInterface) {
+ return null;
+ } elseif (\is_array($map)) {
+ $data = [];
+ foreach ($map as $k => $v) {
+ if (null !== $v) {
+ $item = self::exceptStream($v);
+ if (null !== $item) {
+ $data[$k] = $item;
+ }
+ } else {
+ $data[$k] = $v;
+ }
+ }
+ return $data;
+ }
+ return $map;
+ }
+
+ /**
+ * Get the string to be signed according to request.
+ *
+ * @param Request $request which contains signed messages
+ *
+ * @return string the signed string
+ */
+ public static function getStringToSign($request)
+ {
+ $pathname = $request->pathname ?: '';
+ $query = $request->query ?: [];
+
+ $accept = isset($request->headers['accept']) ? $request->headers['accept'] : '';
+ $contentMD5 = isset($request->headers['content-md5']) ? $request->headers['content-md5'] : '';
+ $contentType = isset($request->headers['content-type']) ? $request->headers['content-type'] : '';
+ $date = isset($request->headers['date']) ? $request->headers['date'] : '';
+
+ $result = $request->method . "\n" .
+ $accept . "\n" .
+ $contentMD5 . "\n" .
+ $contentType . "\n" .
+ $date . "\n";
+
+ $canonicalizedHeaders = self::getCanonicalizedHeaders($request->headers);
+ $canonicalizedResource = self::getCanonicalizedResource($pathname, $query);
+
+ return $result . $canonicalizedHeaders . $canonicalizedResource;
+ }
+
+ /**
+ * Get signature according to stringToSign, secret.
+ *
+ * @param string $stringToSign the signed string
+ * @param string $secret accesskey secret
+ *
+ * @return string the signature
+ */
+ public static function getROASignature($stringToSign, $secret)
+ {
+ return base64_encode(hash_hmac('sha1', $stringToSign, $secret, true));
+ }
+
+ /**
+ * Parse filter into a form string.
+ *
+ * @param array $filter object
+ *
+ * @return string the string
+ */
+ public static function toForm($filter)
+ {
+ $query = $filter;
+ if (null === $query) {
+ return '';
+ }
+ if ($query instanceof Model) {
+ $query = $query->toMap();
+ }
+ $tmp = [];
+ foreach ($query as $k => $v) {
+ if (0 !== strpos($k, '_')) {
+ $tmp[$k] = $v;
+ }
+ }
+ $res = self::flatten($tmp);
+ ksort($res);
+
+ return http_build_query($res);
+ }
+
+ /**
+ * Get timestamp.
+ *
+ * @return string the timestamp string
+ */
+ public static function getTimestamp()
+ {
+ return gmdate('Y-m-d\\TH:i:s\\Z');
+ }
+
+ /**
+ * Parse filter into a object which's type is map[string]string.
+ *
+ * @param array $filter query param
+ *
+ * @return array the object
+ */
+ public static function query($filter)
+ {
+ if (null === $filter) {
+ return [];
+ }
+ $dict = $filter;
+ if ($dict instanceof Model) {
+ $dict = $dict->toMap();
+ }
+ $tmp = [];
+ foreach ($dict as $k => $v) {
+ if (0 !== strpos($k, '_')) {
+ $tmp[$k] = $v;
+ }
+ }
+
+ return self::flatten($tmp);
+ }
+
+ /**
+ * Get signature according to signedParams, method and secret.
+ *
+ * @param array $signedParams params which need to be signed
+ * @param string $method http method e.g. GET
+ * @param string $secret AccessKeySecret
+ *
+ * @return string the signature
+ */
+ public static function getRPCSignature($signedParams, $method, $secret)
+ {
+ $secret .= '&';
+ $strToSign = self::getRpcStrToSign($method, $signedParams);
+
+ $signMethod = 'HMAC-SHA1';
+
+ return self::encode($signMethod, $strToSign, $secret);
+ }
+
+ /**
+ * Parse object into a string with specified style.
+ *
+ * @style specified style e.g. repeatList
+ *
+ * @param mixed $object the object
+ * @param string $prefix the prefix string
+ * @param string $style
+ *
+ * @return string the string
+ */
+ public static function arrayToStringWithSpecifiedStyle($object, $prefix, $style)
+ {
+ if (null === $object) {
+ return '';
+ }
+ if ('repeatList' === $style) {
+ return self::toForm([$prefix => $object]);
+ }
+ if ('simple' == $style || 'spaceDelimited' == $style || 'pipeDelimited' == $style) {
+ $strs = self::flatten($object);
+
+ switch ($style) {
+ case 'spaceDelimited':
+ return implode(' ', $strs);
+
+ case 'pipeDelimited':
+ return implode('|', $strs);
+
+ default:
+ return implode(',', $strs);
+ }
+ } elseif ('json' === $style) {
+ self::parse($object, $parsed);
+ return json_encode($parsed);
+ }
+
+ return '';
+ }
+
+ /**
+ * Transform input as array.
+ *
+ * @param mixed $input
+ *
+ * @return array
+ */
+ public static function parseToArray($input)
+ {
+ self::parse($input, $result);
+
+ return $result;
+ }
+
+ /**
+ * Transform input as map.
+ *
+ * @param mixed $input
+ *
+ * @return array
+ */
+ public static function parseToMap($input)
+ {
+ self::parse($input, $result);
+
+ return $result;
+ }
+
+ public static function getEndpoint($endpoint, $useAccelerate, $endpointType = 'public')
+ {
+ if ('internal' == $endpointType) {
+ $tmp = explode('.', $endpoint);
+ $tmp[0] .= '-internal';
+ $endpoint = implode('.', $tmp);
+ }
+ if ($useAccelerate && 'accelerate' == $endpointType) {
+ return 'oss-accelerate.aliyuncs.com';
+ }
+
+ return $endpoint;
+ }
+
+ /**
+ * Encode raw with base16.
+ *
+ * @param int[] $raw encoding data
+ *
+ * @return string encoded string
+ */
+ public static function hexEncode($raw)
+ {
+ if (is_array($raw)) {
+ $raw = Utils::toString($raw);
+ }
+ return bin2hex($raw);
+ }
+
+ /**
+ * Hash the raw data with signatureAlgorithm.
+ *
+ * @param int[] $raw hashing data
+ * @param string $signatureAlgorithm the autograph method
+ *
+ * @return array hashed bytes
+ */
+ public static function hash($raw, $signatureAlgorithm)
+ {
+ $str = Utils::toString($raw);
+
+ switch ($signatureAlgorithm) {
+ case 'ACS3-HMAC-SHA256':
+ case 'ACS3-RSA-SHA256':
+ $res = hash('sha256', $str, true);
+ return Utils::toBytes($res);
+ case 'ACS3-HMAC-SM3':
+ $res = self::sm3($str);
+ return Utils::toBytes(hex2bin($res));
+ }
+
+ return [];
+ }
+
+ /**
+ * Get the authorization.
+ *
+ * @param Request $request request params
+ * @param string $signatureAlgorithm the autograph method
+ * @param string $payload the hashed request
+ * @param string $accesskey the accessKey string
+ * @param string $accessKeySecret the accessKeySecret string
+ *
+ * @return string authorization string
+ * @throws \ErrorException
+ *
+ */
+ public static function getAuthorization($request, $signatureAlgorithm, $payload, $accesskey, $accessKeySecret)
+ {
+ $canonicalURI = $request->pathname ? $request->pathname : '/';
+ $query = $request->query ?: [];
+ $method = strtoupper($request->method);
+ $canonicalQueryString = self::getCanonicalQueryString($query);
+ $signHeaders = [];
+ foreach ($request->headers as $k => $v) {
+ $k = strtolower($k);
+ if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) {
+ $signHeaders[$k] = $v;
+ }
+ }
+ ksort($signHeaders);
+ $headers = [];
+ foreach ($request->headers as $k => $v) {
+ $k = strtolower($k);
+ if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) {
+ $headers[$k] = trim($v);
+ }
+ }
+ $canonicalHeaderString = '';
+ ksort($headers);
+ foreach ($headers as $k => $v) {
+ $canonicalHeaderString .= $k . ':' . trim(self::filter($v)) . "\n";
+ }
+ if (empty($canonicalHeaderString)) {
+ $canonicalHeaderString = "\n";
+ }
+
+ $canonicalRequest = $method . "\n" . $canonicalURI . "\n" . $canonicalQueryString . "\n" .
+ $canonicalHeaderString . "\n" . implode(';', array_keys($signHeaders)) . "\n" . $payload;
+ $strtosign = $signatureAlgorithm . "\n" . self::hexEncode(self::hash(Utils::toBytes($canonicalRequest), $signatureAlgorithm));
+ $signature = self::sign($accessKeySecret, $strtosign, $signatureAlgorithm);
+ $signature = self::hexEncode($signature);
+
+ return $signatureAlgorithm .
+ ' Credential=' . $accesskey .
+ ',SignedHeaders=' . implode(';', array_keys($signHeaders)) .
+ ',Signature=' . $signature;
+ }
+
+ public static function sign($secret, $str, $algorithm)
+ {
+ $result = '';
+ switch ($algorithm) {
+ case 'ACS3-HMAC-SHA256':
+ $result = hash_hmac('sha256', $str, $secret, true);
+ break;
+ case 'ACS3-HMAC-SM3':
+ $result = self::hmac_sm3($str, $secret, true);
+ break;
+ case 'ACS3-RSA-SHA256':
+ $privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" . $secret . "\n-----END RSA PRIVATE KEY-----";
+ @openssl_sign($str, $result, $privateKey, OPENSSL_ALGO_SHA256);
+ }
+
+ return Utils::toBytes($result);
+ }
+
+ /**
+ * Get encoded path.
+ *
+ * @param string $path the raw path
+ *
+ * @return string encoded path
+ */
+ public static function getEncodePath($path)
+ {
+ $tmp = explode('/', $path);
+ foreach ($tmp as &$t) {
+ $t = rawurlencode($t);
+ }
+
+ return implode('/', $tmp);
+ }
+
+ /**
+ * Get encoded param.
+ *
+ * @param string $param the raw param
+ *
+ * @return string encoded param
+ */
+ public static function getEncodeParam($param)
+ {
+ return rawurlencode($param);
+ }
+
+ private static function getRpcStrToSign($method, $query)
+ {
+ ksort($query);
+
+ $params = [];
+ foreach ($query as $k => $v) {
+ if (null !== $v) {
+ $k = rawurlencode($k);
+ $v = rawurlencode($v);
+ $params[] = $k . '=' . (string)$v;
+ }
+ }
+ $str = implode('&', $params);
+
+ return $method . '&' . rawurlencode('/') . '&' . rawurlencode($str);
+ }
+
+ private static function encode($signMethod, $strToSign, $secret)
+ {
+ switch ($signMethod) {
+ case 'HMAC-SHA256':
+ return base64_encode(hash_hmac('sha256', $strToSign, $secret, true));
+
+ default:
+ return base64_encode(hash_hmac('sha1', $strToSign, $secret, true));
+ }
+ }
+
+ /**
+ * @param array $items
+ * @param string $delimiter
+ * @param string $prepend
+ *
+ * @return array
+ */
+ private static function flatten($items = [], $delimiter = '.', $prepend = '')
+ {
+ $flatten = [];
+
+ foreach ($items as $key => $value) {
+ $pos = \is_int($key) ? $key + 1 : $key;
+
+ if ($value instanceof Model) {
+ $value = $value->toMap();
+ } elseif (\is_object($value)) {
+ $value = get_object_vars($value);
+ }
+
+ if (\is_array($value) && !empty($value)) {
+ $flatten = array_merge(
+ $flatten,
+ self::flatten($value, $delimiter, $prepend . $pos . $delimiter)
+ );
+ } else {
+ if (\is_bool($value)) {
+ $value = true === $value ? 'true' : 'false';
+ }
+ $flatten[$prepend . $pos] = $value;
+ }
+ }
+
+ return $flatten;
+ }
+
+ private static function getCanonicalizedHeaders($headers, $prefix = 'x-acs-')
+ {
+ ksort($headers);
+ $str = '';
+ foreach ($headers as $k => $v) {
+ if (0 === strpos(strtolower($k), $prefix)) {
+ $str .= $k . ':' . trim(self::filter($v)) . "\n";
+ }
+ }
+
+ return $str;
+ }
+
+ private static function getCanonicalizedResource($pathname, $query)
+ {
+ if (0 === \count($query)) {
+ return $pathname;
+ }
+ ksort($query);
+ $tmp = [];
+ foreach ($query as $k => $v) {
+ if (!empty($v)) {
+ $tmp[] = $k . '=' . $v;
+ } else {
+ $tmp[] = $k;
+ }
+ }
+
+ return $pathname . '?' . implode('&', $tmp);
+ }
+
+ private static function parse($input, &$output)
+ {
+ if (null === $input || '' === $input) {
+ $output = [];
+ }
+ $recursive = function ($input) use (&$recursive) {
+ if ($input instanceof Model) {
+ $input = $input->toMap();
+ } elseif (\is_object($input)) {
+ $input = get_object_vars($input);
+ }
+ if (!\is_array($input)) {
+ return $input;
+ }
+ $data = [];
+ foreach ($input as $k => $v) {
+ $data[$k] = $recursive($v);
+ }
+
+ return $data;
+ };
+ $output = $recursive($input);
+ if (!\is_array($output)) {
+ $output = [$output];
+ }
+ }
+
+ private static function filter($str)
+ {
+ return str_replace(["\t", "\n", "\r", "\f"], '', $str);
+ }
+
+ private static function hmac_sm3($data, $key, $raw_output = false)
+ {
+ $pack = 'H' . \strlen(self::sm3('test'));
+ $blocksize = 64;
+ if (\strlen($key) > $blocksize) {
+ $key = pack($pack, self::sm3($key));
+ }
+ $key = str_pad($key, $blocksize, \chr(0x00));
+ $ipad = $key ^ str_repeat(\chr(0x36), $blocksize);
+ $opad = $key ^ str_repeat(\chr(0x5C), $blocksize);
+ $hmac = self::sm3($opad . pack($pack, self::sm3($ipad . $data)));
+
+ return $raw_output ? pack($pack, $hmac) : $hmac;
+ }
+
+ private static function sm3($message)
+ {
+ return (new Sm3())->sign($message);
+ }
+
+ private static function getCanonicalQueryString($query)
+ {
+ ksort($query);
+
+ $params = [];
+ foreach ($query as $k => $v) {
+ if (null === $v) {
+ continue;
+ }
+ $str = rawurlencode($k);
+ if ('' !== $v && null !== $v) {
+ $str .= '=' . rawurlencode($v);
+ } else {
+ $str .= '=';
+ }
+ $params[] = $str;
+ }
+
+ return implode('&', $params);
+ }
+}
diff --git a/vendor/alibabacloud/openapi-util/tests/Models/SourceModel.php b/vendor/alibabacloud/openapi-util/tests/Models/SourceModel.php
new file mode 100644
index 000000000..405cefb97
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/tests/Models/SourceModel.php
@@ -0,0 +1,126 @@
+ 'Test',
+ 'empty' => 'empty',
+ 'bodyObject' => 'body',
+ 'listObject' => 'list',
+ ];
+ public function validate() {}
+ public function toMap() {
+ $res = [];
+ if (null !== $this->test) {
+ $res['Test'] = $this->test;
+ }
+ if (null !== $this->empty) {
+ $res['empty'] = $this->empty;
+ }
+ if (null !== $this->bodyObject) {
+ $res['body'] = $this->bodyObject;
+ }
+ if (null !== $this->listObject) {
+ $res['list'] = $this->listObject;
+ }
+ if (null !== $this->urlListObject) {
+ $res['urlList'] = [];
+ if(null !== $this->urlListObject && is_array($this->urlListObject)){
+ $n = 0;
+ foreach($this->urlListObject as $item){
+ $res['urlList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return SourceModel
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['Test'])){
+ $model->test = $map['Test'];
+ }
+ if(isset($map['empty'])){
+ $model->empty = $map['empty'];
+ }
+ if(isset($map['body'])){
+ $model->bodyObject = $map['body'];
+ }
+ if(isset($map['list'])){
+ if(!empty($map['list'])){
+ $model->listObject = $map['list'];
+ }
+ }
+ if(isset($map['urlList'])){
+ if(!empty($map['urlList'])){
+ $model->urlListObject = [];
+ $n = 0;
+ foreach($map['urlList'] as $item) {
+ $model->urlListObject[$n++] = null !== $item ? urlListObject::fromMap($item) : $item;
+ }
+ }
+ }
+ return $model;
+ }
+ /**
+ * @var string
+ */
+ public $test;
+
+ /**
+ * @var float
+ */
+ public $empty;
+
+ /**
+ * @var Stream
+ */
+ public $bodyObject;
+
+ /**
+ * @var Stream[]
+ */
+ public $listObject;
+
+ public $urlListObject;
+
+}
+
+class urlListObject extends Model {
+ protected $_name = [
+ 'urlObject' => 'url',
+ ];
+ public function validate() {}
+ public function toMap() {
+ $res = [];
+ if (null !== $this->urlObject) {
+ $res['url'] = $this->urlObject;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return urlListObject
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['url'])){
+ $model->urlObject = $map['url'];
+ }
+ return $model;
+ }
+ /**
+ * @var Stream
+ */
+ public $urlObject;
+
+}
+
diff --git a/vendor/alibabacloud/openapi-util/tests/Models/TargetModel.php b/vendor/alibabacloud/openapi-util/tests/Models/TargetModel.php
new file mode 100644
index 000000000..397aee443
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/tests/Models/TargetModel.php
@@ -0,0 +1,125 @@
+ 'Test',
+ 'empty' => 'empty',
+ 'body' => 'body',
+ 'list' => 'list',
+ ];
+ public function validate() {}
+ public function toMap() {
+ $res = [];
+ if (null !== $this->test) {
+ $res['Test'] = $this->test;
+ }
+ if (null !== $this->empty) {
+ $res['empty'] = $this->empty;
+ }
+ if (null !== $this->body) {
+ $res['body'] = $this->body;
+ }
+ if (null !== $this->list) {
+ $res['list'] = $this->list;
+ }
+ if (null !== $this->urlList) {
+ $res['urlList'] = [];
+ if(null !== $this->urlList && is_array($this->urlList)){
+ $n = 0;
+ foreach($this->urlList as $item){
+ $res['urlList'][$n++] = null !== $item ? $item->toMap() : $item;
+ }
+ }
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return TargetModel
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['Test'])){
+ $model->test = $map['Test'];
+ }
+ if(isset($map['empty'])){
+ $model->empty = $map['empty'];
+ }
+ if(isset($map['body'])){
+ $model->body = $map['body'];
+ }
+ if(isset($map['list'])){
+ if(!empty($map['list'])){
+ $model->list = $map['list'];
+ }
+ }
+ if(isset($map['urlList'])){
+ if(!empty($map['urlList'])){
+ $model->urlList = [];
+ $n = 0;
+ foreach($map['urlList'] as $item) {
+ $model->urlList[$n++] = null !== $item ? urlList::fromMap($item) : $item;
+ }
+ }
+ }
+ return $model;
+ }
+ /**
+ * @var string
+ */
+ public $test;
+
+ /**
+ * @var float
+ */
+ public $empty;
+
+ /**
+ * @var Stream
+ */
+ public $body;
+
+ /**
+ * @var string[]
+ */
+ public $list;
+
+ public $urlList;
+
+}
+
+class urlList extends Model {
+ protected $_name = [
+ 'url' => 'url',
+ ];
+ public function validate() {}
+ public function toMap() {
+ $res = [];
+ if (null !== $this->url) {
+ $res['url'] = $this->url;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return urlList
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['url'])){
+ $model->url = $map['url'];
+ }
+ return $model;
+ }
+ /**
+ * @var string
+ */
+ public $url;
+
+}
\ No newline at end of file
diff --git a/vendor/alibabacloud/openapi-util/tests/OpenApiUtilClientTest.php b/vendor/alibabacloud/openapi-util/tests/OpenApiUtilClientTest.php
new file mode 100644
index 000000000..550b67772
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/tests/OpenApiUtilClientTest.php
@@ -0,0 +1,501 @@
+a = 'foo';
+
+ $output = new MockModel();
+ OpenApiUtilClient::convert($model, $output);
+ $this->assertEquals($model->a, $output->a);
+
+ if (\function_exists('\GuzzleHttp\Psr7\stream_for')) {
+ // @deprecated stream_for will be removed in guzzlehttp/psr7:2.0
+ $stream = \GuzzleHttp\Psr7\stream_for('test');
+ } else {
+ $stream = \GuzzleHttp\Psr7\Utils::streamFor('test');
+ }
+ $source = new SourceModel();
+ $source->test = 'test';
+ $source->bodyObject = $stream;
+ $source->listObject = [
+ $stream
+ ];
+ $urlListObject = new urlListObject();
+ $urlListObject->urlObject = $stream;
+ $source->urlListObject = [
+ $urlListObject
+ ];
+ $target = new TargetModel();
+ OpenApiUtilClient::convert($source, $target);
+ $this->assertEquals('test', $target->test);
+ $this->assertNull($target->empty);
+ $this->assertNull($target->body);
+ $this->assertTrue(empty($target->list));
+ $this->assertNotNull($target->urlList[0]);
+ $this->assertNull($target->urlList[0]->url);
+ }
+
+ public function testGetStringToSign()
+ {
+ $request = new Request();
+ $request->method = 'GET';
+ $request->pathname = '/';
+ $request->headers['accept'] = 'application/json';
+
+ $this->assertEquals("GET\napplication/json\n\n\n\n/", OpenApiUtilClient::getStringToSign($request));
+
+ $request->headers = [
+ 'accept' => 'application/json',
+ 'content-md5' => 'md5',
+ 'content-type' => 'application/json',
+ 'date' => 'date',
+ ];
+ $this->assertEquals("GET\napplication/json\nmd5\napplication/json\ndate\n/", OpenApiUtilClient::getStringToSign($request));
+
+ $request->headers = [
+ 'accept' => 'application/json',
+ 'content-md5' => 'md5',
+ 'content-type' => 'application/json',
+ 'date' => 'date',
+ 'x-acs-custom-key' => 'any value',
+ ];
+ $this->assertEquals("GET\napplication/json\nmd5\napplication/json\ndate\nx-acs-custom-key:any value\n/", OpenApiUtilClient::getStringToSign($request));
+
+ $request->query = [
+ 'key' => 'val ue with space',
+ ];
+ $this->assertEquals("GET\napplication/json\nmd5\napplication/json\ndate\nx-acs-custom-key:any value\n/?key=val ue with space", OpenApiUtilClient::getStringToSign($request));
+ }
+
+ public function testGetROASignature()
+ {
+ $this->assertEquals('OmuTAr79tpI6CRoAdmzKRq5lHs0=', OpenApiUtilClient::getROASignature('stringtosign', 'secret'));
+ }
+
+ public function testToForm()
+ {
+ $this->assertEquals('bool=true&client=test&strs.1=str1&strs.2=str2&strs.3=false&tag.key=value', OpenApiUtilClient::toForm([
+ 'client' => 'test',
+ 'tag' => [
+ 'key' => 'value',
+ ],
+ 'strs' => ['str1', 'str2', false],
+ 'bool' => true,
+ 'null' => null,
+ ]));
+ }
+
+ public function testGetTimestamp()
+ {
+ $date = OpenApiUtilClient::getTimestamp();
+ $this->assertEquals(20, \strlen($date));
+ }
+
+ public function testQuery()
+ {
+ $model = new MockModel();
+ $model->a = 'foo';
+ $model->c = 'boo';
+ $model->r = true;
+
+ $array = [
+ 'a' => 'a',
+ 'b1' => [
+ 'a' => 'a',
+ ],
+ 'b2' => [
+ 'a' => 'a',
+ ],
+ 'c' => ['x', 'y', 'z'],
+ 'd' => [
+ $model
+ ],
+ 'e' => true,
+ 'f' => null,
+ ];
+ $this->assertEquals([
+ 'a' => 'a',
+ 'b1.a' => 'a',
+ 'b2.a' => 'a',
+ 'c.1' => 'x',
+ 'c.2' => 'y',
+ 'c.3' => 'z',
+ 'd.1.A' => 'foo',
+ 'd.1.b' => '',
+ 'd.1.c' => 'boo',
+ 'd.1.c' => 'boo',
+ 'd.1.r' => 'true',
+ 'e' => 'true',
+ 'f' => null
+ ], OpenApiUtilClient::query($array));
+ }
+
+ public function testGetRPCSignature()
+ {
+ $request = new Request();
+ $request->pathname = '';
+ $request->query = [
+ 'query' => 'test',
+ 'body' => 'test',
+ ];
+ $this->assertEquals('XlUyV4sXjOuX5FnjUz9IF9tm5rU=', OpenApiUtilClient::getRPCSignature($request->query, $request->method, 'secret'));
+ }
+
+ public function testArrayToStringWithSpecifiedStyle()
+ {
+ $data = ['ok', 'test', 2, 3];
+ $this->assertEquals(
+ 'instance.1=ok&instance.2=test&instance.3=2&instance.4=3',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $data,
+ 'instance',
+ 'repeatList'
+ )
+ );
+
+ $this->assertEquals(
+ '["ok","test",2,3]',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $data,
+ 'instance',
+ 'json'
+ )
+ );
+
+ $test = new ParseModel([
+ 'str' => 'A',
+ 'model' => new ParseModel(['str' => 'sub model']),
+ 'array' => [1, 2, 3],
+ ]);
+ $this->assertEquals(
+ '{"str":"A","model":{"str":"sub model","model":null,"array":null},"array":[1,2,3]}',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $test,
+ 'instance',
+ 'json'
+ )
+ );
+ // model item in array
+ $test = [
+ new ParseModel([
+ 'str' => 'A',
+ ]),
+ ];
+ $this->assertEquals(
+ '[{"str":"A","model":null,"array":null}]',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $test,
+ 'instance',
+ 'json'
+ )
+ );
+ // model item in map
+ $test = [
+ 'model' => new ParseModel([
+ 'str' => 'A',
+ ]),
+ ];
+ $this->assertEquals(
+ '{"model":{"str":"A","model":null,"array":null}}',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $test,
+ 'instance',
+ 'json'
+ )
+ );
+
+ $this->assertEquals(
+ 'ok,test,2,3',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $data,
+ 'instance',
+ 'simple'
+ )
+ );
+
+ $this->assertEquals(
+ 'ok test 2 3',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $data,
+ 'instance',
+ 'spaceDelimited'
+ )
+ );
+
+ $this->assertEquals(
+ 'ok|test|2|3',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $data,
+ 'instance',
+ 'pipeDelimited'
+ )
+ );
+
+ $this->assertEquals(
+ '',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ $data,
+ 'instance',
+ 'piDelimited'
+ )
+ );
+
+ $this->assertEquals(
+ '',
+ OpenApiUtilClient::arrayToStringWithSpecifiedStyle(
+ null,
+ 'instance',
+ 'pipeDelimited'
+ )
+ );
+ }
+
+ public function testParseToArray()
+ {
+ $test = $this->parseData();
+ $data = $test['data'];
+ $expected = $test['expected'];
+ foreach ($data as $index => $item) {
+ $this->assertEquals($expected[$index], OpenApiUtilClient::parseToArray($item));
+ }
+ }
+
+ public function testParseToMap()
+ {
+ $test = $this->parseData();
+ $data = $test['data'];
+ $expected = $test['expected'];
+ foreach ($data as $index => $item) {
+ $this->assertEquals($expected[$index], OpenApiUtilClient::parseToMap($item));
+ }
+ }
+
+ public function testGetEndpoint()
+ {
+ $endpoint = 'ecs.cn-hangzhou.aliyun.cs.com';
+ $useAccelerate = false;
+ $endpointType = 'public';
+
+ $this->assertEquals('ecs.cn-hangzhou.aliyun.cs.com', OpenApiUtilClient::getEndpoint($endpoint, $useAccelerate, $endpointType));
+
+ $endpointType = 'internal';
+ $this->assertEquals('ecs-internal.cn-hangzhou.aliyun.cs.com', OpenApiUtilClient::getEndpoint($endpoint, $useAccelerate, $endpointType));
+
+ $useAccelerate = true;
+ $endpointType = 'accelerate';
+ $this->assertEquals('oss-accelerate.aliyuncs.com', OpenApiUtilClient::getEndpoint($endpoint, $useAccelerate, $endpointType));
+ }
+
+ public function testHexEncode()
+ {
+ $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-HMAC-SHA256');
+ $this->assertEquals(
+ Utils::toBytes(hex2bin('9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08')),
+ $data
+ );
+
+ $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-RSA-SHA256');
+ $this->assertEquals(
+ Utils::toBytes(hex2bin('9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08')),
+ $data
+ );
+
+ $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-HMAC-SM3');
+ $this->assertEquals(
+ Utils::toBytes(hex2bin('55e12e91650d2fec56ec74e1d3e4ddbfce2ef3a65890c2a19ecf88a307e76a23')),
+ $data
+ );
+
+ $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-HM-SHA256');
+ $this->assertEquals('', Utils::toString($data));
+ }
+
+ public function testGetEncodePath()
+ {
+ $this->assertEquals(
+ '/path/%20test',
+ OpenApiUtilClient::getEncodePath('/path/ test')
+ );
+ }
+
+ public function testGetEncodeParam()
+ {
+ $this->assertEquals(
+ 'a%2Fb%2Fc%2F%20test',
+ OpenApiUtilClient::getEncodeParam('a/b/c/ test')
+ );
+ }
+
+ public function testGetAuthorization()
+ {
+ $request = new Request();
+ $request->method = '';
+ $request->pathname = '';
+ $request->query = [
+ 'test' => 'ok',
+ 'empty' => '',
+ ];
+ $request->headers = [
+ 'x-acs-test' => 'http',
+ 'x-acs-TEST' => 'https',
+ ];
+
+ $res = OpenApiUtilClient::getAuthorization($request, 'ACS3-HMAC-SHA256', '55e12e91650d2fec56ec74e1d3e4ddbfce2ef3a65890c2a19ecf88a307e76a23', 'acesskey', 'secret');
+
+ $this->assertEquals('ACS3-HMAC-SHA256 Credential=acesskey,SignedHeaders=x-acs-test,Signature=0a0f89a45f1ec3537a2d1a1046c71b95513a8f1f02526056968da19b99a5b914', $res);
+
+ $request->query = null;
+
+ $res = OpenApiUtilClient::getAuthorization($request, 'ACS3-HMAC-SHA256', '55e12e91650d2fec56ec74e1d3e4ddbfce2ef3a65890c2a19ecf88a307e76a23', 'acesskey', 'secret');
+
+ $this->assertEquals('ACS3-HMAC-SHA256 Credential=acesskey,SignedHeaders=x-acs-test,Signature=af6d32deb090ae85a21d7183055cf18dca17751da96979cdf964f8f0853e9dd2', $res);
+ }
+
+ public function testSign()
+ {
+ $this->assertEquals(
+ 'b9ff646822f41ef647c1416fa2b8408923828abc0464af6706e18db3e8553da8',
+ OpenApiUtilClient::hexEncode(OpenApiUtilClient::sign('secret', 'source', 'ACS3-HMAC-SM3'))
+ );
+ $this->assertEquals(
+ '1d93c62698a1c26427265668e79fac099aa26c1df873669599a2fb2f272e64c9',
+ OpenApiUtilClient::hexEncode(OpenApiUtilClient::sign('secret', 'source', 'ACS3-HMAC-SHA256'))
+ );
+ }
+
+ private function parseData()
+ {
+ return [
+ 'data' => [
+ 'NotArray',
+ new ParseModel([
+ 'str' => 'A',
+ 'model' => new ParseModel(['str' => 'sub model']),
+ 'array' => [1, 2, 3],
+ ]),
+ [ // model item in array
+ new ParseModel([
+ 'str' => 'A',
+ ]),
+ ],
+ [ // model item in map
+ 'model' => new ParseModel([
+ 'str' => 'A',
+ ]),
+ ],
+ ],
+ 'expected' => [
+ ['NotArray'],
+ [
+ 'str' => 'A',
+ 'model' => [
+ 'str' => 'sub model',
+ 'model' => null,
+ 'array' => null,
+ ],
+ 'array' => [1, 2, 3],
+ ],
+ [
+ [
+ 'str' => 'A',
+ 'model' => null,
+ 'array' => null,
+ ],
+ ],
+ [
+ 'model' => [
+ 'str' => 'A',
+ 'model' => null,
+ 'array' => null,
+ ],
+ ],
+ ],
+ 'expectedJsonStr' => [
+ '["NotArray"]',
+ 'NotArray',
+ 'NotArray',
+ 'NotArray',
+ ],
+ ];
+ }
+}
+
+class MockModel extends Model
+{
+ public $a = 'A';
+
+ public $b = '';
+
+ public $c = '';
+
+ public $r;
+
+ public function __construct()
+ {
+ $this->_name['a'] = 'A';
+ $this->_required['c'] = true;
+ parent::__construct([]);
+ }
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->a) {
+ $res['A'] = $this->a;
+ }
+ if (null !== $this->b) {
+ $res['b'] = $this->b;
+ }
+ if (null !== $this->c) {
+ $res['c'] = $this->c;
+ }
+ if (null !== $this->r) {
+ $res['r'] = $this->r;
+ }
+ return $res;
+ }
+
+ public static function fromMap($map = [])
+ {
+ $model = new self();
+ if (isset($map['A'])) {
+ $model->a = $map['A'];
+ }
+ if (isset($map['b'])) {
+ $model->b = $map['b'];
+ }
+ if (isset($map['c'])) {
+ $model->c = $map['c'];
+ }
+ if (isset($map['r'])) {
+ $model->r = $map['r'];
+ }
+ return $model;
+ }
+}
+
+class ParseModel extends Model
+{
+ public $str;
+ public $model;
+ public $array;
+}
diff --git a/vendor/alibabacloud/openapi-util/tests/bootstrap.php b/vendor/alibabacloud/openapi-util/tests/bootstrap.php
new file mode 100644
index 000000000..c62c4e81b
--- /dev/null
+++ b/vendor/alibabacloud/openapi-util/tests/bootstrap.php
@@ -0,0 +1,3 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/tea-utils/README-CN.md b/vendor/alibabacloud/tea-utils/README-CN.md
new file mode 100644
index 000000000..07553cab1
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/README-CN.md
@@ -0,0 +1,31 @@
+English | [简体中文](README-CN.md)
+
+
+
+## Alibaba Cloud Tea Util for PHP
+
+## Installation
+
+### Composer
+
+```bash
+composer require alibabacloud/tea-utils
+```
+
+## Issues
+
+[Opening an Issue](https://github.com/aliyun/tea-util/issues/new), Issues not conforming to the guidelines may be closed immediately.
+
+## Changelog
+
+Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
+
+## References
+
+* [Latest Release](https://github.com/aliyun/tea-util)
+
+## License
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/tea-utils/README.md b/vendor/alibabacloud/tea-utils/README.md
new file mode 100644
index 000000000..ef53f6ef1
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/README.md
@@ -0,0 +1,31 @@
+[English](README.md) | 简体中文
+
+
+
+## Alibaba Cloud Tea Util for PHP
+
+## 安装
+
+### Composer
+
+```bash
+composer require alibabacloud/tea-utils
+```
+
+## 问题
+
+[提交 Issue](https://github.com/aliyun/tea-util/issues/new),不符合指南的问题可能会立即关闭。
+
+## 发行说明
+
+每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
+
+## 相关
+
+* [最新源码](https://github.com/aliyun/tea-util)
+
+## 许可证
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/tea-utils/composer.json b/vendor/alibabacloud/tea-utils/composer.json
new file mode 100644
index 000000000..f1178c0fd
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/composer.json
@@ -0,0 +1,38 @@
+{
+ "name": "alibabacloud/tea-utils",
+ "description": "Alibaba Cloud Tea Utils for PHP",
+ "type": "library",
+ "license": "Apache-2.0",
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "support": {
+ "source": "https://github.com/aliyun/tea-util",
+ "issues": "https://github.com/aliyun/tea-util/issues"
+ },
+ "require": {
+ "php": ">5.5",
+ "alibabacloud/tea": "^3.1"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\Utils\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\Utils\\Tests\\": "tests"
+ }
+ },
+ "scripts": {
+ "fixer": "php-cs-fixer fix ./",
+ "test": [
+ "@clearCache",
+ "./vendor/bin/phpunit --colors=always"
+ ],
+ "clearCache": "rm -rf cache/*"
+ }
+}
diff --git a/vendor/alibabacloud/tea-utils/phpunit.xml b/vendor/alibabacloud/tea-utils/phpunit.xml
new file mode 100644
index 000000000..a44c1a27a
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/phpunit.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ src
+
+
+
+
+
+
+
+
+
+ tests
+
+
+
diff --git a/vendor/alibabacloud/tea-utils/src/Utils.php b/vendor/alibabacloud/tea-utils/src/Utils.php
new file mode 100644
index 000000000..13ca84ffc
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/src/Utils.php
@@ -0,0 +1,600 @@
+isSeekable()) {
+ $stream->rewind();
+ }
+
+ return $stream->getContents();
+ }
+
+ /**
+ * Read data from a readable stream, and parse it by JSON format.
+ *
+ * @param StreamInterface $stream the readable stream
+ *
+ * @return array the parsed result
+ */
+ public static function readAsJSON($stream)
+ {
+ return self::parseJSON(self::readAsString($stream));
+ }
+
+ /**
+ * Generate a nonce string.
+ *
+ * @return string the nonce string
+ */
+ public static function getNonce()
+ {
+ return md5(uniqid() . uniqid(md5(microtime(true)), true));
+ }
+
+ /**
+ * Get an UTC format string by current date, e.g. 'Thu, 06 Feb 2020 07:32:54 GMT'.
+ *
+ * @return string the UTC format string
+ */
+ public static function getDateUTCString()
+ {
+ return gmdate('D, d M Y H:i:s T');
+ }
+
+ /**
+ * If not set the real, use default value.
+ *
+ * @param string $real
+ * @param string $default
+ *
+ * @return string
+ */
+ public static function defaultString($real, $default = '')
+ {
+ return null === $real ? $default : $real;
+ }
+
+ /**
+ * If not set the real, use default value.
+ *
+ * @param int $real
+ * @param int $default
+ *
+ * @return int the return number
+ */
+ public static function defaultNumber($real, $default = 0)
+ {
+ if (null === $real) {
+ return $default;
+ }
+
+ return (int) $real;
+ }
+
+ /**
+ * Format a map to form string, like a=a%20b%20c.
+ *
+ * @param array|object $query
+ *
+ * @return string the form string
+ */
+ public static function toFormString($query)
+ {
+ if (null === $query) {
+ return '';
+ }
+
+ if (\is_object($query)) {
+ $query = json_decode(self::toJSONString($query), true);
+ }
+
+ return str_replace('+', '%20', http_build_query($query));
+ }
+
+ /**
+ * If not set the real, use default value.
+ *
+ * @param array|Model $object
+ *
+ * @return string the return string
+ */
+ public static function toJSONString($object)
+ {
+ if (is_string($object)) {
+ return $object;
+ }
+
+ if ($object instanceof Model) {
+ $object = $object->toMap();
+ }
+
+ return json_encode($object, JSON_UNESCAPED_UNICODE + JSON_UNESCAPED_SLASHES);
+ }
+
+ /**
+ * Check the string is empty?
+ *
+ * @param string $val
+ *
+ * @return bool if string is null or zero length, return true
+ *
+ * @deprecated
+ */
+ public static function _empty($val)
+ {
+ return empty($val);
+ }
+
+ /**
+ * Check the string is empty?
+ *
+ * @param string $val
+ *
+ * @return bool if string is null or zero length, return true
+ *
+ * @deprecated
+ */
+ public static function emptyWithSuffix($val)
+ {
+ return empty($val);
+ }
+
+ /**
+ * Check the string is empty?
+ *
+ * @param string $val
+ *
+ * @return bool if string is null or zero length, return true
+ */
+ public static function empty_($val)
+ {
+ return empty($val);
+ }
+
+ /**
+ * Check one string equals another one?
+ *
+ * @param int $left
+ * @param int $right
+ *
+ * @return bool if equals, return true
+ */
+ public static function equalString($left, $right)
+ {
+ return $left === $right;
+ }
+
+ /**
+ * Check one number equals another one?
+ *
+ * @param int $left
+ * @param int $right
+ *
+ * @return bool if equals, return true
+ */
+ public static function equalNumber($left, $right)
+ {
+ return $left === $right;
+ }
+
+ /**
+ * Check one value is unset.
+ *
+ * @param mixed $value
+ *
+ * @return bool if unset, return true
+ */
+ public static function isUnset(&$value = null)
+ {
+ return !isset($value) || null === $value;
+ }
+
+ /**
+ * Stringify the value of map.
+ *
+ * @param array $map
+ *
+ * @return array the new stringified map
+ */
+ public static function stringifyMapValue($map)
+ {
+ if (null === $map) {
+ return [];
+ }
+ foreach ($map as &$node) {
+ if (is_numeric($node)) {
+ $node = (string) $node;
+ } elseif (null === $node) {
+ $node = '';
+ } elseif (\is_bool($node)) {
+ $node = true === $node ? 'true' : 'false';
+ } elseif (\is_object($node)) {
+ $node = json_decode(json_encode($node), true);
+ }
+ }
+
+ return $map;
+ }
+
+ /**
+ * Anyify the value of map.
+ *
+ * @param array $m
+ *
+ * @return array the new anyfied map
+ */
+ public static function anyifyMapValue($m)
+ {
+ return $m;
+ }
+
+ /**
+ * Assert a value, if it is a boolean, return it, otherwise throws.
+ *
+ * @param mixed $value
+ *
+ * @return bool the boolean value
+ */
+ public static function assertAsBoolean($value)
+ {
+ if (\is_bool($value)) {
+ return $value;
+ }
+
+ throw new \InvalidArgumentException('It is not a boolean value.');
+ }
+
+ /**
+ * Assert a value, if it is a string, return it, otherwise throws.
+ *
+ * @param mixed $value
+ *
+ * @return string the string value
+ */
+ public static function assertAsString($value)
+ {
+ if (\is_string($value)) {
+ return $value;
+ }
+
+ throw new \InvalidArgumentException('It is not a string value.');
+ }
+
+ private static function is_bytes($value)
+ {
+ if (!\is_array($value)) {
+ return false;
+ }
+ $i = 0;
+ foreach ($value as $k => $ord) {
+ if ($k !== $i) {
+ return false;
+ }
+ if (!\is_int($ord)) {
+ return false;
+ }
+ if ($ord < 0 || $ord > 255) {
+ return false;
+ }
+ ++$i;
+ }
+
+ return true;
+ }
+
+ /**
+ * Assert a value, if it is a bytes, return it, otherwise throws.
+ *
+ * @param mixed $value
+ *
+ * @return bytes the bytes value
+ */
+ public static function assertAsBytes($value)
+ {
+ if (self::is_bytes($value)) {
+ return $value;
+ }
+
+ throw new \InvalidArgumentException('It is not a bytes value.');
+ }
+
+ /**
+ * Assert a value, if it is a number, return it, otherwise throws.
+ *
+ * @param mixed $value
+ *
+ * @return int the number value
+ */
+ public static function assertAsNumber($value)
+ {
+ if (\is_numeric($value)) {
+ return $value;
+ }
+
+ throw new \InvalidArgumentException('It is not a number value.');
+ }
+
+ /**
+ * Assert a value, if it is a integer, return it, otherwise throws
+ * @param mixed $value
+ * @return int the integer value
+ */
+ public static function assertAsInteger($value){
+ if (\is_int($value)) {
+ return $value;
+ }
+
+ throw new \InvalidArgumentException('It is not a int value.');
+ }
+
+ /**
+ * Assert a value, if it is a map, return it, otherwise throws.
+ *
+ * @param $any
+ *
+ * @return array the map value
+ */
+ public static function assertAsMap($any)
+ {
+ if (\is_array($any)) {
+ return $any;
+ }
+
+ throw new \InvalidArgumentException('It is not a map value.');
+ }
+
+ public static function assertAsArray($any){
+ if (\is_array($any)) {
+ return $any;
+ }
+
+ throw new \InvalidArgumentException('It is not a array value.');
+ }
+
+ /**
+ * Get user agent, if it userAgent is not null, splice it with defaultUserAgent and return, otherwise return
+ * defaultUserAgent.
+ *
+ * @param string $userAgent
+ *
+ * @return string the string value
+ */
+ public static function getUserAgent($userAgent = '')
+ {
+ if (empty(self::$defaultUserAgent)) {
+ self::$defaultUserAgent = sprintf('AlibabaCloud (%s; %s) PHP/%s Core/3.1 TeaDSL/1', PHP_OS, \PHP_SAPI, PHP_VERSION);
+ }
+ if (!empty($userAgent)) {
+ return self::$defaultUserAgent . ' ' . $userAgent;
+ }
+
+ return self::$defaultUserAgent;
+ }
+
+ /**
+ * If the code between 200 and 300, return true, or return false.
+ *
+ * @param int $code
+ *
+ * @return bool
+ */
+ public static function is2xx($code)
+ {
+ return $code >= 200 && $code < 300;
+ }
+
+ /**
+ * If the code between 300 and 400, return true, or return false.
+ *
+ * @param int $code
+ *
+ * @return bool
+ */
+ public static function is3xx($code)
+ {
+ return $code >= 300 && $code < 400;
+ }
+
+ /**
+ * If the code between 400 and 500, return true, or return false.
+ *
+ * @param int $code
+ *
+ * @return bool
+ */
+ public static function is4xx($code)
+ {
+ return $code >= 400 && $code < 500;
+ }
+
+ /**
+ * If the code between 500 and 600, return true, or return false.
+ *
+ * @param int $code
+ *
+ * @return bool
+ */
+ public static function is5xx($code)
+ {
+ return $code >= 500 && $code < 600;
+ }
+
+ /**
+ * Validate model.
+ *
+ * @param Model $model
+ */
+ public static function validateModel($model)
+ {
+ if (null !== $model) {
+ $model->validate();
+ }
+ }
+
+ /**
+ * Model transforms to map[string]any.
+ *
+ * @param Model $model
+ *
+ * @return array
+ */
+ public static function toMap($model)
+ {
+ if (null === $model) {
+ return [];
+ }
+ $map = $model->toMap();
+ $names = $model->getName();
+ $vars = get_object_vars($model);
+ foreach ($vars as $k => $v) {
+ if (false !== strpos($k, 'Shrink') && !isset($names[$k])) {
+ // A field that has the suffix `Shrink` and is not a Model class property.
+ $targetKey = ucfirst(substr($k, 0, \strlen($k) - 6));
+ if (isset($map[$targetKey])) {
+ // $targetKey exists in $map.
+ $map[$targetKey] = $v;
+ }
+ }
+ }
+
+ return $map;
+ }
+
+ /**
+ * Suspends the current thread for the specified number of milliseconds.
+ *
+ * @param int $millisecond
+ */
+ public static function sleep($millisecond)
+ {
+ usleep($millisecond * 1000);
+ }
+
+ /**
+ * Transform input as array.
+ *
+ * @param mixed $input
+ *
+ * @return array
+ */
+ public static function toArray($input)
+ {
+ if (\is_array($input)) {
+ foreach ($input as $k => &$v) {
+ $v = self::toArray($v);
+ }
+ } elseif ($input instanceof Model) {
+ $input = $input->toMap();
+ foreach ($input as $k => &$v) {
+ $v = self::toArray($v);
+ }
+ }
+
+ return $input;
+ }
+
+ /**
+ * Assert a value, if it is a readable, return it, otherwise throws.
+ *
+ * @param mixed $value
+ *
+ * @return Stream the readable value
+ */
+ public static function assertAsReadable($value)
+ {
+ if (\is_string($value)) {
+ return new Stream(
+ fopen('data://text/plain;base64,' .
+ base64_encode($value), 'r')
+ );
+ }
+ if ($value instanceof Stream) {
+ return $value;
+ }
+
+ throw new \InvalidArgumentException('It is not a stream value.');
+ }
+}
diff --git a/vendor/alibabacloud/tea-utils/src/Utils/RuntimeOptions.php b/vendor/alibabacloud/tea-utils/src/Utils/RuntimeOptions.php
new file mode 100644
index 000000000..de107fb0f
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/src/Utils/RuntimeOptions.php
@@ -0,0 +1,261 @@
+ 'autoretry',
+ 'ignoreSSL' => 'ignoreSSL',
+ 'key' => 'key',
+ 'cert' => 'cert',
+ 'ca' => 'ca',
+ 'maxAttempts' => 'max_attempts',
+ 'backoffPolicy' => 'backoff_policy',
+ 'backoffPeriod' => 'backoff_period',
+ 'readTimeout' => 'readTimeout',
+ 'connectTimeout' => 'connectTimeout',
+ 'httpProxy' => 'httpProxy',
+ 'httpsProxy' => 'httpsProxy',
+ 'noProxy' => 'noProxy',
+ 'maxIdleConns' => 'maxIdleConns',
+ 'localAddr' => 'localAddr',
+ 'socks5Proxy' => 'socks5Proxy',
+ 'socks5NetWork' => 'socks5NetWork',
+ 'keepAlive' => 'keepAlive',
+ ];
+ public function validate() {}
+ public function toMap() {
+ $res = [];
+ if (null !== $this->autoretry) {
+ $res['autoretry'] = $this->autoretry;
+ }
+ if (null !== $this->ignoreSSL) {
+ $res['ignoreSSL'] = $this->ignoreSSL;
+ }
+ if (null !== $this->key) {
+ $res['key'] = $this->key;
+ }
+ if (null !== $this->cert) {
+ $res['cert'] = $this->cert;
+ }
+ if (null !== $this->ca) {
+ $res['ca'] = $this->ca;
+ }
+ if (null !== $this->maxAttempts) {
+ $res['max_attempts'] = $this->maxAttempts;
+ }
+ if (null !== $this->backoffPolicy) {
+ $res['backoff_policy'] = $this->backoffPolicy;
+ }
+ if (null !== $this->backoffPeriod) {
+ $res['backoff_period'] = $this->backoffPeriod;
+ }
+ if (null !== $this->readTimeout) {
+ $res['readTimeout'] = $this->readTimeout;
+ }
+ if (null !== $this->connectTimeout) {
+ $res['connectTimeout'] = $this->connectTimeout;
+ }
+ if (null !== $this->httpProxy) {
+ $res['httpProxy'] = $this->httpProxy;
+ }
+ if (null !== $this->httpsProxy) {
+ $res['httpsProxy'] = $this->httpsProxy;
+ }
+ if (null !== $this->noProxy) {
+ $res['noProxy'] = $this->noProxy;
+ }
+ if (null !== $this->maxIdleConns) {
+ $res['maxIdleConns'] = $this->maxIdleConns;
+ }
+ if (null !== $this->localAddr) {
+ $res['localAddr'] = $this->localAddr;
+ }
+ if (null !== $this->socks5Proxy) {
+ $res['socks5Proxy'] = $this->socks5Proxy;
+ }
+ if (null !== $this->socks5NetWork) {
+ $res['socks5NetWork'] = $this->socks5NetWork;
+ }
+ if (null !== $this->keepAlive) {
+ $res['keepAlive'] = $this->keepAlive;
+ }
+ return $res;
+ }
+ /**
+ * @param array $map
+ * @return RuntimeOptions
+ */
+ public static function fromMap($map = []) {
+ $model = new self();
+ if(isset($map['autoretry'])){
+ $model->autoretry = $map['autoretry'];
+ }
+ if(isset($map['ignoreSSL'])){
+ $model->ignoreSSL = $map['ignoreSSL'];
+ }
+ if(isset($map['key'])){
+ $model->key = $map['key'];
+ }
+ if(isset($map['cert'])){
+ $model->cert = $map['cert'];
+ }
+ if(isset($map['ca'])){
+ $model->ca = $map['ca'];
+ }
+ if(isset($map['max_attempts'])){
+ $model->maxAttempts = $map['max_attempts'];
+ }
+ if(isset($map['backoff_policy'])){
+ $model->backoffPolicy = $map['backoff_policy'];
+ }
+ if(isset($map['backoff_period'])){
+ $model->backoffPeriod = $map['backoff_period'];
+ }
+ if(isset($map['readTimeout'])){
+ $model->readTimeout = $map['readTimeout'];
+ }
+ if(isset($map['connectTimeout'])){
+ $model->connectTimeout = $map['connectTimeout'];
+ }
+ if(isset($map['httpProxy'])){
+ $model->httpProxy = $map['httpProxy'];
+ }
+ if(isset($map['httpsProxy'])){
+ $model->httpsProxy = $map['httpsProxy'];
+ }
+ if(isset($map['noProxy'])){
+ $model->noProxy = $map['noProxy'];
+ }
+ if(isset($map['maxIdleConns'])){
+ $model->maxIdleConns = $map['maxIdleConns'];
+ }
+ if(isset($map['localAddr'])){
+ $model->localAddr = $map['localAddr'];
+ }
+ if(isset($map['socks5Proxy'])){
+ $model->socks5Proxy = $map['socks5Proxy'];
+ }
+ if(isset($map['socks5NetWork'])){
+ $model->socks5NetWork = $map['socks5NetWork'];
+ }
+ if(isset($map['keepAlive'])){
+ $model->keepAlive = $map['keepAlive'];
+ }
+ return $model;
+ }
+ /**
+ * @description whether to try again
+ * @var bool
+ */
+ public $autoretry;
+
+ /**
+ * @description ignore SSL validation
+ * @var bool
+ */
+ public $ignoreSSL;
+
+ /**
+ * @description privite key for client certificate
+ * @var string
+ */
+ public $key;
+
+ /**
+ * @description client certificate
+ * @var string
+ */
+ public $cert;
+
+ /**
+ * @description server certificate
+ * @var string
+ */
+ public $ca;
+
+ /**
+ * @description maximum number of retries
+ * @var int
+ */
+ public $maxAttempts;
+
+ /**
+ * @description backoff policy
+ * @var string
+ */
+ public $backoffPolicy;
+
+ /**
+ * @description backoff period
+ * @var int
+ */
+ public $backoffPeriod;
+
+ /**
+ * @description read timeout
+ * @var int
+ */
+ public $readTimeout;
+
+ /**
+ * @description connect timeout
+ * @var int
+ */
+ public $connectTimeout;
+
+ /**
+ * @description http proxy url
+ * @var string
+ */
+ public $httpProxy;
+
+ /**
+ * @description https Proxy url
+ * @var string
+ */
+ public $httpsProxy;
+
+ /**
+ * @description agent blacklist
+ * @var string
+ */
+ public $noProxy;
+
+ /**
+ * @description maximum number of connections
+ * @var int
+ */
+ public $maxIdleConns;
+
+ /**
+ * @description local addr
+ * @var string
+ */
+ public $localAddr;
+
+ /**
+ * @description SOCKS5 proxy
+ * @var string
+ */
+ public $socks5Proxy;
+
+ /**
+ * @description SOCKS5 netWork
+ * @var string
+ */
+ public $socks5NetWork;
+
+ /**
+ * @description whether to enable keep-alive
+ * @var bool
+ */
+ public $keepAlive;
+
+}
diff --git a/vendor/alibabacloud/tea-utils/tests/UtilsTest.php b/vendor/alibabacloud/tea-utils/tests/UtilsTest.php
new file mode 100644
index 000000000..3e210e2ad
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/tests/UtilsTest.php
@@ -0,0 +1,543 @@
+assertEquals([
+ 115, 116, 114, 105, 110, 103,
+ ], Utils::toBytes('string'));
+ $this->assertEquals([
+ 115, 116, 114, 105, 110, 103,
+ ], Utils::toBytes([
+ 115, 116, 114, 105, 110, 103,
+ ]));
+ }
+
+ public function testToString()
+ {
+ $this->assertEquals('string', Utils::toString([
+ 115, 116, 114, 105, 110, 103,
+ ]));
+ $this->assertEquals('string', Utils::toString('string'));
+ }
+
+ public function testParseJSON()
+ {
+ $this->assertEquals([
+ 'a' => 'b',
+ ], Utils::parseJSON('{"a":"b"}'));
+ }
+
+ public function testReadAsBytes()
+ {
+ $bytes = Utils::readAsBytes($this->getStream());
+ $this->assertEquals(123, $bytes[0]);
+ }
+
+ public function testReadAsString()
+ {
+ $string = Utils::readAsString($this->getStream());
+ $this->assertEquals($string[0], '{');
+ }
+
+ public function testReadAsJSON()
+ {
+ $result = Utils::readAsJSON($this->getStream());
+ $this->assertEquals('http://httpbin.org/get', $result['url']);
+ }
+
+ public function testGetNonce()
+ {
+ $nonce1 = Utils::getNonce();
+ $nonce2 = Utils::getNonce();
+
+ $this->assertNotEquals($nonce1, $nonce2);
+ }
+
+ public function testGetDateUTCString()
+ {
+ $gmdate = Utils::getDateUTCString();
+ $now = time();
+ $this->assertTrue(abs($now - strtotime($gmdate)) <= 1);
+ }
+
+ public function testDefaultString()
+ {
+ $this->assertEquals('', Utils::defaultString(null));
+ $this->assertEquals('default', Utils::defaultString(null, 'default'));
+ $this->assertEquals('real', Utils::defaultString('real', 'default'));
+ }
+
+ public function testDefaultNumber()
+ {
+ $this->assertEquals(0, Utils::defaultNumber(null));
+ $this->assertEquals(0, Utils::defaultNumber(0, 3));
+ $this->assertEquals(404, Utils::defaultNumber(null, 404));
+ $this->assertEquals(200, Utils::defaultNumber(200, 404));
+ }
+
+ public function testToFormString()
+ {
+ $query = [
+ 'foo' => 'bar',
+ 'empty' => '',
+ 'a' => null,
+ 'withWhiteSpace' => 'a b',
+ ];
+ $this->assertEquals('foo=bar&empty=&withWhiteSpace=a%20b', Utils::toFormString($query));
+
+ $object = json_decode(json_encode($query));
+ $this->assertEquals('foo=bar&empty=&withWhiteSpace=a%20b', Utils::toFormString($object));
+ }
+
+ public function testToJSONString()
+ {
+ $object = new \stdClass();
+ $this->assertJson(Utils::toJSONString($object));
+ $this->assertEquals('[]', Utils::toJSONString([]));
+ $this->assertEquals('["foo"]', Utils::toJSONString(['foo']));
+ $this->assertEquals(
+ '{"str":"test","number":1,"bool":false,"null":null,"chinese":"中文","http":"https://aliyun.com:8080/zh/中文.html"}',
+ Utils::toJSONString([
+ 'str' => 'test',
+ 'number' => 1,
+ 'bool' => FALSE,
+ 'null' => null,
+ 'chinese' => '中文',
+ 'http' => 'https://aliyun.com:8080/zh/中文.html',
+ ])
+ );
+ $this->assertEquals('1', Utils::toJSONString(1));
+ $this->assertEquals('true', Utils::toJSONString(TRUE));
+ $this->assertEquals('null', Utils::toJSONString(null));
+ }
+
+ public function testEmpty()
+ {
+ $this->assertTrue(Utils::_empty(''));
+ $this->assertFalse(Utils::_empty('not empty'));
+ }
+
+ public function testEqualString()
+ {
+ $this->assertTrue(Utils::equalString('a', 'a'));
+ $this->assertFalse(Utils::equalString('a', 'b'));
+ }
+
+ public function testEqualNumber()
+ {
+ $this->assertTrue(Utils::equalNumber(1, 1));
+ $this->assertFalse(Utils::equalNumber(1, 2));
+ }
+
+ public function testIsUnset()
+ {
+ $this->assertTrue(Utils::isUnset($a));
+ $b = 1;
+ $this->assertFalse(Utils::isUnset($b));
+ }
+
+ public function testStringifyMapValue()
+ {
+ $this->assertEquals([], Utils::stringifyMapValue(null));
+ $this->assertEquals([
+ 'foo' => 'bar',
+ 'null' => '',
+ 'true' => 'true',
+ 'false' => 'false',
+ 'number' => '1000',
+ ], Utils::stringifyMapValue([
+ 'foo' => 'bar',
+ 'null' => null,
+ 'true' => true,
+ 'false' => false,
+ 'number' => 1000,
+ ]));
+ }
+
+ public function testAnyifyMapValue()
+ {
+ $this->assertEquals([
+ 'foo' => 'bar',
+ 'null' => null,
+ 'true' => true,
+ 'false' => false,
+ 'number' => 1000,
+ ], Utils::anyifyMapValue([
+ 'foo' => 'bar',
+ 'null' => null,
+ 'true' => true,
+ 'false' => false,
+ 'number' => 1000,
+ ]));
+ }
+
+ public function testAssertAsBoolean()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a boolean value.');
+ Utils::assertAsBoolean('true');
+
+ try {
+ $map = true;
+ $this->assertEquals($map, Utils::assertAsBoolean($map));
+ } catch (\Exception $e) {
+ // should not be here
+ $this->assertTrue(false);
+ }
+ }
+
+ public function testAssertAsString()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a string value.');
+ Utils::assertAsString(123);
+
+ try {
+ $map = '123';
+ $this->assertEquals($map, Utils::assertAsString($map));
+ } catch (\Exception $e) {
+ // should not be here
+ $this->assertTrue(false);
+ }
+ }
+
+ public function testAssertAsBytes()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a bytes value.');
+ // failed because $var is not array
+ Utils::assertAsBytes('test');
+ // failed because $var is map not array
+ Utils::assertAsBytes(['foo' => 1]);
+ // failed because item value is not int
+ Utils::assertAsBytes(['1']);
+ // failed because item value is out off range
+ Utils::assertAsBytes([256]);
+
+ try {
+ // success
+ $map = [1, 2, 3];
+ $this->assertEquals($map, Utils::assertAsBytes($map));
+ $this->assertEquals([
+ 115, 116, 114, 105, 110, 103,
+ ], Utils::assertAsBytes(Utils::toBytes('string')));
+ } catch (\Exception $e) {
+ // should not be here
+ $this->assertTrue(false);
+ }
+ }
+
+ public function testAssertAsNumber()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a number value.');
+ Utils::assertAsNumber('is not number');
+
+ try {
+ $map = 123;
+ $this->assertEquals($map, Utils::assertAsNumber($map));
+ } catch (\Exception $e) {
+ // should not be here
+ $this->assertTrue(false);
+ }
+ }
+
+ public function testAssertAsInteger()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a int value.');
+ Utils::assertAsInteger('is not int');
+
+ try {
+ $map = 123;
+ $this->assertEquals($map, Utils::assertAsInteger($map));
+ } catch (\Exception $e) {
+ // should not be here
+ $this->assertTrue(false);
+ }
+ }
+
+ public function testAssertAsMap()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a map value.');
+ Utils::assertAsMap('is not array');
+
+ try {
+ $map = ['foo' => 'bar'];
+ $this->assertEquals($map, Utils::assertAsMap($map));
+ } catch (\Exception $e) {
+ // should not be here
+ $this->assertTrue(false);
+ }
+ }
+
+ public function testAssertAsArray()
+ {
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a array value.');
+ Utils::assertAsArray('is not array');
+
+ try {
+ $map = ['foo'];
+ $this->assertEquals($map, Utils::assertAsArray($map));
+ } catch (\Exception $e) {
+ // should not be here
+ $this->assertTrue(false);
+ }
+ }
+
+ public function testGetUserAgent()
+ {
+ $this->assertTrue(false !== strpos(Utils::getUserAgent('CustomUserAgent'), 'CustomUserAgent'));
+ }
+
+ public function testIs2xx()
+ {
+ $this->assertTrue(Utils::is2xx(200));
+ $this->assertFalse(Utils::is2xx(300));
+ }
+
+ public function testIs3xx()
+ {
+ $this->assertTrue(Utils::is3xx(300));
+ $this->assertFalse(Utils::is3xx(400));
+ }
+
+ public function testIs4xx()
+ {
+ $this->assertTrue(Utils::is4xx(400));
+ $this->assertFalse(Utils::is4xx(500));
+ }
+
+ public function testIs5xx()
+ {
+ $this->assertTrue(Utils::is5xx(500));
+ $this->assertFalse(Utils::is5xx(600));
+ }
+
+ public function testToMap()
+ {
+ $from = new RequestTest();
+ $from->query = new RequestTestQuery([
+ 'booleanParamInQuery' => true,
+ 'mapParamInQuery' => [1, 2, 3],
+ ]);
+ $this->assertTrue($from->query->booleanParamInQuery);
+ $this->assertEquals([1, 2, 3], $from->query->mapParamInQuery);
+
+ $target = new RequestShrinkTest([]);
+ $this->convert($from, $target);
+ $this->assertEquals([
+ 'BooleanParamInQuery' => true,
+ 'MapParamInQuery' => [1, 2, 3],
+ ], $target->query->toMap());
+
+ $target->query->mapParamInQueryShrink = json_encode($from->query->mapParamInQuery);
+ $this->assertEquals([
+ 'BooleanParamInQuery' => true,
+ 'MapParamInQuery' => '[1,2,3]',
+ ], Utils::toMap($target->query));
+ }
+
+ public function testSleep()
+ {
+ $before = microtime(true) * 1000;
+ Utils::sleep(1000);
+ $after = microtime(true) * 1000;
+ $sub = $after - $before;
+ $this->assertTrue(990 <= $sub && $sub <= 1100);
+ }
+
+ public function testToArray()
+ {
+ $model = new RequestTest();
+ $model->query = 'foo';
+ $this->assertEquals([
+ ['query' => 'foo'],
+ ], Utils::toArray([$model]));
+
+ $subModel = new RequestTest();
+ $subModel->query = 'bar';
+ $model->query = $subModel;
+ $this->assertEquals([
+ ['query' => ['query' => 'bar']],
+ ], Utils::toArray([$model]));
+ }
+
+ public function testAssertAsReadable()
+ {
+ $s0 = Utils::assertAsReadable('string content');
+ $this->assertTrue($s0 instanceof Stream);
+
+ $s1 = Utils::assertAsReadable($s0);
+ $this->assertEquals($s1, $s0);
+
+ $this->expectException(\InvalidArgumentException::class);
+ $this->expectExceptionMessage('It is not a stream value.');
+ Utils::assertAsReadable(0);
+ }
+
+ public function testRuntimeOptions()
+ {
+ $opts = new RuntimeOptions([
+ "autoretry" => false,
+ "ignoreSSL" => false,
+ "key" => "key",
+ "cert" => "cert",
+ "ca" => "ca",
+ "maxAttempts" => 3,
+ "backoffPolicy" => "backoffPolicy",
+ "backoffPeriod" => 10,
+ "readTimeout" => 3000,
+ "connectTimeout" => 3000,
+ "httpProxy" => "httpProxy",
+ "httpsProxy" => "httpsProxy",
+ "noProxy" => "noProxy",
+ "maxIdleConns" => 300,
+ "keepAlive" => true,
+ ]);
+ $this->assertEquals(false, $opts->autoretry);
+ $this->assertEquals(false, $opts->ignoreSSL);
+ $this->assertEquals("key", $opts->key);
+ $this->assertEquals("cert", $opts->cert);
+ $this->assertEquals("ca", $opts->ca);
+ $this->assertEquals(3, $opts->maxAttempts);
+ $this->assertEquals("backoffPolicy", $opts->backoffPolicy);
+ $this->assertEquals(10, $opts->backoffPeriod);
+ $this->assertEquals(3000, $opts->readTimeout);
+ $this->assertEquals(3000, $opts->connectTimeout);
+ $this->assertEquals("httpProxy", $opts->httpProxy);
+ $this->assertEquals("httpsProxy", $opts->httpsProxy);
+ $this->assertEquals("noProxy", $opts->noProxy);
+ $this->assertEquals(300, $opts->maxIdleConns);
+ $this->assertEquals(true, $opts->keepAlive);
+ }
+
+ private function convert($body, &$content)
+ {
+ $class = new \ReflectionClass($body);
+ foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) {
+ $name = $property->getName();
+ if (!$property->isStatic()) {
+ $value = $property->getValue($body);
+ if ($value instanceof StreamInterface) {
+ continue;
+ }
+ $content->{$name} = $value;
+ }
+ }
+ }
+}
+
+/**
+ * @internal
+ * @coversNothing
+ */
+class RequestTest extends Model
+{
+ /**
+ * @var RequestTestQuery
+ */
+ public $query;
+}
+
+/**
+ * @internal
+ * @coversNothing
+ */
+class RequestShrinkTest extends Model
+{
+ /**
+ * @var RequestTestShrinkQuery
+ */
+ public $query;
+}
+
+class RequestTestQuery extends Model
+{
+ /**
+ * @description test
+ *
+ * @var bool
+ */
+ public $booleanParamInQuery;
+
+ /**
+ * @description test
+ *
+ * @var array
+ */
+ public $mapParamInQuery;
+ protected $_name = [
+ 'booleanParamInQuery' => 'BooleanParamInQuery',
+ 'mapParamInQuery' => 'MapParamInQuery',
+ ];
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->booleanParamInQuery) {
+ $res['BooleanParamInQuery'] = $this->booleanParamInQuery;
+ }
+ if (null !== $this->mapParamInQuery) {
+ $res['MapParamInQuery'] = $this->mapParamInQuery;
+ }
+
+ return $res;
+ }
+}
+
+class RequestTestShrinkQuery extends Model
+{
+ /**
+ * @description test
+ *
+ * @var float
+ */
+ public $booleanParamInQuery;
+
+ /**
+ * @description test
+ *
+ * @var string
+ */
+ public $mapParamInQueryShrink;
+ protected $_name = [
+ 'booleanParamInQuery' => 'BooleanParamInQuery',
+ 'mapParamInQueryShrink' => 'MapParamInQuery',
+ ];
+
+ public function toMap()
+ {
+ $res = [];
+ if (null !== $this->booleanParamInQuery) {
+ $res['BooleanParamInQuery'] = $this->booleanParamInQuery;
+ }
+ if (null !== $this->mapParamInQueryShrink) {
+ $res['MapParamInQuery'] = $this->mapParamInQueryShrink;
+ }
+
+ return $res;
+ }
+}
diff --git a/vendor/alibabacloud/tea-utils/tests/bootstrap.php b/vendor/alibabacloud/tea-utils/tests/bootstrap.php
new file mode 100644
index 000000000..c62c4e81b
--- /dev/null
+++ b/vendor/alibabacloud/tea-utils/tests/bootstrap.php
@@ -0,0 +1,3 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/tea-xml/README-CN.md b/vendor/alibabacloud/tea-xml/README-CN.md
new file mode 100644
index 000000000..0ac19d8a7
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/README-CN.md
@@ -0,0 +1,31 @@
+English | [简体中文](README-CN.md)
+
+
+
+## Alibaba Cloud Tea XML Library for PHP
+
+## Installation
+
+### Composer
+
+```bash
+composer require alibabacloud/tea-xml
+```
+
+## Issues
+
+[Opening an Issue](https://github.com/aliyun/tea-xml/issues/new), Issues not conforming to the guidelines may be closed immediately.
+
+## Changelog
+
+Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
+
+## References
+
+* [Latest Release](https://github.com/aliyun/tea-xml)
+
+## License
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/tea-xml/README.md b/vendor/alibabacloud/tea-xml/README.md
new file mode 100644
index 000000000..b0f3ea01d
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/README.md
@@ -0,0 +1,31 @@
+[English](README.md) | 简体中文
+
+
+
+## Alibaba Cloud Tea XML Library for PHP
+
+## 安装
+
+### Composer
+
+```bash
+composer require alibabacloud/tea-xml
+```
+
+## 问题
+
+[提交 Issue](https://github.com/aliyun/tea-xml/issues/new),不符合指南的问题可能会立即关闭。
+
+## 发行说明
+
+每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
+
+## 相关
+
+* [最新源码](https://github.com/aliyun/tea-xml)
+
+## 许可证
+
+[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/tea-xml/composer.json b/vendor/alibabacloud/tea-xml/composer.json
new file mode 100644
index 000000000..5322b0448
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/composer.json
@@ -0,0 +1,44 @@
+{
+ "name": "alibabacloud/tea-xml",
+ "description": "Alibaba Cloud Tea XML Library for PHP",
+ "type": "library",
+ "license": "Apache-2.0",
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "require": {
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*",
+ "symfony/var-dumper": "*"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\XML\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\XML\\Tests\\": "tests"
+ }
+ },
+ "scripts": {
+ "fixer": "php-cs-fixer fix ./",
+ "test": [
+ "@clearCache",
+ "phpunit --colors=always"
+ ],
+ "clearCache": "rm -rf cache/*"
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true,
+ "minimum-stability": "dev"
+}
diff --git a/vendor/alibabacloud/tea-xml/phpunit.xml b/vendor/alibabacloud/tea-xml/phpunit.xml
new file mode 100644
index 000000000..d43dde9f6
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/phpunit.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+ tests
+
+
+ ./tests
+
+
+
+
+
+ integration
+
+
+
+
+
+
+
+
+
+
+
+ ./src
+
+
+
diff --git a/vendor/alibabacloud/tea-xml/src/ArrayToXml.php b/vendor/alibabacloud/tea-xml/src/ArrayToXml.php
new file mode 100644
index 000000000..d811c6324
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/src/ArrayToXml.php
@@ -0,0 +1,151 @@
+version = $xmlVersion;
+ $this->encoding = $xmlEncoding;
+ }
+
+ /**
+ * Build an XML Data Set.
+ *
+ * @param array $data Associative Array containing values to be parsed into an XML Data Set(s)
+ * @param string $startElement Root Opening Tag, default data
+ *
+ * @return string XML String containing values
+ * @return mixed Boolean false on failure, string XML result on success
+ */
+ public function buildXML($data, $startElement = 'data')
+ {
+ if (!\is_array($data)) {
+ $err = 'Invalid variable type supplied, expected array not found on line ' . __LINE__ . ' in Class: ' . __CLASS__ . ' Method: ' . __METHOD__;
+ trigger_error($err);
+
+ return false; //return false error occurred
+ }
+ $xml = new XmlWriter();
+ $xml->openMemory();
+ $xml->startDocument($this->version, $this->encoding);
+ $xml->startElement($startElement);
+ $data = $this->writeAttr($xml, $data);
+ $this->writeEl($xml, $data);
+ $xml->endElement(); //write end element
+ //returns the XML results
+ return $xml->outputMemory(true);
+ }
+
+ /**
+ * Write keys in $data prefixed with @ as XML attributes, if $data is an array.
+ * When an @ prefixed key is found, a '%' key is expected to indicate the element itself,
+ * and '#' prefixed key indicates CDATA content.
+ *
+ * @param XMLWriter $xml object
+ * @param array $data with attributes filtered out
+ *
+ * @return array $data | $nonAttributes
+ */
+ protected function writeAttr(XMLWriter $xml, $data)
+ {
+ if (\is_array($data)) {
+ $nonAttributes = [];
+ foreach ($data as $key => $val) {
+ //handle an attribute with elements
+ if ('@' == $key[0]) {
+ $xml->writeAttribute(substr($key, 1), $val);
+ } elseif ('%' == $key[0]) {
+ if (\is_array($val)) {
+ $nonAttributes = $val;
+ } else {
+ $xml->text($val);
+ }
+ } elseif ('#' == $key[0]) {
+ if (\is_array($val)) {
+ $nonAttributes = $val;
+ } else {
+ $xml->startElement(substr($key, 1));
+ $xml->writeCData($val);
+ $xml->endElement();
+ }
+ } elseif ('!' == $key[0]) {
+ if (\is_array($val)) {
+ $nonAttributes = $val;
+ } else {
+ $xml->writeCData($val);
+ }
+ } //ignore normal elements
+ else {
+ $nonAttributes[$key] = $val;
+ }
+ }
+
+ return $nonAttributes;
+ }
+
+ return $data;
+ }
+
+ /**
+ * Write XML as per Associative Array.
+ *
+ * @param XMLWriter $xml object
+ * @param array $data Associative Data Array
+ */
+ protected function writeEl(XMLWriter $xml, $data)
+ {
+ foreach ($data as $key => $value) {
+ if (\is_array($value) && !$this->isAssoc($value)) { //numeric array
+ foreach ($value as $itemValue) {
+ if (\is_array($itemValue)) {
+ $xml->startElement($key);
+ $itemValue = $this->writeAttr($xml, $itemValue);
+ $this->writeEl($xml, $itemValue);
+ $xml->endElement();
+ } else {
+ $itemValue = $this->writeAttr($xml, $itemValue);
+ $xml->writeElement($key, "{$itemValue}");
+ }
+ }
+ } elseif (\is_array($value)) { //associative array
+ $xml->startElement($key);
+ $value = $this->writeAttr($xml, $value);
+ $this->writeEl($xml, $value);
+ $xml->endElement();
+ } else { //scalar
+ $value = $this->writeAttr($xml, $value);
+ $xml->writeElement($key, "{$value}");
+ }
+ }
+ }
+
+ /**
+ * Check if array is associative with string based keys
+ * FROM: http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/4254008#4254008.
+ *
+ * @param array $array Array to check
+ *
+ * @return bool
+ */
+ protected function isAssoc($array)
+ {
+ return (bool) \count(array_filter(array_keys($array), 'is_string'));
+ }
+}
diff --git a/vendor/alibabacloud/tea-xml/src/XML.php b/vendor/alibabacloud/tea-xml/src/XML.php
new file mode 100644
index 000000000..3550e0467
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/src/XML.php
@@ -0,0 +1,59 @@
+ $v) {
+ if (isset($prop[$k])) {
+ $target[$k] = $v;
+ }
+ }
+ return $target;
+ }
+ }
+
+ public static function toXML($array)
+ {
+ $arrayToXml = new ArrayToXml();
+ if (\is_object($array)) {
+ $tmp = explode('\\', \get_class($array));
+ $rootName = $tmp[\count($tmp) - 1];
+ $data = json_decode(json_encode($array), true);
+ } else {
+ $tmp = $array;
+ reset($tmp);
+ $rootName = key($tmp);
+ $data = $array[$rootName];
+ }
+ ksort($data);
+
+ return $arrayToXml->buildXML($data, $rootName);
+ }
+
+ private static function parse($xml)
+ {
+ if (\PHP_VERSION_ID < 80000) {
+ libxml_disable_entity_loader(true);
+ }
+
+ return json_decode(
+ json_encode(
+ simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)
+ ),
+ true
+ );
+ }
+}
diff --git a/vendor/alibabacloud/tea-xml/tests/XMLTest.php b/vendor/alibabacloud/tea-xml/tests/XMLTest.php
new file mode 100644
index 000000000..9bc5059f5
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/tests/XMLTest.php
@@ -0,0 +1,59 @@
+\n" .
+ "\n" .
+ " test\n" .
+ " 1\n" .
+ "\n";
+
+ public function testParseXml()
+ {
+ $res = XML::parseXml($this->xmlStr, new tests());
+ $name = $res['name'];
+ $value = $res['value'];
+ $this->assertEquals('test', $name);
+ $this->assertEquals(1, $value);
+
+ $res = XML::parseXml($this->xmlStr, null);
+ $name = $res['name'];
+ $value = $res['value'];
+ $this->assertEquals('test', $name);
+ $this->assertEquals(1, $value);
+ }
+
+ public function testArrayToXML()
+ {
+ $data = [
+ 'tests' => [
+ 'name' => 'test',
+ 'value' => 1,
+ ],
+ ];
+ $this->assertEquals("\ntest1", XML::toXML($data));
+ }
+
+ public function testObjectToXML()
+ {
+ $obj = new tests();
+ $obj->name = 'test';
+ $obj->value = 1;
+ $this->assertEquals("\ntest1", XML::toXML($obj));
+ }
+}
+
+class tests
+{
+ public $name = '';
+ public $value = 0;
+}
diff --git a/vendor/alibabacloud/tea-xml/tests/bootstrap.php b/vendor/alibabacloud/tea-xml/tests/bootstrap.php
new file mode 100644
index 000000000..c62c4e81b
--- /dev/null
+++ b/vendor/alibabacloud/tea-xml/tests/bootstrap.php
@@ -0,0 +1,3 @@
+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__)
+ );
diff --git a/vendor/alibabacloud/tea/CHANGELOG.md b/vendor/alibabacloud/tea/CHANGELOG.md
new file mode 100644
index 000000000..a3b6a5332
--- /dev/null
+++ b/vendor/alibabacloud/tea/CHANGELOG.md
@@ -0,0 +1,148 @@
+# CHANGELOG
+
+## 3.1.22 - 2021-05-11
+
+- Deprecate `stream_for` method.
+
+## 3.1.21 - 2021-03-15
+
+- Supported set proxy&timeout on request.
+
+## 3.1.20 - 2020-12-02
+
+- Fix the warning when the Tea::merge method received empty arguments.
+
+## 3.1.19 - 2020-10-09
+
+- Fix the error when the code value is a string.
+
+## 3.1.18 - 2020-09-28
+
+- Require Guzzle Version 7.0
+
+## 3.1.17 - 2020-09-24
+
+- TeaUnableRetryError support get error info.
+
+## 3.1.16 - 2020-08-31
+
+- Fix the Maximum function nesting level error when repeated network requests.
+
+## 3.1.15 - 2020-07-28
+
+- Improved validatePattern method.
+
+## 3.1.14 - 2020-07-03
+
+- Supported set properties of TeaError with `ErrorInfo`.
+
+## 3.1.13 - 2020-06-09
+
+- Reduce dependencies.
+
+## 3.1.12 - 2020-05-13
+
+- Add validate method.
+- Supported validate maximun&minimun of property.
+
+## 3.1.11 - 2020-05-07
+
+- Fixed error when class is undefined.
+
+## 3.1.10 - 2020-05-07
+
+- Fixed error when '$item' of array is null
+
+## 3.1.9 - 2020-04-13
+
+- TeaUnableRetryError add $lastException param.
+
+## 3.1.8 - 2020-04-02
+
+- Added some static methods of Model to validate fields of Model.
+
+## 3.1.7 - 2020-03-27
+
+- Improve Tea::isRetryable method.
+
+## 3.1.6 - 2020-03-25
+
+- Fixed bug when body is StreamInterface.
+
+## 3.1.5 - 2020-03-25
+
+- Improve Model.toMap method.
+- Improve Tea.merge method.
+- Fixed tests.
+
+## 3.1.4 - 2020-03-20
+
+- Added Tea::merge method.
+- Change Tea::isRetryable method.
+
+## 3.1.3 - 2020-03-20
+
+- Model: added toModel method.
+
+## 3.1.2 - 2020-03-19
+
+- Model constructor supported array type parameter.
+
+## 3.1.1 - 2020-03-18
+
+- Fixed bug : set method failed.
+- Fixed bug : get empty contents form body.
+
+## 3.1.0 - 2020-03-13
+
+- TeaUnableRetryError add 'lastRequest' property.
+- Change Tea.send() method return.
+- Fixed Tea. allowRetry() method.
+
+## 3.0.0 - 2020-02-14
+- Rename package name.
+
+## 2.0.3 - 2020-02-14
+- Improved Exception.
+
+## 2.0.2 - 2019-09-11
+- Supported `String`.
+
+## 2.0.1 - 2019-08-15
+- Supported `IteratorAggregate`.
+
+## 2.0.0 - 2019-08-14
+- Design `Request` as a standard `PsrRequest`.
+
+## 1.0.10 - 2019-08-12
+- Added `__toString` for `Response`.
+
+## 1.0.9 - 2019-08-01
+- Updated `Middleware`.
+
+## 1.0.8 - 2019-07-29
+- Supported `TransferStats`.
+
+## 1.0.7 - 2019-07-27
+- Improved request.
+
+## 1.0.6 - 2019-07-23
+- Trim key for parameter.
+
+## 1.0.5 - 2019-07-23
+- Supported default protocol.
+
+## 1.0.4 - 2019-07-22
+- Added `toArray()`.
+
+## 1.0.3 - 2019-05-02
+- Improved `Request`.
+
+## 1.0.2 - 2019-05-02
+- Added getHeader/getHeaders.
+
+## 1.0.1 - 2019-04-02
+- Improved design.
+
+## 1.0.0 - 2019-05-02
+- Initial release of the AlibabaCloud Tea Version 1.0.0 on Packagist See for more information.
diff --git a/vendor/alibabacloud/tea/LICENSE.md b/vendor/alibabacloud/tea/LICENSE.md
new file mode 100644
index 000000000..ec13fccd3
--- /dev/null
+++ b/vendor/alibabacloud/tea/LICENSE.md
@@ -0,0 +1,13 @@
+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.
diff --git a/vendor/alibabacloud/tea/README.md b/vendor/alibabacloud/tea/README.md
new file mode 100644
index 000000000..a8cbe661e
--- /dev/null
+++ b/vendor/alibabacloud/tea/README.md
@@ -0,0 +1,16 @@
+
+## Installation
+```
+composer require alibabacloud/tea --optimize-autoloader
+```
+> Some users may not be able to install due to network problems, you can try to switch the Composer mirror.
+
+
+## Changelog
+Detailed changes for each release are documented in the [release notes](CHANGELOG.md).
+
+
+## License
+[Apache-2.0](LICENSE.md)
+
+Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
diff --git a/vendor/alibabacloud/tea/composer.json b/vendor/alibabacloud/tea/composer.json
new file mode 100644
index 000000000..163689eca
--- /dev/null
+++ b/vendor/alibabacloud/tea/composer.json
@@ -0,0 +1,80 @@
+{
+ "name": "alibabacloud/tea",
+ "homepage": "https://www.alibabacloud.com/",
+ "description": "Client of Tea for PHP",
+ "keywords": [
+ "tea",
+ "client",
+ "alibabacloud",
+ "cloud"
+ ],
+ "type": "library",
+ "license": "Apache-2.0",
+ "support": {
+ "source": "https://github.com/aliyun/tea-php",
+ "issues": "https://github.com/aliyun/tea-php/issues"
+ },
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com",
+ "homepage": "http://www.alibabacloud.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.5",
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-simplexml": "*",
+ "ext-xmlwriter": "*",
+ "guzzlehttp/guzzle": "^6.3|^7.0",
+ "adbario/php-dot-notation": "^2.4"
+ },
+ "require-dev": {
+ "symfony/dotenv": "^3.4",
+ "phpunit/phpunit": "*",
+ "symfony/var-dumper": "^3.4"
+ },
+ "suggest": {
+ "ext-sockets": "To use client-side monitoring"
+ },
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\Tests\\": "tests"
+ }
+ },
+ "config": {
+ "sort-packages": true,
+ "preferred-install": "dist",
+ "optimize-autoloader": true
+ },
+ "prefer-stable": true,
+ "minimum-stability": "dev",
+ "scripts": {
+ "cs": "phpcs --standard=PSR2 -n ./",
+ "cbf": "phpcbf --standard=PSR2 -n ./",
+ "fixer": "php-cs-fixer fix ./",
+ "test": [
+ "@clearCache",
+ "phpunit --colors=always"
+ ],
+ "unit": [
+ "@clearCache",
+ "phpunit --testsuite=Unit --colors=always"
+ ],
+ "feature": [
+ "@clearCache",
+ "phpunit --testsuite=Feature --colors=always"
+ ],
+ "clearCache": "rm -rf cache/*",
+ "coverage": "open cache/coverage/index.html"
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Exception/TeaError.php b/vendor/alibabacloud/tea/src/Exception/TeaError.php
new file mode 100644
index 000000000..f4ef0d9a9
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Exception/TeaError.php
@@ -0,0 +1,53 @@
+errorInfo = $errorInfo;
+ if (!empty($errorInfo)) {
+ $properties = ['name', 'message', 'code', 'data', 'description', 'accessDeniedDetail'];
+ foreach ($properties as $property) {
+ if (isset($errorInfo[$property])) {
+ $this->{$property} = $errorInfo[$property];
+ if ($property === 'data' && isset($errorInfo['data']['statusCode'])) {
+ $this->statusCode = $errorInfo['data']['statusCode'];
+ }
+ }
+ }
+ }
+ }
+
+ /**
+ * @return array
+ */
+ public function getErrorInfo()
+ {
+ return $this->errorInfo;
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php b/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php
new file mode 100644
index 000000000..30aa7f8ef
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php
@@ -0,0 +1,21 @@
+getErrorInfo();
+ }
+ parent::__construct($error_info, $lastException->getMessage(), $lastException->getCode(), $lastException);
+ $this->lastRequest = $lastRequest;
+ $this->lastException = $lastException;
+ }
+
+ public function getLastRequest()
+ {
+ return $this->lastRequest;
+ }
+
+ public function getLastException()
+ {
+ return $this->lastException;
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Helper.php b/vendor/alibabacloud/tea/src/Helper.php
new file mode 100644
index 000000000..f1c0fd4fc
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Helper.php
@@ -0,0 +1,112 @@
+ $ord) {
+ if ($k !== $i) {
+ return false;
+ }
+ if (!\is_int($ord)) {
+ return false;
+ }
+ if ($ord < 0 || $ord > 255) {
+ return false;
+ }
+ ++$i;
+ }
+
+ return true;
+ }
+
+ /**
+ * Convert a bytes to string(utf8).
+ *
+ * @param array $bytes
+ *
+ * @return string the return string
+ */
+ public static function toString($bytes)
+ {
+ $str = '';
+ foreach ($bytes as $ch) {
+ $str .= \chr($ch);
+ }
+
+ return $str;
+ }
+
+ /**
+ * @return array
+ */
+ public static function merge(array $arrays)
+ {
+ $result = [];
+ foreach ($arrays as $array) {
+ foreach ($array as $key => $value) {
+ if (\is_int($key)) {
+ $result[] = $value;
+
+ continue;
+ }
+
+ if (isset($result[$key]) && \is_array($result[$key])) {
+ $result[$key] = self::merge(
+ [$result[$key], $value]
+ );
+
+ continue;
+ }
+
+ $result[$key] = $value;
+ }
+ }
+
+ return $result;
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Model.php b/vendor/alibabacloud/tea/src/Model.php
new file mode 100644
index 000000000..538b55c53
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Model.php
@@ -0,0 +1,114 @@
+ $v) {
+ $this->{$k} = $v;
+ }
+ }
+ }
+
+ public function getName($name = null)
+ {
+ if (null === $name) {
+ return $this->_name;
+ }
+
+ return isset($this->_name[$name]) ? $this->_name[$name] : $name;
+ }
+
+ public function toMap()
+ {
+ $map = get_object_vars($this);
+ foreach ($map as $k => $m) {
+ if (0 === strpos($k, '_')) {
+ unset($map[$k]);
+ }
+ }
+ $res = [];
+ foreach ($map as $k => $v) {
+ $name = isset($this->_name[$k]) ? $this->_name[$k] : $k;
+ $res[$name] = $v;
+ }
+
+ return $res;
+ }
+
+ public function validate()
+ {
+ $vars = get_object_vars($this);
+ foreach ($vars as $k => $v) {
+ if (isset($this->_required[$k]) && $this->_required[$k] && empty($v)) {
+ throw new \InvalidArgumentException("{$k} is required.");
+ }
+ }
+ }
+
+ public static function validateRequired($fieldName, $field, $val = null)
+ {
+ if (true === $val && null === $field) {
+ throw new \InvalidArgumentException($fieldName . ' is required');
+ }
+ }
+
+ public static function validateMaxLength($fieldName, $field, $val = null)
+ {
+ if (null !== $field && \strlen($field) > (int) $val) {
+ throw new \InvalidArgumentException($fieldName . ' is exceed max-length: ' . $val);
+ }
+ }
+
+ public static function validateMinLength($fieldName, $field, $val = null)
+ {
+ if (null !== $field && \strlen($field) < (int) $val) {
+ throw new \InvalidArgumentException($fieldName . ' is less than min-length: ' . $val);
+ }
+ }
+
+ public static function validatePattern($fieldName, $field, $regex = '')
+ {
+ if (null !== $field && '' !== $field && !preg_match("/^{$regex}$/", $field)) {
+ throw new \InvalidArgumentException($fieldName . ' is not match ' . $regex);
+ }
+ }
+
+ public static function validateMaximum($fieldName, $field, $val)
+ {
+ if (null !== $field && $field > $val) {
+ throw new \InvalidArgumentException($fieldName . ' cannot be greater than ' . $val);
+ }
+ }
+
+ public static function validateMinimum($fieldName, $field, $val)
+ {
+ if (null !== $field && $field < $val) {
+ throw new \InvalidArgumentException($fieldName . ' cannot be less than ' . $val);
+ }
+ }
+
+ /**
+ * @param array $map
+ * @param Model $model
+ *
+ * @return mixed
+ */
+ public static function toModel($map, $model)
+ {
+ $names = $model->getName();
+ $names = array_flip($names);
+ foreach ($map as $key => $value) {
+ $name = isset($names[$key]) ? $names[$key] : $key;
+ $model->{$name} = $value;
+ }
+
+ return $model;
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Parameter.php b/vendor/alibabacloud/tea/src/Parameter.php
new file mode 100644
index 000000000..324a95d5e
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Parameter.php
@@ -0,0 +1,50 @@
+toArray());
+ }
+
+ /**
+ * @return array
+ */
+ public function getRealParameters()
+ {
+ $array = [];
+ $obj = new ReflectionObject($this);
+ $properties = $obj->getProperties();
+
+ foreach ($properties as $property) {
+ $docComment = $property->getDocComment();
+ $key = trim(Helper::findFromString($docComment, '@real', "\n"));
+ $value = $property->getValue($this);
+ $array[$key] = $value;
+ }
+
+ return $array;
+ }
+
+ /**
+ * @return array
+ */
+ public function toArray()
+ {
+ return $this->getRealParameters();
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Request.php b/vendor/alibabacloud/tea/src/Request.php
new file mode 100644
index 000000000..db49142e3
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Request.php
@@ -0,0 +1,123 @@
+method = $method;
+ }
+
+ /**
+ * These fields are compatible if you define other fields.
+ * Mainly for compatibility situations where the code generator cannot generate set properties.
+ *
+ * @return PsrRequest
+ */
+ public function getPsrRequest()
+ {
+ $this->assertQuery($this->query);
+
+ $request = clone $this;
+
+ $uri = $request->getUri();
+ if ($this->query) {
+ $uri = $uri->withQuery(http_build_query($this->query));
+ }
+
+ if ($this->port) {
+ $uri = $uri->withPort($this->port);
+ }
+
+ if ($this->protocol) {
+ $uri = $uri->withScheme($this->protocol);
+ }
+
+ if ($this->pathname) {
+ $uri = $uri->withPath($this->pathname);
+ }
+
+ if (isset($this->headers['host'])) {
+ $uri = $uri->withHost($this->headers['host']);
+ }
+
+ $request = $request->withUri($uri);
+ $request = $request->withMethod($this->method);
+
+ if ('' !== $this->body && null !== $this->body) {
+ if ($this->body instanceof StreamInterface) {
+ $request = $request->withBody($this->body);
+ } else {
+ $body = $this->body;
+ if (Helper::isBytes($this->body)) {
+ $body = Helper::toString($this->body);
+ }
+ if (\function_exists('\GuzzleHttp\Psr7\stream_for')) {
+ // @deprecated stream_for will be removed in guzzlehttp/psr7:2.0
+ $request = $request->withBody(\GuzzleHttp\Psr7\stream_for($body));
+ } else {
+ $request = $request->withBody(\GuzzleHttp\Psr7\Utils::streamFor($body));
+ }
+ }
+ }
+
+ if ($this->headers) {
+ foreach ($this->headers as $key => $value) {
+ $request = $request->withHeader($key, $value);
+ }
+ }
+
+ return $request;
+ }
+
+ /**
+ * @param array $query
+ */
+ private function assertQuery($query)
+ {
+ if (!\is_array($query) && $query !== null) {
+ throw new InvalidArgumentException('Query must be array.');
+ }
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Response.php b/vendor/alibabacloud/tea/src/Response.php
new file mode 100644
index 000000000..cb446e74e
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Response.php
@@ -0,0 +1,372 @@
+getStatusCode(),
+ $response->getHeaders(),
+ $response->getBody(),
+ $response->getProtocolVersion(),
+ $response->getReasonPhrase()
+ );
+ $this->headers = $response->getHeaders();
+ $this->body = $response->getBody();
+ $this->statusCode = $response->getStatusCode();
+ if ($this->body->isSeekable()) {
+ $this->body->seek(0);
+ }
+
+ if (Helper::isJson((string) $this->getBody())) {
+ $this->dot = new Dot($this->toArray());
+ } else {
+ $this->dot = new Dot();
+ }
+ }
+
+ /**
+ * @return string
+ */
+ public function __toString()
+ {
+ return (string) $this->getBody();
+ }
+
+ /**
+ * @param string $name
+ *
+ * @return null|mixed
+ */
+ public function __get($name)
+ {
+ $data = $this->dot->all();
+ if (!isset($data[$name])) {
+ return null;
+ }
+
+ return json_decode(json_encode($data))->{$name};
+ }
+
+ /**
+ * @param string $name
+ * @param mixed $value
+ */
+ public function __set($name, $value)
+ {
+ $this->dot->set($name, $value);
+ }
+
+ /**
+ * @param string $name
+ *
+ * @return bool
+ */
+ public function __isset($name)
+ {
+ return $this->dot->has($name);
+ }
+
+ /**
+ * @param $offset
+ */
+ public function __unset($offset)
+ {
+ $this->dot->delete($offset);
+ }
+
+ /**
+ * @return array
+ */
+ public function toArray()
+ {
+ return \GuzzleHttp\json_decode((string) $this->getBody(), true);
+ }
+
+ /**
+ * @param array|int|string $keys
+ * @param mixed $value
+ */
+ public function add($keys, $value = null)
+ {
+ return $this->dot->add($keys, $value);
+ }
+
+ /**
+ * @return array
+ */
+ public function all()
+ {
+ return $this->dot->all();
+ }
+
+ /**
+ * @param null|array|int|string $keys
+ */
+ public function clear($keys = null)
+ {
+ return $this->dot->clear($keys);
+ }
+
+ /**
+ * @param array|int|string $keys
+ */
+ public function delete($keys)
+ {
+ return $this->dot->delete($keys);
+ }
+
+ /**
+ * @param string $delimiter
+ * @param null|array $items
+ * @param string $prepend
+ *
+ * @return array
+ */
+ public function flatten($delimiter = '.', $items = null, $prepend = '')
+ {
+ return $this->dot->flatten($delimiter, $items, $prepend);
+ }
+
+ /**
+ * @param null|int|string $key
+ * @param mixed $default
+ *
+ * @return mixed
+ */
+ public function get($key = null, $default = null)
+ {
+ return $this->dot->get($key, $default);
+ }
+
+ /**
+ * @param array|int|string $keys
+ *
+ * @return bool
+ */
+ public function has($keys)
+ {
+ return $this->dot->has($keys);
+ }
+
+ /**
+ * @param null|array|int|string $keys
+ *
+ * @return bool
+ */
+ public function isEmpty($keys = null)
+ {
+ return $this->dot->isEmpty($keys);
+ }
+
+ /**
+ * @param array|self|string $key
+ * @param array|self $value
+ */
+ public function merge($key, $value = [])
+ {
+ return $this->dot->merge($key, $value);
+ }
+
+ /**
+ * @param array|self|string $key
+ * @param array|self $value
+ */
+ public function mergeRecursive($key, $value = [])
+ {
+ return $this->dot->mergeRecursive($key, $value);
+ }
+
+ /**
+ * @param array|self|string $key
+ * @param array|self $value
+ */
+ public function mergeRecursiveDistinct($key, $value = [])
+ {
+ return $this->dot->mergeRecursiveDistinct($key, $value);
+ }
+
+ /**
+ * @param null|int|string $key
+ * @param mixed $default
+ *
+ * @return mixed
+ */
+ public function pull($key = null, $default = null)
+ {
+ return $this->dot->pull($key, $default);
+ }
+
+ /**
+ * @param null|int|string $key
+ * @param mixed $value
+ *
+ * @return mixed
+ */
+ public function push($key = null, $value = null)
+ {
+ return $this->dot->push($key, $value);
+ }
+
+ /**
+ * Replace all values or values within the given key
+ * with an array or Dot object.
+ *
+ * @param array|self|string $key
+ * @param array|self $value
+ */
+ public function replace($key, $value = [])
+ {
+ return $this->dot->replace($key, $value);
+ }
+
+ /**
+ * Set a given key / value pair or pairs.
+ *
+ * @param array|int|string $keys
+ * @param mixed $value
+ */
+ public function set($keys, $value = null)
+ {
+ return $this->dot->set($keys, $value);
+ }
+
+ /**
+ * Replace all items with a given array.
+ *
+ * @param mixed $items
+ */
+ public function setArray($items)
+ {
+ return $this->dot->setArray($items);
+ }
+
+ /**
+ * Replace all items with a given array as a reference.
+ */
+ public function setReference(array &$items)
+ {
+ return $this->dot->setReference($items);
+ }
+
+ /**
+ * Return the value of a given key or all the values as JSON.
+ *
+ * @param mixed $key
+ * @param int $options
+ *
+ * @return string
+ */
+ public function toJson($key = null, $options = 0)
+ {
+ return $this->dot->toJson($key, $options);
+ }
+
+ /**
+ * Retrieve an external iterator.
+ */
+ #[\ReturnTypeWillChange]
+ public function getIterator()
+ {
+ return $this->dot->getIterator();
+ }
+
+ /**
+ * Whether a offset exists.
+ *
+ * @param $offset
+ *
+ * @return bool
+ */
+ #[\ReturnTypeWillChange]
+ public function offsetExists($offset)
+ {
+ return $this->dot->offsetExists($offset);
+ }
+
+ /**
+ * Offset to retrieve.
+ *
+ * @param $offset
+ *
+ * @return mixed
+ */
+ #[\ReturnTypeWillChange]
+ public function offsetGet($offset)
+ {
+ return $this->dot->offsetGet($offset);
+ }
+
+ /**
+ * Offset to set.
+ *
+ * @param $offset
+ * @param $value
+ */
+ #[\ReturnTypeWillChange]
+ public function offsetSet($offset, $value)
+ {
+ $this->dot->offsetSet($offset, $value);
+ }
+
+ /**
+ * Offset to unset.
+ *
+ * @param $offset
+ */
+ #[\ReturnTypeWillChange]
+ public function offsetUnset($offset)
+ {
+ $this->dot->offsetUnset($offset);
+ }
+
+ /**
+ * Count elements of an object.
+ *
+ * @param null $key
+ *
+ * @return int
+ */
+ #[\ReturnTypeWillChange]
+ public function count($key = null)
+ {
+ return $this->dot->count($key);
+ }
+}
diff --git a/vendor/alibabacloud/tea/src/Tea.php b/vendor/alibabacloud/tea/src/Tea.php
new file mode 100644
index 000000000..a138ad9a8
--- /dev/null
+++ b/vendor/alibabacloud/tea/src/Tea.php
@@ -0,0 +1,287 @@
+getPsrRequest();
+ }
+
+ $config = self::resolveConfig($config);
+
+ $res = self::client()->send(
+ $request,
+ $config
+ );
+
+ return new Response($res);
+ }
+
+ /**
+ * @return PromiseInterface
+ */
+ public static function sendAsync(RequestInterface $request, array $config = [])
+ {
+ if (method_exists($request, 'getPsrRequest')) {
+ $request = $request->getPsrRequest();
+ }
+
+ $config = self::resolveConfig($config);
+
+ return self::client()->sendAsync(
+ $request,
+ $config
+ );
+ }
+
+ /**
+ * @return Client
+ */
+ public static function client(array $config = [])
+ {
+ if (isset(self::$config['handler'])) {
+ $stack = self::$config['handler'];
+ } else {
+ $stack = HandlerStack::create();
+ $stack->push(Middleware::mapResponse(static function (ResponseInterface $response) {
+ return new Response($response);
+ }));
+ }
+
+ self::$config['handler'] = $stack;
+
+ if (!isset(self::$config['on_stats'])) {
+ self::$config['on_stats'] = function (TransferStats $stats) {
+ Response::$info = $stats->getHandlerStats();
+ };
+ }
+
+ $new_config = Helper::merge([self::$config, $config]);
+
+ return new Client($new_config);
+ }
+
+ /**
+ * @param string $method
+ * @param string|UriInterface $uri
+ * @param array $options
+ *
+ * @throws GuzzleException
+ *
+ * @return ResponseInterface
+ */
+ public static function request($method, $uri, $options = [])
+ {
+ return self::client()->request($method, $uri, $options);
+ }
+
+ /**
+ * @param string $method
+ * @param string $uri
+ * @param array $options
+ *
+ * @throws GuzzleException
+ *
+ * @return string
+ */
+ public static function string($method, $uri, $options = [])
+ {
+ return (string) self::client()->request($method, $uri, $options)
+ ->getBody();
+ }
+
+ /**
+ * @param string $method
+ * @param string|UriInterface $uri
+ * @param array $options
+ *
+ * @return PromiseInterface
+ */
+ public static function requestAsync($method, $uri, $options = [])
+ {
+ return self::client()->requestAsync($method, $uri, $options);
+ }
+
+ /**
+ * @param string|UriInterface $uri
+ * @param array $options
+ *
+ * @throws GuzzleException
+ *
+ * @return null|mixed
+ */
+ public static function getHeaders($uri, $options = [])
+ {
+ return self::request('HEAD', $uri, $options)->getHeaders();
+ }
+
+ /**
+ * @param string|UriInterface $uri
+ * @param string $key
+ * @param null|mixed $default
+ *
+ * @throws GuzzleException
+ *
+ * @return null|mixed
+ */
+ public static function getHeader($uri, $key, $default = null)
+ {
+ $headers = self::getHeaders($uri);
+
+ return isset($headers[$key][0]) ? $headers[$key][0] : $default;
+ }
+
+ /**
+ * @param int $retryTimes
+ * @param float $now
+ *
+ * @return bool
+ */
+ public static function allowRetry(array $runtime, $retryTimes, $now)
+ {
+ unset($now);
+ if (!isset($retryTimes) || null === $retryTimes || !\is_numeric($retryTimes)) {
+ return false;
+ }
+ if ($retryTimes > 0 && (empty($runtime) || !isset($runtime['retryable']) || !$runtime['retryable'] || !isset($runtime['maxAttempts']))) {
+ return false;
+ }
+ $maxAttempts = $runtime['maxAttempts'];
+ $retry = empty($maxAttempts) ? 0 : (int) $maxAttempts;
+
+ return $retry >= $retryTimes;
+ }
+
+ /**
+ * @param int $retryTimes
+ *
+ * @return int
+ */
+ public static function getBackoffTime(array $runtime, $retryTimes)
+ {
+ $backOffTime = 0;
+ $policy = isset($runtime['policy']) ? $runtime['policy'] : '';
+
+ if (empty($policy) || 'no' == $policy) {
+ return $backOffTime;
+ }
+
+ $period = isset($runtime['period']) ? $runtime['period'] : '';
+ if (null !== $period && '' !== $period) {
+ $backOffTime = (int) $period;
+ if ($backOffTime <= 0) {
+ return $retryTimes;
+ }
+ }
+
+ return $backOffTime;
+ }
+
+ public static function sleep($time)
+ {
+ sleep($time);
+ }
+
+ public static function isRetryable($retry, $retryTimes = 0)
+ {
+ if ($retry instanceof TeaError) {
+ return true;
+ }
+ if (\is_array($retry)) {
+ $max = isset($retry['maxAttempts']) ? (int) ($retry['maxAttempts']) : 3;
+
+ return $retryTimes <= $max;
+ }
+
+ return false;
+ }
+
+ /**
+ * @param mixed|Model[] ...$item
+ *
+ * @return mixed
+ */
+ public static function merge(...$item)
+ {
+ $tmp = [];
+ $n = 0;
+ foreach ($item as $i) {
+ if (\is_object($i)) {
+ if ($i instanceof Model) {
+ $i = $i->toMap();
+ } else {
+ $i = json_decode(json_encode($i), true);
+ }
+ }
+ if (null === $i) {
+ continue;
+ }
+ if (\is_array($i)) {
+ $tmp[$n++] = $i;
+ }
+ }
+
+ if (\count($tmp)) {
+ return \call_user_func_array('array_merge', $tmp);
+ }
+
+ return [];
+ }
+
+ private static function resolveConfig(array $config = [])
+ {
+ $options = new Dot(['http_errors' => false]);
+ if (isset($config['httpProxy']) && !empty($config['httpProxy'])) {
+ $options->set('proxy.http', $config['httpProxy']);
+ }
+ if (isset($config['httpsProxy']) && !empty($config['httpsProxy'])) {
+ $options->set('proxy.https', $config['httpsProxy']);
+ }
+ if (isset($config['noProxy']) && !empty($config['noProxy'])) {
+ $options->set('proxy.no', $config['noProxy']);
+ }
+ if (isset($config['ignoreSSL']) && !empty($config['ignoreSSL'])) {
+ $options->set('verify',!((bool)$config['ignoreSSL']));
+ }
+ // readTimeout&connectTimeout unit is millisecond
+ $read_timeout = isset($config['readTimeout']) && !empty($config['readTimeout']) ? (int) $config['readTimeout'] : 0;
+ $con_timeout = isset($config['connectTimeout']) && !empty($config['connectTimeout']) ? (int) $config['connectTimeout'] : 0;
+ // timeout unit is second
+ $options->set('timeout', ($read_timeout + $con_timeout) / 1000);
+
+ return $options->all();
+ }
+}
diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php
index 5ed199ec7..43e3c3043 100644
--- a/vendor/composer/autoload_files.php
+++ b/vendor/composer/autoload_files.php
@@ -7,16 +7,16 @@ $baseDir = dirname($vendorDir);
return array(
'6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
- '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
+ '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
+ 'd767e4fc2dc52fe66584ab8c6684783e' => $vendorDir . '/adbario/php-dot-notation/src/helpers.php',
+ '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
'9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php',
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
- '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
'35fab96057f1bf5e7aba31a8a6d5fdde' => $vendorDir . '/topthink/think-orm/stubs/load_stubs.php',
'25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php',
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php',
- 'd767e4fc2dc52fe66584ab8c6684783e' => $vendorDir . '/adbario/php-dot-notation/src/helpers.php',
'b067bc7112e384b61c701452d53a14a8' => $vendorDir . '/mtdowling/jmespath.php/src/JmesPath.php',
'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
'0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php
index 1306e8a46..9a616ec5d 100644
--- a/vendor/composer/autoload_psr4.php
+++ b/vendor/composer/autoload_psr4.php
@@ -51,6 +51,7 @@ return array(
'Phrity\\Net\\' => array($vendorDir . '/phrity/net-uri/src'),
'PhpOffice\\PhpSpreadsheet\\' => array($vendorDir . '/phpoffice/phpspreadsheet/src/PhpSpreadsheet'),
'Overtrue\\Socialite\\' => array($vendorDir . '/overtrue/socialite/src'),
+ 'OneSm\\' => array($vendorDir . '/lizhichao/one-sm/src'),
'OSS\\' => array($vendorDir . '/aliyuncs/oss-sdk-php/src/OSS'),
'Nyholm\\Psr7\\' => array($vendorDir . '/nyholm/psr7/src'),
'Nyholm\\Psr7Server\\' => array($vendorDir . '/nyholm/psr7-server/src'),
@@ -71,10 +72,19 @@ return array(
'GatewayClient\\' => array($vendorDir . '/workerman/gatewayclient'),
'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
'EasyWeChat\\' => array($vendorDir . '/w7corp/easywechat/src'),
+ 'Darabonba\\OpenApi\\' => array($vendorDir . '/alibabacloud/darabonba-openapi/src'),
+ 'Darabonba\\GatewaySpi\\' => array($vendorDir . '/alibabacloud/gateway-spi/src'),
'Cron\\' => array($vendorDir . '/dragonmantank/cron-expression/src/Cron'),
'Complex\\' => array($vendorDir . '/markbaker/complex/classes/src'),
'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'),
+ 'AlibabaCloud\\Tea\\XML\\' => array($vendorDir . '/alibabacloud/tea-xml/src'),
+ 'AlibabaCloud\\Tea\\Utils\\' => array($vendorDir . '/alibabacloud/tea-utils/src'),
+ 'AlibabaCloud\\Tea\\' => array($vendorDir . '/alibabacloud/tea/src'),
+ 'AlibabaCloud\\SDK\\Live\\V20161101\\' => array($vendorDir . '/alibabacloud/live-20161101/src'),
+ 'AlibabaCloud\\OpenApiUtil\\' => array($vendorDir . '/alibabacloud/openapi-util/src'),
'AlibabaCloud\\Live\\' => array($vendorDir . '/alibabacloud/live'),
+ 'AlibabaCloud\\Endpoint\\' => array($vendorDir . '/alibabacloud/endpoint-util/src'),
+ 'AlibabaCloud\\Credentials\\' => array($vendorDir . '/alibabacloud/credentials/src'),
'AlibabaCloud\\Client\\' => array($vendorDir . '/alibabacloud/client/src'),
'Adbar\\' => array($vendorDir . '/adbario/php-dot-notation/src'),
'' => array($vendorDir . '/phrity/util-errorhandler/src'),
diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php
index bdef077a7..27086d942 100644
--- a/vendor/composer/autoload_static.php
+++ b/vendor/composer/autoload_static.php
@@ -8,16 +8,16 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb
{
public static $files = array (
'6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
- '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
+ '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
+ 'd767e4fc2dc52fe66584ab8c6684783e' => __DIR__ . '/..' . '/adbario/php-dot-notation/src/helpers.php',
+ '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
- '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
'35fab96057f1bf5e7aba31a8a6d5fdde' => __DIR__ . '/..' . '/topthink/think-orm/stubs/load_stubs.php',
'25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php',
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
- 'd767e4fc2dc52fe66584ab8c6684783e' => __DIR__ . '/..' . '/adbario/php-dot-notation/src/helpers.php',
'b067bc7112e384b61c701452d53a14a8' => __DIR__ . '/..' . '/mtdowling/jmespath.php/src/JmesPath.php',
'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
'0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
@@ -112,6 +112,7 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb
'O' =>
array (
'Overtrue\\Socialite\\' => 19,
+ 'OneSm\\' => 6,
'OSS\\' => 4,
),
'N' =>
@@ -154,6 +155,11 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb
array (
'EasyWeChat\\' => 11,
),
+ 'D' =>
+ array (
+ 'Darabonba\\OpenApi\\' => 18,
+ 'Darabonba\\GatewaySpi\\' => 21,
+ ),
'C' =>
array (
'Cron\\' => 5,
@@ -162,7 +168,14 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb
),
'A' =>
array (
+ 'AlibabaCloud\\Tea\\XML\\' => 21,
+ 'AlibabaCloud\\Tea\\Utils\\' => 23,
+ 'AlibabaCloud\\Tea\\' => 17,
+ 'AlibabaCloud\\SDK\\Live\\V20161101\\' => 32,
+ 'AlibabaCloud\\OpenApiUtil\\' => 25,
'AlibabaCloud\\Live\\' => 18,
+ 'AlibabaCloud\\Endpoint\\' => 22,
+ 'AlibabaCloud\\Credentials\\' => 25,
'AlibabaCloud\\Client\\' => 20,
'Adbar\\' => 6,
),
@@ -355,6 +368,10 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb
array (
0 => __DIR__ . '/..' . '/overtrue/socialite/src',
),
+ 'OneSm\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/lizhichao/one-sm/src',
+ ),
'OSS\\' =>
array (
0 => __DIR__ . '/..' . '/aliyuncs/oss-sdk-php/src/OSS',
@@ -435,6 +452,14 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb
array (
0 => __DIR__ . '/..' . '/w7corp/easywechat/src',
),
+ 'Darabonba\\OpenApi\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/darabonba-openapi/src',
+ ),
+ 'Darabonba\\GatewaySpi\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/gateway-spi/src',
+ ),
'Cron\\' =>
array (
0 => __DIR__ . '/..' . '/dragonmantank/cron-expression/src/Cron',
@@ -447,10 +472,38 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb
array (
0 => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon',
),
+ 'AlibabaCloud\\Tea\\XML\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/tea-xml/src',
+ ),
+ 'AlibabaCloud\\Tea\\Utils\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/tea-utils/src',
+ ),
+ 'AlibabaCloud\\Tea\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/tea/src',
+ ),
+ 'AlibabaCloud\\SDK\\Live\\V20161101\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/live-20161101/src',
+ ),
+ 'AlibabaCloud\\OpenApiUtil\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/openapi-util/src',
+ ),
'AlibabaCloud\\Live\\' =>
array (
0 => __DIR__ . '/..' . '/alibabacloud/live',
),
+ 'AlibabaCloud\\Endpoint\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/endpoint-util/src',
+ ),
+ 'AlibabaCloud\\Credentials\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/alibabacloud/credentials/src',
+ ),
'AlibabaCloud\\Client\\' =>
array (
0 => __DIR__ . '/..' . '/alibabacloud/client/src',
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index bc53f6004..2452f376c 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -155,6 +155,249 @@
},
"install-path": "../alibabacloud/client"
},
+ {
+ "name": "alibabacloud/credentials",
+ "version": "1.1.5",
+ "version_normalized": "1.1.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/aliyun/credentials-php.git",
+ "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
+ "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "adbario/php-dot-notation": "^2.2",
+ "alibabacloud/tea": "^3.0",
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-simplexml": "*",
+ "ext-xmlwriter": "*",
+ "guzzlehttp/guzzle": "^6.3|^7.0",
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "composer/composer": "^1.8",
+ "drupal/coder": "^8.3",
+ "ext-dom": "*",
+ "ext-pcre": "*",
+ "ext-sockets": "*",
+ "ext-spl": "*",
+ "mikey179/vfsstream": "^1.6",
+ "monolog/monolog": "^1.24",
+ "phpunit/phpunit": "^5.7|^6.6|^7.5",
+ "psr/cache": "^1.0",
+ "symfony/dotenv": "^3.4",
+ "symfony/var-dumper": "^3.4"
+ },
+ "suggest": {
+ "ext-sockets": "To use client-side monitoring"
+ },
+ "time": "2023-04-11T02:12:12+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Credentials\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com",
+ "homepage": "http://www.alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud Credentials for PHP",
+ "homepage": "https://www.alibabacloud.com/",
+ "keywords": [
+ "alibaba",
+ "alibabacloud",
+ "aliyun",
+ "client",
+ "cloud",
+ "credentials",
+ "library",
+ "sdk",
+ "tool"
+ ],
+ "support": {
+ "issues": "https://github.com/aliyun/credentials-php/issues",
+ "source": "https://github.com/aliyun/credentials-php"
+ },
+ "install-path": "../alibabacloud/credentials"
+ },
+ {
+ "name": "alibabacloud/darabonba-openapi",
+ "version": "0.2.9",
+ "version_normalized": "0.2.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
+ "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/4cdfc36615f345786d668dfbaf68d9a301b6dbe2",
+ "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/credentials": "^1.1",
+ "alibabacloud/gateway-spi": "^1",
+ "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
+ "alibabacloud/tea-utils": "^0.2.17",
+ "alibabacloud/tea-xml": "^0.2",
+ "php": ">5.5"
+ },
+ "time": "2023-02-06T12:02:21+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Darabonba\\OpenApi\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud OpenApi Client",
+ "support": {
+ "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
+ "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.9"
+ },
+ "install-path": "../alibabacloud/darabonba-openapi"
+ },
+ {
+ "name": "alibabacloud/endpoint-util",
+ "version": "0.1.1",
+ "version_normalized": "0.1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
+ "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
+ "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35|^5.4.3"
+ },
+ "time": "2020-06-04T10:57:15+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Endpoint\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud Endpoint Library for PHP",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
+ },
+ "install-path": "../alibabacloud/endpoint-util"
+ },
+ {
+ "name": "alibabacloud/gateway-spi",
+ "version": "1.0.0",
+ "version_normalized": "1.0.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
+ "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
+ "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/credentials": "^1.1",
+ "php": ">5.5"
+ },
+ "time": "2022-07-14T05:31:35+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Darabonba\\GatewaySpi\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud Gateway SPI Client",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
+ },
+ "install-path": "../alibabacloud/gateway-spi"
+ },
{
"name": "alibabacloud/live",
"version": "1.8.958",
@@ -216,6 +459,289 @@
},
"install-path": "../alibabacloud/live"
},
+ {
+ "name": "alibabacloud/live-20161101",
+ "version": "1.1.1",
+ "version_normalized": "1.1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/live-20161101.git",
+ "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/live-20161101/zipball/6aa9436929b8d8d2b5a51daeca7227ebc88e1717",
+ "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717",
+ "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.0",
+ "alibabacloud/tea-utils": "^0.2.17",
+ "php": ">5.5"
+ },
+ "time": "2022-12-05T03:08:45+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\SDK\\Live\\V20161101\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud ApsaraVideo for Live (20161101) SDK Library for PHP",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/live-20161101/tree/1.1.1"
+ },
+ "install-path": "../alibabacloud/live-20161101"
+ },
+ {
+ "name": "alibabacloud/openapi-util",
+ "version": "0.2.1",
+ "version_normalized": "0.2.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
+ "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
+ "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/tea": "^3.1",
+ "alibabacloud/tea-utils": "^0.2",
+ "lizhichao/one-sm": "^1.5",
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*"
+ },
+ "time": "2023-01-10T09:10:10+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\OpenApiUtil\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com"
+ }
+ ],
+ "description": "Alibaba Cloud OpenApi Util",
+ "support": {
+ "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
+ "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
+ },
+ "install-path": "../alibabacloud/openapi-util"
+ },
+ {
+ "name": "alibabacloud/tea",
+ "version": "3.2.1",
+ "version_normalized": "3.2.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/aliyun/tea-php.git",
+ "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
+ "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "adbario/php-dot-notation": "^2.4",
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-simplexml": "*",
+ "ext-xmlwriter": "*",
+ "guzzlehttp/guzzle": "^6.3|^7.0",
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*",
+ "symfony/dotenv": "^3.4",
+ "symfony/var-dumper": "^3.4"
+ },
+ "suggest": {
+ "ext-sockets": "To use client-side monitoring"
+ },
+ "time": "2023-05-16T06:43:41+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alibaba Cloud SDK",
+ "email": "sdk-team@alibabacloud.com",
+ "homepage": "http://www.alibabacloud.com"
+ }
+ ],
+ "description": "Client of Tea for PHP",
+ "homepage": "https://www.alibabacloud.com/",
+ "keywords": [
+ "alibabacloud",
+ "client",
+ "cloud",
+ "tea"
+ ],
+ "support": {
+ "issues": "https://github.com/aliyun/tea-php/issues",
+ "source": "https://github.com/aliyun/tea-php"
+ },
+ "install-path": "../alibabacloud/tea"
+ },
+ {
+ "name": "alibabacloud/tea-utils",
+ "version": "0.2.19",
+ "version_normalized": "0.2.19.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
+ "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
+ "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "alibabacloud/tea": "^3.1",
+ "php": ">5.5"
+ },
+ "time": "2023-06-26T09:49:19+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\Utils\\": "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 Utils for PHP",
+ "support": {
+ "issues": "https://github.com/aliyun/tea-util/issues",
+ "source": "https://github.com/aliyun/tea-util"
+ },
+ "install-path": "../alibabacloud/tea-utils"
+ },
+ {
+ "name": "alibabacloud/tea-xml",
+ "version": "0.2.4",
+ "version_normalized": "0.2.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
+ "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
+ "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "php": ">5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*",
+ "symfony/var-dumper": "*"
+ },
+ "time": "2022-08-02T04:12:58+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "AlibabaCloud\\Tea\\XML\\": "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 XML Library for PHP",
+ "support": {
+ "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
+ },
+ "install-path": "../alibabacloud/tea-xml"
+ },
{
"name": "aliyuncs/oss-sdk-php",
"version": "v2.6.0",
@@ -1340,6 +1866,69 @@
],
"install-path": "../league/mime-type-detection"
},
+ {
+ "name": "lizhichao/one-sm",
+ "version": "1.10",
+ "version_normalized": "1.10.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/lizhichao/sm.git",
+ "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
+ "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
+ "shasum": "",
+ "mirrors": [
+ {
+ "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
+ "preferred": true
+ }
+ ]
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "time": "2021-05-26T06:19:22+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "OneSm\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "tanszhe",
+ "email": "1018595261@qq.com"
+ }
+ ],
+ "description": "国密sm3",
+ "keywords": [
+ "php",
+ "sm3"
+ ],
+ "support": {
+ "issues": "https://github.com/lizhichao/sm/issues",
+ "source": "https://github.com/lizhichao/sm/tree/1.10"
+ },
+ "funding": [
+ {
+ "url": "https://www.vicsdf.com/img/w.jpg",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.vicsdf.com/img/z.jpg",
+ "type": "custom"
+ }
+ ],
+ "install-path": "../lizhichao/one-sm"
+ },
{
"name": "maennchen/zipstream-php",
"version": "2.4.0",
diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php
index a1cba6e1f..aa705f579 100644
--- a/vendor/composer/installed.php
+++ b/vendor/composer/installed.php
@@ -3,7 +3,7 @@
'name' => 'topthink/think',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
- 'reference' => '93ef4ca7130cd285dd44ca7dec8be67c86d7be20',
+ 'reference' => 'a1c67b2dd1cb0a8c125194915edcd6374aa59dc9',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
@@ -28,6 +28,42 @@
'aliases' => array(),
'dev_requirement' => false,
),
+ 'alibabacloud/credentials' => array(
+ 'pretty_version' => '1.1.5',
+ 'version' => '1.1.5.0',
+ 'reference' => '1d8383ceef695974a88a3859c42e235fd2e3981a',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/credentials',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'alibabacloud/darabonba-openapi' => array(
+ 'pretty_version' => '0.2.9',
+ 'version' => '0.2.9.0',
+ 'reference' => '4cdfc36615f345786d668dfbaf68d9a301b6dbe2',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/darabonba-openapi',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'alibabacloud/endpoint-util' => array(
+ 'pretty_version' => '0.1.1',
+ 'version' => '0.1.1.0',
+ 'reference' => 'f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/endpoint-util',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'alibabacloud/gateway-spi' => array(
+ 'pretty_version' => '1.0.0',
+ 'version' => '1.0.0.0',
+ 'reference' => '7440f77750c329d8ab252db1d1d967314ccd1fcb',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/gateway-spi',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'alibabacloud/live' => array(
'pretty_version' => '1.8.958',
'version' => '1.8.958.0',
@@ -37,6 +73,51 @@
'aliases' => array(),
'dev_requirement' => false,
),
+ 'alibabacloud/live-20161101' => array(
+ 'pretty_version' => '1.1.1',
+ 'version' => '1.1.1.0',
+ 'reference' => '6aa9436929b8d8d2b5a51daeca7227ebc88e1717',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/live-20161101',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'alibabacloud/openapi-util' => array(
+ 'pretty_version' => '0.2.1',
+ 'version' => '0.2.1.0',
+ 'reference' => 'f31f7bcd835e08ca24b6b8ba33637eb4eceb093a',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/openapi-util',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'alibabacloud/tea' => array(
+ 'pretty_version' => '3.2.1',
+ 'version' => '3.2.1.0',
+ 'reference' => '1619cb96c158384f72b873e1f85de8b299c9c367',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/tea',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'alibabacloud/tea-utils' => array(
+ 'pretty_version' => '0.2.19',
+ 'version' => '0.2.19.0',
+ 'reference' => '8dfc1a93e9415818e93a621b644abbb84981aea4',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/tea-utils',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'alibabacloud/tea-xml' => array(
+ 'pretty_version' => '0.2.4',
+ 'version' => '0.2.4.0',
+ 'reference' => '3e0c000bf536224eebbac913c371bef174c0a16a',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../alibabacloud/tea-xml',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'aliyuncs/oss-sdk-php' => array(
'pretty_version' => 'v2.6.0',
'version' => '2.6.0.0',
@@ -163,6 +244,15 @@
'aliases' => array(),
'dev_requirement' => false,
),
+ 'lizhichao/one-sm' => array(
+ 'pretty_version' => '1.10',
+ 'version' => '1.10.0.0',
+ 'reference' => '687a012a44a5bfd4d9143a0234e1060543be455a',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../lizhichao/one-sm',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'maennchen/zipstream-php' => array(
'pretty_version' => '2.4.0',
'version' => '2.4.0.0',
@@ -685,7 +775,7 @@
'topthink/think' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
- 'reference' => '93ef4ca7130cd285dd44ca7dec8be67c86d7be20',
+ 'reference' => 'a1c67b2dd1cb0a8c125194915edcd6374aa59dc9',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
diff --git a/vendor/lizhichao/one-sm/.github/FUNDING.yml b/vendor/lizhichao/one-sm/.github/FUNDING.yml
new file mode 100644
index 000000000..d312585b5
--- /dev/null
+++ b/vendor/lizhichao/one-sm/.github/FUNDING.yml
@@ -0,0 +1,5 @@
+# 如果对你有帮助 欢迎打赏
+
+custom: ["https://www.vicsdf.com/img/z.jpg","https://www.vicsdf.com/img/w.jpg"]
+
+
diff --git a/vendor/lizhichao/one-sm/.github/workflows/sm.yml b/vendor/lizhichao/one-sm/.github/workflows/sm.yml
new file mode 100644
index 000000000..24f30d2da
--- /dev/null
+++ b/vendor/lizhichao/one-sm/.github/workflows/sm.yml
@@ -0,0 +1,33 @@
+name: sm
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+
+jobs:
+ run:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ php-versions: [ '5.6','7.0','7.1', '7.2', '7.4', '8.0' ]
+ name: PHP ${{ matrix.php-versions }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Install PHP
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php-versions }}
+ coverage: none
+ ini-values: opcache.jit_buffer_size=256M, opcache.jit=1205, pcre.jit=1, opcache.enable=1, opcache.enable_cli=1
+ - name: Check PHP Version
+ run: php -v && php -i | grep opcache
+ - name: Install Dependencies
+ run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
+ - name: Execute tests sm3
+ run: php tests/sm3.php
+ - name: Execute tests sm4
+ run: php tests/sm4.php
diff --git a/vendor/lizhichao/one-sm/.gitignore b/vendor/lizhichao/one-sm/.gitignore
new file mode 100644
index 000000000..cc52049e5
--- /dev/null
+++ b/vendor/lizhichao/one-sm/.gitignore
@@ -0,0 +1,7 @@
+/vendor
+.idea
+.vscode
+.svn
+.DS_Store
+composer.lock
+cache/
diff --git a/vendor/lizhichao/one-sm/.php_cs.dist b/vendor/lizhichao/one-sm/.php_cs.dist
new file mode 100644
index 000000000..8617ec2fa
--- /dev/null
+++ b/vendor/lizhichao/one-sm/.php_cs.dist
@@ -0,0 +1,65 @@
+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__)
+ );
diff --git a/vendor/lizhichao/one-sm/README.md b/vendor/lizhichao/one-sm/README.md
new file mode 100644
index 000000000..bb07cda18
--- /dev/null
+++ b/vendor/lizhichao/one-sm/README.md
@@ -0,0 +1,100 @@
+## php国密算法
+
+- sm3
+ - 字符串签名
+ - 文件签名
+- sm4
+ - ecb
+ - cbc
+ - cfb
+ - ofb
+ - ctr
+
+## 安装
+
+```shell
+composer require lizhichao/one-sm
+```
+
+## SM3签名
+```php
+sign('abc') . PHP_EOL;
+echo $sm3->sign(str_repeat("adfas哈哈哈", 100)) . PHP_EOL;
+
+
+// 文件签名
+echo $sm3->signFile(__FILE__) . PHP_EOL;
+```
+### 性能测试
+和 [openssl](https://github.com/openssl/openssl) , [SM3-PHP](https://github.com/DongyunLee/SM3-PHP) 性能测试
+
+```shell
+php bench.php
+```
+结果
+```
+openssl:4901d7181a1024b8c0f59b8d3c5c6d96b4b707ad10e8ebc8ece5dc49364a3067
+one-sm3:4901d7181a1024b8c0f59b8d3c5c6d96b4b707ad10e8ebc8ece5dc49364a3067
+SM3-PHP:4901d7181a1024b8c0f59b8d3c5c6d96b4b707ad10e8ebc8ece5dc49364a3067
+openssl time:6.3741207122803ms
+one-sm3 time:8.1770420074463ms
+SM3-PHP time:1738.5928630829ms
+
+```
+[测试代码bench.php](https://github.com/lizhichao/sm/blob/master/bench.php)
+
+
+## SM4加密
+
+```php
+enDataEcb($data);
+// 加密后的长度和原数据长度一致
+var_dump(strlen($d) === $str_len);
+
+// ECB解密
+$d = $sm4->deDataEcb($d);
+// 解密后和原数据相等
+var_dump(md5($d) === $sign);
+
+
+// 初始化向量16位
+$iv = hex2bin(md5(2));
+// CBC加密
+$d = $sm4->enDataCbc($data, $iv);
+// 加密后的长度和原数据长度一致
+var_dump(strlen($d)===$str_len);
+
+// CBC解密
+$d = $sm4->deDataCbc($d, $iv);
+// 解密后和原数据相等
+var_dump(md5($d)===$sign);
+
+```
+
+## 我的其他仓库
+
+* [一个极简高性能php框架,支持[swoole | php-fpm ]环境](https://github.com/lizhichao/one)
+* [clickhouse tcp 客户端](https://github.com/lizhichao/one-ck)
+* [中文分词](https://github.com/lizhichao/VicWord)
+* [nsq客户端](https://github.com/lizhichao/one-nsq)
diff --git a/vendor/lizhichao/one-sm/bench.php b/vendor/lizhichao/one-sm/bench.php
new file mode 100644
index 000000000..156f4d35b
--- /dev/null
+++ b/vendor/lizhichao/one-sm/bench.php
@@ -0,0 +1,97 @@
+sign($str) . PHP_EOL;
+
+
+$t2 = microtime(true);
+
+echo 'SM3-PHP:' . sm3($str) . PHP_EOL;
+
+$t3 = microtime(true);
+
+echo 'openssl time:'.($t1 - $t) * 1000 . 'ms' . PHP_EOL;
+echo 'one-sm3 time:'.($t2 - $t1) * 1000 . 'ms' . PHP_EOL;
+echo 'SM3-PHP time:'.($t3 - $t2) * 1000 . 'ms' . PHP_EOL;
+
+// 文件签名
+//echo \OneSm\Sm3::signFile(__FILE__) . PHP_EOL;
\ No newline at end of file
diff --git a/vendor/lizhichao/one-sm/composer.json b/vendor/lizhichao/one-sm/composer.json
new file mode 100644
index 000000000..8d41b477d
--- /dev/null
+++ b/vendor/lizhichao/one-sm/composer.json
@@ -0,0 +1,24 @@
+{
+ "name": "lizhichao/one-sm",
+ "type": "library",
+ "description": "国密sm3",
+ "keywords": [
+ "php",
+ "sm3"
+ ],
+ "license": "Apache-2.0",
+ "authors": [
+ {
+ "name": "tanszhe",
+ "email": "1018595261@qq.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.6"
+ },
+ "autoload": {
+ "psr-4": {
+ "OneSm\\": "src/"
+ }
+ }
+}
diff --git a/vendor/lizhichao/one-sm/src/Sm3.php b/vendor/lizhichao/one-sm/src/Sm3.php
new file mode 100644
index 000000000..d9eb75f9d
--- /dev/null
+++ b/vendor/lizhichao/one-sm/src/Sm3.php
@@ -0,0 +1,142 @@
+getK($l);
+ $bt = $this->getB($k);
+ $str = $str . $bt . pack('J', $l);
+
+ $count = strlen($str);
+ $l = $count / $this->STR_LEN;
+ $vr = hex2bin($this->IV);
+ for ($i = 0; $i < $l; $i++) {
+ $vr = $this->cf($vr, substr($str, $i * $this->STR_LEN, $this->STR_LEN));
+ }
+ return bin2hex($vr);
+
+ }
+
+ private function getK($l)
+ {
+ $v = $l % $this->LEN;
+ return $v + $this->STR_LEN < $this->LEN
+ ? $this->LEN - $this->STR_LEN - $v - 1
+ : ($this->LEN * 2) - $this->STR_LEN - $v - 1;
+ }
+
+ private function getB($k)
+ {
+ $arg = [128];
+ $arg = array_merge($arg, array_fill(0, intval($k / 8), 0));
+ return pack('C*', ...$arg);
+ }
+
+ public function signFile($file)
+ {
+ $l = filesize($file) * 8;
+ $k = $this->getK($l);
+ $bt = $this->getB($k) . pack('J', $l);
+
+ $hd = fopen($file, 'r');
+ $vr = hex2bin($this->IV);
+ $str = fread($hd, $this->STR_LEN);
+ if ($l > $this->LEN - $this->STR_LEN - 1) {
+ do {
+ $vr = $this->cf($vr, $str);
+ $str = fread($hd, $this->STR_LEN);
+ } while (!feof($hd));
+ }
+
+ $str = $str . $bt;
+ $count = strlen($str) * 8;
+ $l = $count / $this->LEN;
+ for ($i = 0; $i < $l; $i++) {
+ $vr = $this->cf($vr, substr($str, $i * $this->STR_LEN, $this->STR_LEN));
+ }
+ return bin2hex($vr);
+ }
+
+
+ private function t($i)
+ {
+ return $i < 16 ? 0x79cc4519 : 0x7a879d8a;
+ }
+
+ private function cf($ai, $bi)
+ {
+ $wr = array_values(unpack('N*', $bi));
+ for ($i = 16; $i < 68; $i++) {
+ $wr[$i] = $this->p1($wr[$i - 16]
+ ^
+ $wr[$i - 9]
+ ^
+ $this->lm($wr[$i - 3], 15))
+ ^
+ $this->lm($wr[$i - 13], 7)
+ ^
+ $wr[$i - 6];
+ }
+ $wr1 = [];
+ for ($i = 0; $i < 64; $i++) {
+ $wr1[] = $wr[$i] ^ $wr[$i + 4];
+ }
+
+ list($a, $b, $c, $d, $e, $f, $g, $h) = array_values(unpack('N*', $ai));
+
+ for ($i = 0; $i < 64; $i++) {
+ $ss1 = $this->lm(
+ ($this->lm($a, 12) + $e + $this->lm($this->t($i), $i % 32) & 0xffffffff),
+ 7);
+ $ss2 = $ss1 ^ $this->lm($a, 12);
+ $tt1 = ($this->ff($i, $a, $b, $c) + $d + $ss2 + $wr1[$i]) & 0xffffffff;
+ $tt2 = ($this->gg($i, $e, $f, $g) + $h + $ss1 + $wr[$i]) & 0xffffffff;
+ $d = $c;
+ $c = $this->lm($b, 9);
+ $b = $a;
+ $a = $tt1;
+ $h = $g;
+ $g = $this->lm($f, 19);
+ $f = $e;
+ $e = $this->p0($tt2);
+ }
+
+ return pack('N*', $a, $b, $c, $d, $e, $f, $g, $h) ^ $ai;
+ }
+
+
+ private function ff($j, $x, $y, $z)
+ {
+ return $j < 16 ? $x ^ $y ^ $z : ($x & $y) | ($x & $z) | ($y & $z);
+ }
+
+ private function gg($j, $x, $y, $z)
+ {
+ return $j < 16 ? $x ^ $y ^ $z : ($x & $y) | (~$x & $z);
+ }
+
+
+ private function lm($a, $n)
+ {
+ return ($a >> (32 - $n) | (($a << $n) & 0xffffffff));
+ }
+
+ private function p0($x)
+ {
+ return $x ^ $this->lm($x, 9) ^ $this->lm($x, 17);
+ }
+
+ private function p1($x)
+ {
+ return $x ^ $this->lm($x, 15) ^ $this->lm($x, 23);
+ }
+
+}
\ No newline at end of file
diff --git a/vendor/lizhichao/one-sm/src/Sm4.php b/vendor/lizhichao/one-sm/src/Sm4.php
new file mode 100644
index 000000000..4421d2fcd
--- /dev/null
+++ b/vendor/lizhichao/one-sm/src/Sm4.php
@@ -0,0 +1,350 @@
+ck16($key);
+ $this->crk($key);
+ }
+
+ private function dd(&$data)
+ {
+ $n = strlen($data) % $this->len;
+ $data = $data . str_repeat($this->b, $n);
+ }
+
+ private function ck16($str)
+ {
+ if (strlen($str) !== $this->len) {
+ throw new \Exception('秘钥长度为16位');
+ }
+ }
+
+ private function add($v)
+ {
+ $arr = unpack('N*', $v);
+ $max = 0xffffffff;
+ $j = 1;
+ for ($i = 4; $i > 0; $i--) {
+ if ($arr[$i] > $max - $j) {
+ $j = 1;
+ $arr[$i] = 0;
+ } else {
+ $arr[$i] += $j;
+ break;
+ }
+ }
+ return pack('N*', ...$arr);
+ }
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function deDataCtr($str, $iv)
+ {
+ return $this->enDataCtr($str, $iv);
+ }
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function enDataCtr($str, $iv)
+ {
+ $this->ck16($iv);
+ $r = '';
+ $this->dd($str);
+ $l = strlen($str) / $this->len;
+ for ($i = 0; $i < $l; $i++) {
+ $s = substr($str, $i * $this->len, $this->len);
+ $tr = [];
+ $this->encode(array_values(unpack('N*', $iv)), $tr);
+ $s1 = pack('N*', ...$tr);
+ $s1 = $s1 ^ $s;
+ $iv = $this->add($iv);
+ $r .= $s1;
+ }
+ return $r;
+ }
+
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function enDataOfb($str, $iv)
+ {
+ $this->ck16($iv);
+ $r = '';
+ $this->dd($str);
+ $l = strlen($str) / $this->len;
+ for ($i = 0; $i < $l; $i++) {
+ $s = substr($str, $i * $this->len, $this->len);
+ $tr = [];
+ $this->encode(array_values(unpack('N*', $iv)), $tr);
+ $iv = pack('N*', ...$tr);
+ $s1 = $s ^ $iv;
+ $r .= $s1;
+ }
+ return $r;
+ }
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function deDataOfb($str, $iv)
+ {
+ return $this->enDataOfb($str, $iv);
+ }
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function deDataCfb($str, $iv)
+ {
+ $this->ck16($iv);
+ $r = '';
+ $this->dd($str);
+ $l = strlen($str) / $this->len;
+ for ($i = 0; $i < $l; $i++) {
+ $s = substr($str, $i * $this->len, $this->len);
+ $tr = [];
+ $this->encode(array_values(unpack('N*', $iv)), $tr);
+ $s1 = pack('N*', ...$tr);
+ $s1 = $s ^ $s1;
+ $iv = $s;
+ $r .= $s1;
+ }
+ return $r;
+ }
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function enDataCfb($str, $iv)
+ {
+ $this->ck16($iv);
+ $r = '';
+ $this->dd($str);
+ $l = strlen($str) / $this->len;
+ for ($i = 0; $i < $l; $i++) {
+ $s = substr($str, $i * $this->len, $this->len);
+ $tr = [];
+ $this->encode(array_values(unpack('N*', $iv)), $tr);
+ $s1 = pack('N*', ...$tr);
+ $iv = $s ^ $s1;
+ $r .= $iv;
+ }
+ return $r;
+ }
+
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function enDataCbc($str, $iv)
+ {
+ $this->ck16($iv);
+ $r = '';
+ $this->dd($str);
+ $l = strlen($str) / $this->len;
+ for ($i = 0; $i < $l; $i++) {
+ $s = substr($str, $i * $this->len, $this->len);
+ $s = $iv ^ $s;
+ $tr = [];
+ $this->encode(array_values(unpack('N*', $s)), $tr);
+ $iv = pack('N*', ...$tr);
+ $r .= $iv;
+ }
+ return $r;
+ }
+
+ /**
+ * @param string $str 加密字符串
+ * @param string $iv 初始化字符串16位
+ * @return string
+ * @throws \Exception
+ */
+ public function deDataCbc($str, $iv)
+ {
+ $this->ck16($iv);
+ $r = '';
+ $this->dd($str);
+ $l = strlen($str) / $this->len;
+ for ($i = 0; $i < $l; $i++) {
+ $s = substr($str, $i * $this->len, $this->len);
+ $tr = [];
+ $this->decode(array_values(unpack('N*', $s)), $tr);
+ $s1 = pack('N*', ...$tr);
+ $s1 = $iv ^ $s1;
+ $iv = $s;
+ $r .= $s1;
+ }
+ return $r;
+ }
+
+
+ /**
+ * @param string $str 加密字符串
+ * @return string
+ */
+ public function enDataEcb($str)
+ {
+ $r = [];
+ $this->dd($str);
+ $ar = unpack('N*', $str);
+ do {
+ $this->encode([current($ar), next($ar), next($ar), next($ar)], $r);
+ } while (next($ar));
+ return pack('N*', ...$r);
+ }
+
+ /**
+ * @param string $str 解密字符串
+ * @return string
+ */
+ public function deDataEcb($str)
+ {
+ $r = [];
+ $this->dd($str);
+ $ar = unpack('N*', $str);
+ do {
+ $this->decode([current($ar), next($ar), next($ar), next($ar)], $r);
+ } while (next($ar));
+ return pack('N*', ...$r);
+ }
+
+ private function encode($ar, &$r)
+ {
+ for ($i = 0; $i < 32; $i++) {
+ $ar[$i + 4] = $this->f($ar[$i], $ar[$i + 1], $ar[$i + 2], $ar[$i + 3], $this->rk[$i]);
+ }
+ $r[] = $ar[35];
+ $r[] = $ar[34];
+ $r[] = $ar[33];
+ $r[] = $ar[32];
+ }
+
+ private function decode($ar, &$r)
+ {
+ for ($i = 0; $i < 32; $i++) {
+ $ar[$i + 4] = $this->f($ar[$i], $ar[$i + 1], $ar[$i + 2], $ar[$i + 3], $this->rk[31 - $i]);
+ }
+ $r[] = $ar[35];
+ $r[] = $ar[34];
+ $r[] = $ar[33];
+ $r[] = $ar[32];
+ }
+
+ private function crk($key)
+ {
+ $keys = array_values(unpack('N*', $key));
+ $keys = [
+ $keys[0] ^ $this->fk[0],
+ $keys[1] ^ $this->fk[1],
+ $keys[2] ^ $this->fk[2],
+ $keys[3] ^ $this->fk[3]
+ ];
+ for ($i = 0; $i < 32; $i++) {
+ $this->rk[] = $keys[] = $keys[$i] ^ $this->t1($keys[$i + 1] ^ $keys[$i + 2] ^ $keys[$i + 3] ^ $this->ck[$i]);
+ }
+ }
+
+ private function lm($a, $n)
+ {
+ return ($a >> (32 - $n) | (($a << $n) & 0xffffffff));
+ }
+
+ private function f($x0, $x1, $x2, $x3, $r)
+ {
+ return $x0 ^ $this->t($x1 ^ $x2 ^ $x3 ^ $r);
+ }
+
+ private function s($n)
+ {
+ return $this->Sbox[($n & 0xff)] | $this->Sbox[(($n >> 8) & 0xff)] << 8 | $this->Sbox[(($n >> 16) & 0xff)] << 16 | $this->Sbox[(($n >> 24) & 0xff)] << 24;
+ }
+
+ private function t($n)
+ {
+ $b = $this->s($n);
+ return $b ^ $this->lm($b, 2) ^ $this->lm($b, 10) ^ $this->lm($b, 18) ^ $this->lm($b, 24);
+ }
+
+ private function t1($n)
+ {
+ $b = $this->s($n);
+ return $b ^ $this->lm($b, 13) ^ $this->lm($b, 23);
+ }
+
+
+}
\ No newline at end of file
diff --git a/vendor/lizhichao/one-sm/test.php b/vendor/lizhichao/one-sm/test.php
new file mode 100644
index 000000000..2318a6942
--- /dev/null
+++ b/vendor/lizhichao/one-sm/test.php
@@ -0,0 +1,3 @@
+sign('test'));
+ $pack = 'H' . (string)$size;
+ if (\strlen($secret) > $size) {
+ $secret = pack($pack, $sm3->sign($secret));
+ }
+ $key = str_pad($secret, $size, \chr(0x00));
+ $ipad = $key ^ str_repeat(\chr(0x36), $size);
+ $opad = $key ^ str_repeat(\chr(0x5C), $size);
+ $hmac = $sm3->sign($opad . pack($pack, $sm3->sign($ipad . $data)));
+
+ return $raw_output ? pack($pack, $hmac) : $hmac;
+}
+
+$sm3 = new \OneSm\Sm3();
+eq('66c7f0f462eeedd9d1f2d46bdc10e4e24167c4875cf2f7a2297da02b8f4ba8e0', $sm3->sign('abc'));
+eq('1294da78431a20991584c68a669f2c59618e08bf0d7989f35f6ae1d7d570e143', $sm3->sign(str_repeat("adfas哈哈哈", 100)));
+eq('1ab21d8355cfa17f8e61194831e81a8f22bec8c728fefb747ed035eb5082aa2b', $sm3->sign(''));
+
+eq(
+ '8e4bd77d8a10526fae772bb6014dfaed0335491e1cdfa92d3aca1481ae5d9a83',
+ hmac(str_repeat('abc', 1000), 'secret')
+);
+eq(
+ hex2bin('8e4bd77d8a10526fae772bb6014dfaed0335491e1cdfa92d3aca1481ae5d9a83'),
+ hmac(str_repeat('abc', 1000), 'secret', true)
+);
+
diff --git a/vendor/lizhichao/one-sm/tests/sm4.php b/vendor/lizhichao/one-sm/tests/sm4.php
new file mode 100644
index 000000000..ff032882a
--- /dev/null
+++ b/vendor/lizhichao/one-sm/tests/sm4.php
@@ -0,0 +1,79 @@
+enDataEcb($data);
+// 加密后的长度和原数据长度一致
+eq(strlen($d), $str_len);
+// 解密ecb
+$d = $sm4->deDataEcb($d);
+// 解密后和原数据相等
+eq(md5($d), $sign);
+
+echo "\n --- cbc --- \n";
+// 加密cbc
+$d = $sm4->enDataCbc($data, $iv);
+// 加密后的长度和原数据长度一致
+eq(strlen($d), $str_len);
+// 解密cbc
+$d = $sm4->deDataCbc($d, $iv);
+// 解密后和原数据相等
+eq(md5($d), $sign);
+
+echo "\n --- ofb --- \n";
+// 加密ofb
+$d = $sm4->enDataOfb($data, $iv);
+// 加密后的长度和原数据长度一致
+eq(strlen($d), $str_len);
+// 解密ofb
+$d = $sm4->deDataOfb($d, $iv);
+// 解密后和原数据相等
+eq(md5($d), $sign);
+
+echo "\n --- cfb --- \n";
+
+// 加密cfb
+$d = $sm4->enDatacfb($data, $iv);
+// 加密后的长度和原数据长度一致
+eq(strlen($d), $str_len);
+// 解密cfb
+$d = $sm4->deDatacfb($d, $iv);
+// 解密后和原数据相等
+eq(md5($d), $sign);
+
+
+echo "\n --- ctr --- \n";
+
+// 加密ctr
+$d = $sm4->enDataCtr($data, $iv);
+// 加密后的长度和原数据长度一致
+eq(strlen($d), $str_len);
+// 解密ctr
+$d = $sm4->deDataCtr($d, $iv);
+// 解密后和原数据相等
+eq(md5($d), $sign);
+
+//ecb/cbc/cfb/ofb/ctr
\ No newline at end of file
diff --git a/vendor/services.php b/vendor/services.php
index 5443224a5..1643ffeb2 100644
--- a/vendor/services.php
+++ b/vendor/services.php
@@ -1,5 +1,5 @@
'think\\app\\Service',