source: node_modules/@swagger-api/apidom-ns-openapi-3-0/cjs/elements/OAuthFlows.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: 940 bytes
RevLine 
[d24f17c]1"use strict";
2
3exports.__esModule = true;
4exports.default = void 0;
5var _apidomCore = require("@swagger-api/apidom-core");
6class OAuthFlows extends _apidomCore.ObjectElement {
7 constructor(content, meta, attributes) {
8 super(content, meta, attributes);
9 this.element = 'oAuthFlows';
10 }
11 get implicit() {
12 return this.get('implicit');
13 }
14 set implicit(implicit) {
15 this.set('implicit', implicit);
16 }
17 get password() {
18 return this.get('password');
19 }
20 set password(password) {
21 this.set('password', password);
22 }
23 get clientCredentials() {
24 return this.get('clientCredentials');
25 }
26 set clientCredentials(clientCredentials) {
27 this.set('clientCredentials', clientCredentials);
28 }
29 get authorizationCode() {
30 return this.get('authorizationCode');
31 }
32 set authorizationCode(authorizationCode) {
33 this.set('authorizationCode', authorizationCode);
34 }
35}
36var _default = exports.default = OAuthFlows;
Note: See TracBrowser for help on using the repository browser.