import "../ApiClient-fBZ10h6n.mjs";
import { t as BindingType } from "../BindingType-C7TJLtiV.mjs";
//#region src/model/Binding.d.ts
type IBinding = {
id: string;
type: BindingType;
externalId: string;
roleId: string;
namespaceId: string;
deleted: boolean;
};
/**
* @typedef {Object} IBinding
* @property {String} id
* @property {BindingType} type
* @property {String} externalId
* @property {String} roleId
* @property {String} namespaceId
* @property {Boolean} deleted
*/
/**
* The Binding model module.
* @module model/Binding
* @type {IBinding}
*/
declare class Binding {
/**
* Initializes the fields of this object.
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
* Only for internal use.
*/
static initialize(obj: any, type: any, externalId: any, roleId: any, deleted: any): void;
/**
* Constructs a Binding from a plain JavaScript object, optionally creating a new instance.
* Copies all relevant properties from data to obj if supplied or a new instance if not.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @param {module:model/Binding} obj Optional instance to populate.
* @return {module:model/Binding} The populated Binding instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to Binding.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to Binding.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new Binding.
* @alias module:model/Binding
* @param {module:model/BindingType} type -
* @param {String} externalId -
* @param {String} roleId -
* @param {Boolean} deleted -
*/
constructor(type: any, externalId: string, roleId: string, deleted: boolean);
id: string;
type: BindingType;
externalId: string;
roleId: string;
namespaceId: string;
deleted: boolean;
}
declare namespace Binding {
let RequiredProperties: string[];
}
//#endregion
export { IBinding, Binding as default };