61 lines
No EOL
931 B
PHP
61 lines
No EOL
931 B
PHP
<?php
|
|
|
|
namespace DigiComp\HetznerDnsApi\Model;
|
|
|
|
class ZonesGetResponse200
|
|
{
|
|
/**
|
|
*
|
|
*
|
|
* @var ZoneResponse[]|null
|
|
*/
|
|
protected $zones;
|
|
/**
|
|
*
|
|
*
|
|
* @var Meta|null
|
|
*/
|
|
protected $meta;
|
|
/**
|
|
*
|
|
*
|
|
* @return ZoneResponse[]|null
|
|
*/
|
|
public function getZones() : ?array
|
|
{
|
|
return $this->zones;
|
|
}
|
|
/**
|
|
*
|
|
*
|
|
* @param ZoneResponse[]|null $zones
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setZones(?array $zones) : self
|
|
{
|
|
$this->zones = $zones;
|
|
return $this;
|
|
}
|
|
/**
|
|
*
|
|
*
|
|
* @return Meta|null
|
|
*/
|
|
public function getMeta() : ?Meta
|
|
{
|
|
return $this->meta;
|
|
}
|
|
/**
|
|
*
|
|
*
|
|
* @param Meta|null $meta
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setMeta(?Meta $meta) : self
|
|
{
|
|
$this->meta = $meta;
|
|
return $this;
|
|
}
|
|
} |