'ClientToken', 'content' => 'Content', 'ownerId' => 'OwnerId', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->clientToken) { $res['ClientToken'] = $this->clientToken; } if (null !== $this->content) { $res['Content'] = $this->content; } if (null !== $this->ownerId) { $res['OwnerId'] = $this->ownerId; } return $res; } /** * @param array $map * * @return AddCasterEpisodeGroupContentRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['ClientToken'])) { $model->clientToken = $map['ClientToken']; } if (isset($map['Content'])) { $model->content = $map['Content']; } if (isset($map['OwnerId'])) { $model->ownerId = $map['OwnerId']; } return $model; } }