34 lines
665 B
PHP
34 lines
665 B
PHP
|
<?php
|
||
|
|
||
|
namespace DigiComp\HetznerDnsApi\Model;
|
||
|
|
||
|
class PrimaryServersPrimaryServerIDPutResponse200
|
||
|
{
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @var PrimaryServerResponse|null
|
||
|
*/
|
||
|
protected $primaryServer;
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @return PrimaryServerResponse|null
|
||
|
*/
|
||
|
public function getPrimaryServer() : ?PrimaryServerResponse
|
||
|
{
|
||
|
return $this->primaryServer;
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @param PrimaryServerResponse|null $primaryServer
|
||
|
*
|
||
|
* @return self
|
||
|
*/
|
||
|
public function setPrimaryServer(?PrimaryServerResponse $primaryServer) : self
|
||
|
{
|
||
|
$this->primaryServer = $primaryServer;
|
||
|
return $this;
|
||
|
}
|
||
|
}
|