This commit is contained in:
2026-07-23 10:37:26 +08:00
parent 090abf48fa
commit 40add876cd
3503 changed files with 838201 additions and 5 deletions
@@ -0,0 +1,66 @@
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace AlibabaCloud\SDK\Dysmsapi\V20170525\Models\CheckMobilesCardSupportResponseBody;
use AlibabaCloud\Dara\Model;
use AlibabaCloud\SDK\Dysmsapi\V20170525\Models\CheckMobilesCardSupportResponseBody\data\queryResult;
class data extends Model
{
/**
* @var queryResult[]
*/
public $queryResult;
protected $_name = [
'queryResult' => 'queryResult',
];
public function validate()
{
if (\is_array($this->queryResult)) {
Model::validateArray($this->queryResult);
}
parent::validate();
}
public function toArray($noStream = false)
{
$res = [];
if (null !== $this->queryResult) {
if (\is_array($this->queryResult)) {
$res['queryResult'] = [];
$n1 = 0;
foreach ($this->queryResult as $item1) {
$res['queryResult'][$n1] = null !== $item1 ? $item1->toArray($noStream) : $item1;
++$n1;
}
}
}
return $res;
}
public function toMap($noStream = false)
{
return $this->toArray($noStream);
}
public static function fromMap($map = [])
{
$model = new self();
if (isset($map['queryResult'])) {
if (!empty($map['queryResult'])) {
$model->queryResult = [];
$n1 = 0;
foreach ($map['queryResult'] as $item1) {
$model->queryResult[$n1] = queryResult::fromMap($item1);
++$n1;
}
}
}
return $model;
}
}