source: node_modules/@swagger-api/apidom-ns-openapi-3-0/cjs/elements/Components.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.5 KB
RevLine 
[d24f17c]1"use strict";
2
3exports.__esModule = true;
4exports.default = void 0;
5var _apidomCore = require("@swagger-api/apidom-core");
6class Components extends _apidomCore.ObjectElement {
7 constructor(content, meta, attributes) {
8 super(content, meta, attributes);
9 this.element = 'components';
10 }
11 get schemas() {
12 return this.get('schemas');
13 }
14 set schemas(schemas) {
15 this.set('schemas', schemas);
16 }
17 get responses() {
18 return this.get('responses');
19 }
20 set responses(responses) {
21 this.set('responses', responses);
22 }
23 get parameters() {
24 return this.get('parameters');
25 }
26 set parameters(parameters) {
27 this.set('parameters', parameters);
28 }
29 get examples() {
30 return this.get('examples');
31 }
32 set examples(examples) {
33 this.set('examples', examples);
34 }
35 get requestBodies() {
36 return this.get('requestBodies');
37 }
38 set requestBodies(requestBodies) {
39 this.set('requestBodies', requestBodies);
40 }
41 get headers() {
42 return this.get('headers');
43 }
44 set headers(headers) {
45 this.set('headers', headers);
46 }
47 get securitySchemes() {
48 return this.get('securitySchemes');
49 }
50 set securitySchemes(securitySchemes) {
51 this.set('securitySchemes', securitySchemes);
52 }
53 get links() {
54 return this.get('links');
55 }
56 set links(links) {
57 this.set('links', links);
58 }
59 get callbacks() {
60 return this.get('callbacks');
61 }
62 set callbacks(callbacks) {
63 this.set('callbacks', callbacks);
64 }
65}
66var _default = exports.default = Components;
Note: See TracBrowser for help on using the repository browser.