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 UpdateUser 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 updates a user. Any parameters not provided will be left unchanged.
20:
21: *
22: * @param array $headerParameters {
23: *
24: * @var string $Idempotency-Key
25: * }
26: */
27: public function __construct(string $id, \NxSys\Library\Clients\Brex\API\Team\Model\UpdateUserRequest $requestBody, array $headerParameters = [])
28: {
29: $this->id = $id;
30: $this->body = $requestBody;
31: $this->headerParameters = $headerParameters;
32: }
33:
34: public function getMethod(): string
35: {
36: return 'PUT';
37: }
38:
39: public function getUri(): string
40: {
41: return str_replace(['{id}'], [$this->id], '/v2/users/{id}');
42: }
43:
44: public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
45: {
46: if ($this->body instanceof \NxSys\Library\Clients\Brex\API\Team\Model\UpdateUserRequest) {
47: return [['Content-Type' => ['application/json']], $serializer->serialize($this->body, 'json')];
48: }
49:
50: return [[], null];
51: }
52:
53: public function getExtraHeaders(): array
54: {
55: return ['Accept' => ['application/json']];
56: }
57:
58: protected function getHeadersOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
59: {
60: $optionsResolver = parent::getHeadersOptionsResolver();
61: $optionsResolver->setDefined(['Idempotency-Key']);
62: $optionsResolver->setRequired([]);
63: $optionsResolver->setDefaults([]);
64: $optionsResolver->addAllowedTypes('Idempotency-Key', ['string', 'null']);
65:
66: return $optionsResolver;
67: }
68:
69: /**
70: * {@inheritdoc}
71: *
72: * @return \NxSys\Library\Clients\Brex\API\Team\Model\UserResponse|null
73: *
74: * @throws \NxSys\Library\Clients\Brex\API\Team\Exception\UpdateUserBadRequestException
75: * @throws \NxSys\Library\Clients\Brex\API\Team\Exception\UpdateUserUnauthorizedException
76: * @throws \NxSys\Library\Clients\Brex\API\Team\Exception\UpdateUserForbiddenException
77: */
78: protected function transformResponseBody(\Psr\Http\Message\ResponseInterface $response, \Symfony\Component\Serializer\SerializerInterface $serializer, ?string $contentType = null)
79: {
80: $status = $response->getStatusCode();
81: $body = (string) $response->getBody();
82: if (is_null($contentType) === false && (200 === $status && mb_strpos($contentType, 'application/json') !== false)) {
83: return $serializer->deserialize($body, 'NxSys\\Library\\Clients\\Brex\\API\\Team\\Model\\UserResponse', 'json');
84: }
85: if (400 === $status) {
86: throw new \NxSys\Library\Clients\Brex\API\Team\Exception\UpdateUserBadRequestException($response);
87: }
88: if (401 === $status) {
89: throw new \NxSys\Library\Clients\Brex\API\Team\Exception\UpdateUserUnauthorizedException($response);
90: }
91: if (403 === $status) {
92: throw new \NxSys\Library\Clients\Brex\API\Team\Exception\UpdateUserForbiddenException($response);
93: }
94: }
95:
96: public function getAuthenticationScopes(): array
97: {
98: return ['OAuth2'];
99: }
100: }
101: