'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; } }