You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
think-library/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest/signFileList.php

60 lines
1.2 KiB

<?php
// This file is auto-generated, don't edit it. Thanks.
namespace AlibabaCloud\SDK\Dysmsapi\V20170525\Models\ModifySmsSignRequest;
use AlibabaCloud\Tea\Model;
class signFileList extends Model
{
/**
* @var string
*/
public $fileContents;
/**
* @var string
*/
public $fileSuffix;
protected $_name = [
'fileContents' => 'FileContents',
'fileSuffix' => 'FileSuffix',
];
public function validate()
{
}
public function toMap()
{
$res = [];
if (null !== $this->fileContents) {
$res['FileContents'] = $this->fileContents;
}
if (null !== $this->fileSuffix) {
$res['FileSuffix'] = $this->fileSuffix;
}
return $res;
}
/**
* @param array $map
*
* @return signFileList
*/
public static function fromMap($map = [])
{
$model = new self();
if (isset($map['FileContents'])) {
$model->fileContents = $map['FileContents'];
}
if (isset($map['FileSuffix'])) {
$model->fileSuffix = $map['FileSuffix'];
}
return $model;
}
}