package.es.elements.Parameter.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-1 Show documentation
Show all versions of apidom-ns-openapi-3-1 Show documentation
OpenAPI 3.1.x namespace for ApiDOM.
The newest version!
import { ParameterElement } from '@swagger-api/apidom-ns-openapi-3-0';
class Parameter extends ParameterElement {
get schema() {
return this.get('schema');
}
set schema(schema) {
this.set('schema', schema);
}
}
export default Parameter;