//#region src/model/Relation1.d.ts
/**
* Enum Relation1
* @type {{
* "UPSERT": "UPSERT","USED_BY": "USED_BY",
* }}
*/
declare const Relation1Static: {
"UPSERT": "UPSERT";
"USED_BY": "USED_BY";
};
/**
* Enum class Relation1.
* @enum {}
* @readonly
*/
declare class Relation1 {
/**
* Returns a Relation1 enum value from a Javascript object name.
* @param {Object} data The plain JavaScript object containing the name of the enum value.
* @return {module:model/Relation1} The enum Relation1 value.
*/
static constructFromObject(object: any): any;
/**
* value: "UPSERT"
* @const
*/
UPSERT: string;
/**
* value: "USED_BY"
* @const
*/
USED_BY: string;
}
/**
* *
*/
type Relation1 = any;
//#endregion
export { Relation1, Relation1 as default, Relation1Static };