source: node_modules/@swagger-api/apidom-ns-openapi-3-0/cjs/elements/ExternalDocumentation.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: 607 bytes
RevLine 
[d24f17c]1"use strict";
2
3exports.__esModule = true;
4exports.default = void 0;
5var _apidomCore = require("@swagger-api/apidom-core");
6class ExternalDocumentation extends _apidomCore.ObjectElement {
7 constructor(content, meta, attributes) {
8 super(content, meta, attributes);
9 this.element = 'externalDocumentation';
10 }
11 get description() {
12 return this.get('description');
13 }
14 set description(description) {
15 this.set('description', description);
16 }
17 get url() {
18 return this.get('url');
19 }
20 set url(url) {
21 this.set('url', url);
22 }
23}
24var _default = exports.default = ExternalDocumentation;
Note: See TracBrowser for help on using the repository browser.