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 LockCard 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: Locks an existing, unlocked card. And the card owner will receive a notification about it.
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\LockCardRequest $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 'POST';
37: }
38:
39: public function getUri(): string
40: {
41: return str_replace(['{id}'], [$this->id], '/v2/cards/{id}/lock');
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\LockCardRequest) {
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\Card|null
73: */
74: protected function transformResponseBody(\Psr\Http\Message\ResponseInterface $response, \Symfony\Component\Serializer\SerializerInterface $serializer, ?string $contentType = null)
75: {
76: $status = $response->getStatusCode();
77: $body = (string) $response->getBody();
78: if (is_null($contentType) === false && (200 === $status && mb_strpos($contentType, 'application/json') !== false)) {
79: return $serializer->deserialize($body, 'NxSys\\Library\\Clients\\Brex\\API\\Team\\Model\\Card', 'json');
80: }
81: }
82:
83: public function getAuthenticationScopes(): array
84: {
85: return ['OAuth2'];
86: }
87: }
88: