source: node_modules/@swagger-api/apidom-ns-openapi-3-0/cjs/elements/OAuthFlow.cjs

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 877 bytes
Line 
1"use strict";
2
3exports.__esModule = true;
4exports.default = void 0;
5var _apidomCore = require("@swagger-api/apidom-core");
6class OAuthFlow extends _apidomCore.ObjectElement {
7 constructor(content, meta, attributes) {
8 super(content, meta, attributes);
9 this.element = 'oAuthFlow';
10 }
11 get authorizationUrl() {
12 return this.get('authorizationUrl');
13 }
14 set authorizationUrl(authorizationUrl) {
15 this.set('authorizationUrl', authorizationUrl);
16 }
17 get tokenUrl() {
18 return this.get('tokenUrl');
19 }
20 set tokenUrl(tokenUrl) {
21 this.set('tokenUrl', tokenUrl);
22 }
23 get refreshUrl() {
24 return this.get('refreshUrl');
25 }
26 set refreshUrl(refreshUrl) {
27 this.set('refreshUrl', refreshUrl);
28 }
29 get scopes() {
30 return this.get('scopes');
31 }
32 set scopes(scopes) {
33 this.set('scopes', scopes);
34 }
35}
36var _default = exports.default = OAuthFlow;
Note: See TracBrowser for help on using the repository browser.