-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLink.php
More file actions
121 lines (92 loc) 路 2.5 KB
/
Copy pathLink.php
File metadata and controls
121 lines (92 loc) 路 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php declare(strict_types = 1);
namespace Contributte\OpenApi\Schema;
class Link
{
private ?string $operationRef = null;
private ?string $operationId = null;
/** @var mixed[] */
private array $parameters = [];
private mixed $requestBody = null;
private ?string $description = null;
private ?Server $server = null;
private ?VendorExtensions $vendorExtensions = null;
/**
* @param mixed[] $data
*/
public static function fromArray(array $data): Link
{
$link = new Link();
$link->setOperationRef($data['operationRef'] ?? null);
$link->setOperationId($data['operationId'] ?? null);
$link->setParameters($data['parameters'] ?? []);
$link->setRequestBody($data['requestBody'] ?? null);
$link->setDescription($data['description'] ?? null);
$link->setServer(isset($data['server']) ? Server::fromArray($data['server']) : null);
$link->setVendorExtensions(VendorExtensions::fromArray($data));
return $link;
}
public function setOperationRef(?string $operationRef): void
{
$this->operationRef = $operationRef;
}
public function setOperationId(?string $operationId): void
{
$this->operationId = $operationId;
}
/**
* @param mixed[] $parameters
*/
public function setParameters(array $parameters): void
{
$this->parameters = $parameters;
}
public function setRequestBody(mixed $requestBody): void
{
$this->requestBody = $requestBody;
}
public function setDescription(?string $description): void
{
$this->description = $description;
}
public function setServer(?Server $server): void
{
$this->server = $server;
}
/**
* @return mixed[]
*/
public function toArray(): array
{
$data = [];
if ($this->operationRef !== null) {
$data['operationRef'] = $this->operationRef;
}
if ($this->operationId !== null) {
$data['operationId'] = $this->operationId;
}
if ($this->parameters !== []) {
$data['parameters'] = $this->parameters;
}
if ($this->requestBody !== null) {
$data['requestBody'] = $this->requestBody;
}
if ($this->description !== null) {
$data['description'] = $this->description;
}
if ($this->server !== null) {
$data['server'] = $this->server->toArray();
}
if ($this->vendorExtensions !== null) {
$data = array_merge($data, $this->vendorExtensions->toArray());
}
return $data;
}
public function getVendorExtensions(): ?VendorExtensions
{
return $this->vendorExtensions;
}
public function setVendorExtensions(?VendorExtensions $vendorExtensions): void
{
$this->vendorExtensions = $vendorExtensions;
}
}