ip; } /** * @param string $ip */ public function setIp($ip) { $this->ip = $ip; } /** * @return bool */ public function isActive() { return $this->active; } /** * @param bool $active */ public function setActive($active) { $this->active = $active; } /** * @return string */ public function getRoute() { return $this->route; } /** * @param string $route */ public function setRoute($route) { $this->route = $route; } /** * @return string */ public function getHttpMethod() { return $this->http_method; } /** * @param string $http_method */ public function setHttpMethod($http_method) { $this->http_method = $http_method; } /** * @return int */ public function getRateLimit() { return $this->rate_limit; } /** * @param int $rate_limit */ public function setRateLimit($rate_limit) { $this->rate_limit = $rate_limit; } /** * @return int */ public function getRateLimitDecay() { return $this->rate_limit_decay; } /** * @param int $rate_limit_decay */ public function setRateLimitDecay($rate_limit_decay) { $this->rate_limit_decay = $rate_limit_decay; } /** * @ORM\Column(name="active", type="boolean") * @var bool */ private $active; /** * @ORM\Column(name="route", type="string") * @var string */ private $route; /** * @ORM\Column(name="http_method", type="string") * @var string */ private $http_method; /** * @ORM\Column(name="rate_limit", type="integer") * @var int */ private $rate_limit; /** * @ORM\Column(name="rate_limit_decay", type="integer") * @var int */ private $rate_limit_decay; }