"use strict"; exports.__esModule = true; exports.default = void 0; var _apidomCore = require("@swagger-api/apidom-core"); class Reference extends _apidomCore.ObjectElement { constructor(content, meta, attributes) { super(content, meta, attributes); this.element = 'reference'; this.classes.push('openapi-reference'); } get $ref() { return this.get('$ref'); } set $ref($ref) { this.set('$ref', $ref); } } var _default = exports.default = Reference;