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