| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace AlibabaCloud\SDK\Dysmsapi\V20170525\Models;
- use AlibabaCloud\Tea\Model;
- class ConversionDataIntlRequest extends Model
- {
- /**
- * @example 0.53
- *
- * @var string
- */
- public $conversionRate;
- /**
- * @var int
- */
- public $ownerId;
- /**
- * @example 1349055900000
- *
- * @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()
- {
- }
- public function toMap()
- {
- $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;
- }
- /**
- * @param array $map
- *
- * @return ConversionDataIntlRequest
- */
- 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;
- }
- }
|