package.es.elements.nces.OperationSecurity.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apidom-ns-openapi-3-0 Show documentation
Show all versions of apidom-ns-openapi-3-0 Show documentation
OpenAPI 3.0.x namespace for ApiDOM.
import { ArrayElement } from '@swagger-api/apidom-core';
class OperationSecurity extends ArrayElement {
static primaryClass = 'operation-security';
constructor(content, meta, attributes) {
super(content, meta, attributes);
this.classes.push(OperationSecurity.primaryClass);
this.classes.push('security');
}
}
export default OperationSecurity;