'RequestId', 'showId' => 'ShowId', 'failedList' => 'failedList', 'successfulShowIds' => 'successfulShowIds', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->requestId) { $res['RequestId'] = $this->requestId; } if (null !== $this->showId) { $res['ShowId'] = $this->showId; } if (null !== $this->failedList) { $res['failedList'] = $this->failedList; } if (null !== $this->successfulShowIds) { $res['successfulShowIds'] = $this->successfulShowIds; } return $res; } /** * @param array $map * * @return RemoveShowFromShowListResponseBody */ public static function fromMap($map = []) { $model = new self(); if (isset($map['RequestId'])) { $model->requestId = $map['RequestId']; } if (isset($map['ShowId'])) { $model->showId = $map['ShowId']; } if (isset($map['failedList'])) { $model->failedList = $map['failedList']; } if (isset($map['successfulShowIds'])) { $model->successfulShowIds = $map['successfulShowIds']; } return $model; } }