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