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:
282 bytes
|
Line | |
---|
1 | import { OperationElement } from '@swagger-api/apidom-ns-openapi-3-0';
|
---|
2 | class Operation extends OperationElement {
|
---|
3 | get requestBody() {
|
---|
4 | return this.get('requestBody');
|
---|
5 | }
|
---|
6 | set requestBody(requestBody) {
|
---|
7 | this.set('requestBody', requestBody);
|
---|
8 | }
|
---|
9 | }
|
---|
10 | export default Operation; |
---|
Note:
See
TracBrowser
for help on using the repository browser.