source: node_modules/@swagger-api/apidom-ns-openapi-3-0/es/elements/OAuthFlows.mjs@ 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: 845 bytes
Line 
1import { ObjectElement } from '@swagger-api/apidom-core';
2class OAuthFlows extends ObjectElement {
3 constructor(content, meta, attributes) {
4 super(content, meta, attributes);
5 this.element = 'oAuthFlows';
6 }
7 get implicit() {
8 return this.get('implicit');
9 }
10 set implicit(implicit) {
11 this.set('implicit', implicit);
12 }
13 get password() {
14 return this.get('password');
15 }
16 set password(password) {
17 this.set('password', password);
18 }
19 get clientCredentials() {
20 return this.get('clientCredentials');
21 }
22 set clientCredentials(clientCredentials) {
23 this.set('clientCredentials', clientCredentials);
24 }
25 get authorizationCode() {
26 return this.get('authorizationCode');
27 }
28 set authorizationCode(authorizationCode) {
29 this.set('authorizationCode', authorizationCode);
30 }
31}
32export default OAuthFlows;
Note: See TracBrowser for help on using the repository browser.