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:
369 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import { InfoElement } from '@swagger-api/apidom-ns-openapi-3-0';
|
---|
| 2 | class Info extends InfoElement {
|
---|
| 3 | get license() {
|
---|
| 4 | return this.get('license');
|
---|
| 5 | }
|
---|
| 6 | set license(licenseElement) {
|
---|
| 7 | this.set('license', licenseElement);
|
---|
| 8 | }
|
---|
| 9 | get summary() {
|
---|
| 10 | return this.get('summary');
|
---|
| 11 | }
|
---|
| 12 | set summary(summary) {
|
---|
| 13 | this.set('summary', summary);
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
| 16 | export default Info; |
---|
Note:
See
TracBrowser
for help on using the repository browser.