import { ObjectElement } from '@swagger-api/apidom-core'; /** * URI: https://datatracker.ietf.org/doc/html/draft-wright-json-schema-hyperschema-00#section-4.3 */ class Media extends ObjectElement { constructor(content, meta, attributes) { super(content, meta, attributes); this.element = 'media'; } get binaryEncoding() { return this.get('binaryEncoding'); } set binaryEncoding(binaryEncoding) { this.set('binaryEncoding', binaryEncoding); } get type() { return this.get('type'); } set type(type) { this.set('type', type); } } export default Media;