34 lines
632 B
PHP
34 lines
632 B
PHP
|
<?php
|
||
|
|
||
|
namespace DigiComp\HetznerDnsApi\Model;
|
||
|
|
||
|
class PrimaryServersGetResponse200
|
||
|
{
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @var PrimaryServerResponse[]|null
|
||
|
*/
|
||
|
protected $primaryServers;
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @return PrimaryServerResponse[]|null
|
||
|
*/
|
||
|
public function getPrimaryServers() : ?array
|
||
|
{
|
||
|
return $this->primaryServers;
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @param PrimaryServerResponse[]|null $primaryServers
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
public function setPrimaryServers(?array $primaryServers) : self
|
||
|
{
|
||
|
$this->primaryServers = $primaryServers;
|
||
|
return $this;
|
||
|
}
|
||
|
}
|