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\Team\Endpoint;
12:
13: class GetLocationById extends \NxSys\Library\Clients\Brex\API\Team\Runtime\Client\BaseEndpoint implements \NxSys\Library\Clients\Brex\API\Team\Runtime\Client\Endpoint
14: {
15: use \NxSys\Library\Clients\Brex\API\Team\Runtime\Client\EndpointTrait;
16: protected $id;
17:
18: /**
19: This endpoint gets a location by ID.
20: */
21: public function __construct(string $id)
22: {
23: $this->id = $id;
24: }
25:
26: public function getMethod(): string
27: {
28: return 'GET';
29: }
30:
31: public function getUri(): string
32: {
33: return str_replace(['{id}'], [$this->id], '/v2/locations/{id}');
34: }
35:
36: public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
37: {
38: return [[], null];
39: }
40:
41: public function getExtraHeaders(): array
42: {
43: return ['Accept' => ['application/json']];
44: }
45:
46: /**
47: * {@inheritdoc}
48: *
49: * @return \NxSys\Library\Clients\Brex\API\Team\Model\LocationResponse|null
50: *
51: * @throws \NxSys\Library\Clients\Brex\API\Team\Exception\GetLocationByIdBadRequestException
52: * @throws \NxSys\Library\Clients\Brex\API\Team\Exception\GetLocationByIdUnauthorizedException
53: * @throws \NxSys\Library\Clients\Brex\API\Team\Exception\GetLocationByIdForbiddenException
54: */
55: protected function transformResponseBody(\Psr\Http\Message\ResponseInterface $response, \Symfony\Component\Serializer\SerializerInterface $serializer, ?string $contentType = null)
56: {
57: $status = $response->getStatusCode();
58: $body = (string) $response->getBody();
59: if (is_null($contentType) === false && (200 === $status && mb_strpos($contentType, 'application/json') !== false)) {
60: return $serializer->deserialize($body, 'NxSys\\Library\\Clients\\Brex\\API\\Team\\Model\\LocationResponse', 'json');
61: }
62: if (400 === $status) {
63: throw new \NxSys\Library\Clients\Brex\API\Team\Exception\GetLocationByIdBadRequestException($response);
64: }
65: if (401 === $status) {
66: throw new \NxSys\Library\Clients\Brex\API\Team\Exception\GetLocationByIdUnauthorizedException($response);
67: }
68: if (403 === $status) {
69: throw new \NxSys\Library\Clients\Brex\API\Team\Exception\GetLocationByIdForbiddenException($response);
70: }
71: }
72:
73: public function getAuthenticationScopes(): array
74: {
75: return ['OAuth2'];
76: }
77: }
78: