forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLink.php
95 lines (81 loc) · 3 KB
/
Link.php
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
<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Annotations;
use OpenApi\Generator;
/**
* @Annotation
* A "Link Object" https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#link-object
*
* The Link object represents a possible design-time link for a response.
* The presence of a link does not guarantee the caller's ability to successfully invoke it, rather it provides a known relationship and traversal mechanism between responses and other operations.
* Unlike dynamic links (i.e. links provided in the response payload), the OA linking mechanism does not require link information in the runtime response.
* For computing links, and providing instructions to execute them, a runtime expression is used for accessing values in an operation and using them as parameters while invoking the linked operation.
*/
class Link extends AbstractAnnotation
{
/**
* $ref See https://swagger.io/docs/specification/using-ref/.
*
* @var string
*/
public $ref = Generator::UNDEFINED;
/**
* The key into MediaType->links array.
*
* @var string
*/
public $link = Generator::UNDEFINED;
/**
* A relative or absolute reference to an OA operation.
* This field is mutually exclusive of the operationId field, and must point to an Operation Object.
* Relative operationRef values may be used to locate an existing Operation Object in the OpenAPI definition.
*
* @var string
*/
public $operationRef = Generator::UNDEFINED;
/**
* The name of an existing, resolvable OA operation, as defined with a unique operationId.
* This field is mutually exclusive of the operationRef field.
*
* @var string
*/
public $operationId = Generator::UNDEFINED;
/**
* A map representing parameters to pass to an operation as specified with operationId or identified via operationRef.
* The key is the parameter name to be used, whereas the value can be a constant or an expression to be evaluated and passed to the linked operation.
* The parameter name can be qualified using the parameter location [{in}.]{name} for operations that use the same parameter name in different locations (e.g. path.id).
*/
public $parameters = Generator::UNDEFINED;
/**
* A literal value or {expression} to use as a request body when calling the target operation.
*/
public $requestBody = Generator::UNDEFINED;
/**
* A description of the link.
* CommonMark syntax may be used for rich text representation.
*
* @var string
*/
public $description = Generator::UNDEFINED;
/**
* A server object to be used by the target operation.
*
* @var Server
*/
public $server = Generator::UNDEFINED;
/**
* @inheritdoc
*/
public static $_nested = [
Server::class => 'server',
];
/**
* @inheritdoc
*/
public static $_parents = [
Components::class,
Response::class,
];
}