Files
yycea/addons/wdsxh/library/alibabacloud/dysmsapi-20170525/src/Models/ConversionDataIntlRequest.php
2026-03-17 09:56:06 +08:00

105 lines
2.3 KiB
PHP

<?php
// This file is auto-generated, don't edit it. Thanks.
namespace AlibabaCloud\SDK\Dysmsapi\V20170525\Models;
use AlibabaCloud\Dara\Model;
class ConversionDataIntlRequest extends Model
{
/**
* @var string
*/
public $conversionRate;
/**
* @var int
*/
public $ownerId;
/**
* @var int
*/
public $reportTime;
/**
* @var string
*/
public $resourceOwnerAccount;
/**
* @var int
*/
public $resourceOwnerId;
protected $_name = [
'conversionRate' => 'ConversionRate',
'ownerId' => 'OwnerId',
'reportTime' => 'ReportTime',
'resourceOwnerAccount' => 'ResourceOwnerAccount',
'resourceOwnerId' => 'ResourceOwnerId',
];
public function validate()
{
parent::validate();
}
public function toArray($noStream = false)
{
$res = [];
if (null !== $this->conversionRate) {
$res['ConversionRate'] = $this->conversionRate;
}
if (null !== $this->ownerId) {
$res['OwnerId'] = $this->ownerId;
}
if (null !== $this->reportTime) {
$res['ReportTime'] = $this->reportTime;
}
if (null !== $this->resourceOwnerAccount) {
$res['ResourceOwnerAccount'] = $this->resourceOwnerAccount;
}
if (null !== $this->resourceOwnerId) {
$res['ResourceOwnerId'] = $this->resourceOwnerId;
}
return $res;
}
public function toMap($noStream = false)
{
return $this->toArray($noStream);
}
public static function fromMap($map = [])
{
$model = new self();
if (isset($map['ConversionRate'])) {
$model->conversionRate = $map['ConversionRate'];
}
if (isset($map['OwnerId'])) {
$model->ownerId = $map['OwnerId'];
}
if (isset($map['ReportTime'])) {
$model->reportTime = $map['ReportTime'];
}
if (isset($map['ResourceOwnerAccount'])) {
$model->resourceOwnerAccount = $map['ResourceOwnerAccount'];
}
if (isset($map['ResourceOwnerId'])) {
$model->resourceOwnerId = $map['ResourceOwnerId'];
}
return $model;
}
}