/**
* External object meta data.
* <br/><span style="color: red;">You <strong>should never</strong> instantiate this class directly
* but rather use it from the <code>metadata</code> variable of your <code>ExternalObject</code> instances</span>.
* @class
*/
class ExternalObjectMetadata {
/**
* Constructor
* @param {string} name External object name
*/
constructor(name) {
this.name = name;
}
}
export { ExternalObjectMetadata };
//# sourceMappingURL=externalobjectmetadata.js.map