'CasterList', 'requestId' => 'RequestId', 'total' => 'Total', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->casterList) { $res['CasterList'] = null !== $this->casterList ? $this->casterList->toMap() : null; } if (null !== $this->requestId) { $res['RequestId'] = $this->requestId; } if (null !== $this->total) { $res['Total'] = $this->total; } return $res; } /** * @param array $map * * @return DescribeCastersResponseBody */ public static function fromMap($map = []) { $model = new self(); if (isset($map['CasterList'])) { $model->casterList = casterList::fromMap($map['CasterList']); } if (isset($map['RequestId'])) { $model->requestId = $map['RequestId']; } if (isset($map['Total'])) { $model->total = $map['Total']; } return $model; } }