%PDF- %PDF-
Direktori : /var/www/html/shaban/duassis/api/vendor/zircote/swagger-php/src/Annotations/ |
Current File : //var/www/html/shaban/duassis/api/vendor/zircote/swagger-php/src/Annotations/Flow.php |
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Annotations; /** * Configuration details for a supported OAuth Flow * [OAuth Flow Object](https://swagger.io/specification/#oauthFlowObject) * * @Annotation */ class Flow extends AbstractAnnotation { /** * The authorization url to be used for this flow. * This must be in the form of a url. * * @var string */ public $authorizationUrl = UNDEFINED; /** * The token URL to be used for this flow. * This must be in the form of a url. * * @var string */ public $tokenUrl = UNDEFINED; /** * The URL to be used for obtaining refresh tokens. * This must be in the form of a url. * * @var string */ public $refreshUrl = UNDEFINED; /** * Flow name. One of ['implicit', 'password', 'authorizationCode', 'clientCredentials'] * * @var string */ public $flow = UNDEFINED; /** * The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. * * @var array */ public $scopes = UNDEFINED; /** * @inheritdoc */ public static $_required = ['scopes', 'flow']; /** * {@inheritdoc} */ public static $_blacklist = ['_context', '_unmerged']; /** * @inheritdoc */ public static $_types = [ 'flow' => ['implicit', 'password', 'authorizationCode', 'clientCredentials'], 'refreshUrl' => 'string', 'authorizationUrl' => 'string', 'tokenUrl' => 'string', ]; /** * @inheritdoc */ public static $_parents = [ SecurityScheme::class, ]; }