<?php
declare(strict_types=1);
namespace Slivki\Request\Beauty\Master;
use Slivki\Request\QueryStringRequestInterface;
class TopMastersRequest implements QueryStringRequestInterface
{
private ?int $level;
private ?float $longitude;
private ?float $latitude;
public function __construct(?int $level, ?float $longitude, ?float $latitude)
{
$this->level = $level;
$this->longitude = $longitude;
$this->latitude = $latitude;
}
public function getLevel(): ?int
{
return $this->level;
}
public function getLongitude(): ?float
{
return $this->longitude;
}
public function getLatitude(): ?float
{
return $this->latitude;
}
}