import { ObjectElement } from '@swagger-api/apidom-core'; class Example extends ObjectElement { constructor(content, meta, attributes) { super(content, meta, attributes); this.element = 'example'; } get summary() { return this.get('summary'); } set summary(summary) { this.set('summary', summary); } get description() { return this.get('description'); } set description(description) { this.set('description', description); } get value() { return this.get('value'); } set value(value) { this.set('value', value); } get externalValue() { return this.get('externalValue'); } set externalValue(externalValue) { this.set('externalValue', externalValue); } } export default Example;