prestashop-module/retailcrm/lib/api/RetailcrmApiRequest.php

64 lines
887 B
PHP
Raw Normal View History

2021-10-12 20:55:46 +07:00
<?php
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;
}
}