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

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

Initial commit

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[d24f17c]1"use strict";
2
3exports.__esModule = true;
4exports.default = void 0;
5var _apidomCore = require("@swagger-api/apidom-core");
6class SecurityScheme extends _apidomCore.ObjectElement {
7 constructor(content, meta, attributes) {
8 super(content, meta, attributes);
9 this.element = 'securityScheme';
10 }
11 get type() {
12 return this.get('type');
13 }
14 set type(type) {
15 this.set('type', type);
16 }
17 get description() {
18 return this.get('description');
19 }
20 set description(description) {
21 this.set('description', description);
22 }
23 get name() {
24 return this.get('name');
25 }
26 set name(name) {
27 this.set('name', name);
28 }
29 get in() {
30 return this.get('in');
31 }
32 set in(inVal) {
33 this.set('in', inVal);
34 }
35 get scheme() {
36 return this.get('scheme');
37 }
38 set scheme(scheme) {
39 this.set('scheme', scheme);
40 }
41 get bearerFormat() {
42 return this.get('bearerFormat');
43 }
44 set bearerFormat(bearerFormat) {
45 this.set('bearerFormat', bearerFormat);
46 }
47 get flows() {
48 return this.get('flows');
49 }
50 set flows(flows) {
51 this.set('flows', flows);
52 }
53 get openIdConnectUrl() {
54 return this.get('openIdConnectUrl');
55 }
56 set openIdConnectUrl(openIdConnectUrl) {
57 this.set('openIdConnectUrl', openIdConnectUrl);
58 }
59}
60var _default = exports.default = SecurityScheme;
Note: See TracBrowser for help on using the repository browser.