* @copyright 2021 DIGITAL RETAIL TECHNOLOGIES SL * @license https://opensource.org/licenses/MIT The MIT License * * Don't forget to prefix your containers with your own identifier * to avoid any conflicts with others containers. */ class RetailcrmApiRequest { private $api; private $data; private $method; /** * @return mixed */ public function getApi() { return $this->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; } }