hetzner-dns-api/generated/Normalizer/ZonesZoneIDGetResponse200Normalizer.php

61 lines
2.5 KiB
PHP
Raw Normal View History

2023-01-05 12:55:52 +01:00
<?php
namespace DigiComp\HetznerDnsApi\Normalizer;
use Jane\Component\JsonSchemaRuntime\Reference;
use DigiComp\HetznerDnsApi\Runtime\Normalizer\CheckArray;
use Symfony\Component\Serializer\Exception\InvalidArgumentException;
use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface;
use Symfony\Component\Serializer\Normalizer\DenormalizerAwareTrait;
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
class ZonesZoneIDGetResponse200Normalizer implements DenormalizerInterface, NormalizerInterface, DenormalizerAwareInterface, NormalizerAwareInterface
{
use DenormalizerAwareTrait;
use NormalizerAwareTrait;
use CheckArray;
public function supportsDenormalization($data, $type, $format = null) : bool
{
return $type === 'DigiComp\\HetznerDnsApi\\Model\\ZonesZoneIDGetResponse200';
}
public function supportsNormalization($data, $format = null) : bool
{
return is_object($data) && get_class($data) === 'DigiComp\\HetznerDnsApi\\Model\\ZonesZoneIDGetResponse200';
}
/**
* @return mixed
*/
public function denormalize($data, $class, $format = null, array $context = array())
{
if (isset($data['$ref'])) {
return new Reference($data['$ref'], $context['document-origin']);
}
if (isset($data['$recursiveRef'])) {
return new Reference($data['$recursiveRef'], $context['document-origin']);
}
$object = new \DigiComp\HetznerDnsApi\Model\ZonesZoneIDGetResponse200();
if (null === $data || false === \is_array($data)) {
return $object;
}
if (\array_key_exists('zone', $data) && $data['zone'] !== null) {
$object->setZone($this->denormalizer->denormalize($data['zone'], 'DigiComp\\HetznerDnsApi\\Model\\ZoneResponse', 'json', $context));
}
elseif (\array_key_exists('zone', $data) && $data['zone'] === null) {
$object->setZone(null);
}
return $object;
}
/**
* @return array|string|int|float|bool|\ArrayObject|null
*/
public function normalize($object, $format = null, array $context = array())
{
$data = array();
if (null !== $object->getZone()) {
$data['zone'] = $this->normalizer->normalize($object->getZone(), 'json', $context);
}
return $data;
}
}