1: <?php
2:
3: declare(strict_types=1);
4:
5: /*
6: * This file has been auto generated by Jane,
7: *
8: * Do no edit it directly.
9: */
10:
11: namespace NxSys\Library\Clients\Brex\API\Expenses\Normalizer;
12:
13: use Jane\Component\JsonSchemaRuntime\Reference;
14: use NxSys\Library\Clients\Brex\API\Expenses\Runtime\Normalizer\CheckArray;
15: use NxSys\Library\Clients\Brex\API\Expenses\Runtime\Normalizer\ValidatorTrait;
16: use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface;
17: use Symfony\Component\Serializer\Normalizer\DenormalizerAwareTrait;
18: use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
19: use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface;
20: use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait;
21: use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
22:
23: class UpdateExpenseRequestNormalizer implements DenormalizerInterface, NormalizerInterface, DenormalizerAwareInterface, NormalizerAwareInterface
24: {
25: use DenormalizerAwareTrait;
26: use NormalizerAwareTrait;
27: use CheckArray;
28: use ValidatorTrait;
29:
30: public function supportsDenormalization($data, $type, $format = null): bool
31: {
32: return $type === 'NxSys\\Library\\Clients\\Brex\\API\\Expenses\\Model\\UpdateExpenseRequest';
33: }
34:
35: public function supportsNormalization($data, $format = null): bool
36: {
37: return is_object($data) && get_class($data) === 'NxSys\\Library\\Clients\\Brex\\API\\Expenses\\Model\\UpdateExpenseRequest';
38: }
39:
40: /**
41: * @return mixed
42: */
43: public function denormalize($data, $class, $format = null, array $context = [])
44: {
45: if (isset($data['$ref'])) {
46: return new Reference($data['$ref'], $context['document-origin']);
47: }
48: if (isset($data['$recursiveRef'])) {
49: return new Reference($data['$recursiveRef'], $context['document-origin']);
50: }
51: $object = new \NxSys\Library\Clients\Brex\API\Expenses\Model\UpdateExpenseRequest();
52: if (null === $data || false === \is_array($data)) {
53: return $object;
54: }
55: if (\array_key_exists('memo', $data) && $data['memo'] !== null) {
56: $object->setMemo($data['memo']);
57: unset($data['memo']);
58: } elseif (\array_key_exists('memo', $data) && $data['memo'] === null) {
59: $object->setMemo(null);
60: }
61: foreach ($data as $key => $value) {
62: if (preg_match('/.*/', (string) $key)) {
63: $object[$key] = $value;
64: }
65: }
66:
67: return $object;
68: }
69:
70: /**
71: * @return array|string|int|float|bool|\ArrayObject|null
72: */
73: public function normalize($object, $format = null, array $context = [])
74: {
75: $data = [];
76: if ($object->isInitialized('memo') && null !== $object->getMemo()) {
77: $data['memo'] = $object->getMemo();
78: }
79: foreach ($object as $key => $value) {
80: if (preg_match('/.*/', (string) $key)) {
81: $data[$key] = $value;
82: }
83: }
84:
85: return $data;
86: }
87: }
88: