'EndTime', 'integrity' => 'Integrity', 'ownerId' => 'OwnerId', 'startTime' => 'StartTime', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->endTime) { $res['EndTime'] = $this->endTime; } if (null !== $this->integrity) { $res['Integrity'] = $this->integrity; } if (null !== $this->ownerId) { $res['OwnerId'] = $this->ownerId; } if (null !== $this->startTime) { $res['StartTime'] = $this->startTime; } return $res; } /** * @param array $map * * @return DescribeDomainWithIntegrityRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['EndTime'])) { $model->endTime = $map['EndTime']; } if (isset($map['Integrity'])) { $model->integrity = $map['Integrity']; } if (isset($map['OwnerId'])) { $model->ownerId = $map['OwnerId']; } if (isset($map['StartTime'])) { $model->startTime = $map['StartTime']; } return $model; } }