'LiveStreamSnapshotInfoList', 'nextStartTime' => 'NextStartTime', 'requestId' => 'RequestId', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->liveStreamSnapshotInfoList) { $res['LiveStreamSnapshotInfoList'] = null !== $this->liveStreamSnapshotInfoList ? $this->liveStreamSnapshotInfoList->toMap() : null; } if (null !== $this->nextStartTime) { $res['NextStartTime'] = $this->nextStartTime; } if (null !== $this->requestId) { $res['RequestId'] = $this->requestId; } return $res; } /** * @param array $map * * @return DescribeLiveStreamSnapshotInfoResponseBody */ public static function fromMap($map = []) { $model = new self(); if (isset($map['LiveStreamSnapshotInfoList'])) { $model->liveStreamSnapshotInfoList = liveStreamSnapshotInfoList::fromMap($map['LiveStreamSnapshotInfoList']); } if (isset($map['NextStartTime'])) { $model->nextStartTime = $map['NextStartTime']; } if (isset($map['RequestId'])) { $model->requestId = $map['RequestId']; } return $model; } }