api; } /** * @param mixed $api * * @return RetailcrmApiRequest */ public function setApi($api) { $this->api = $api; return $this; } /** * @return mixed */ public function getData() { return $this->data; } /** * @param mixed $data */ public function setData($data) { $this->data = $data; return $this; } /** * @return mixed */ public function getMethod() { return $this->method; } /** * @param mixed $method */ public function setMethod($method) { $this->method = $method; return $this; } }