import "../ApiClient-fBZ10h6n.mjs"; import { t as Permission } from "../Permission-7IzIZMO2.mjs"; import { t as ResourceType } from "../ResourceType-qOZOQR5g.mjs"; //#region src/model/AuditLogDetail.d.ts type IAuditLogDetail = { permission: Permission; resourceType: ResourceType; type: string; id: string; }; /** * @typedef {Object} IAuditLogDetail * @property {Permission} permission * @property {ResourceType} resourceType * @property {String} type * @property {String} id */ /** * The AuditLogDetail model module. * @module model/AuditLogDetail * @type {IAuditLogDetail} */ declare class AuditLogDetail { /** * 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): void; /** * Constructs a AuditLogDetail 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/AuditLogDetail} obj Optional instance to populate. * @return {module:model/AuditLogDetail} The populated AuditLogDetail instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to AuditLogDetail. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to AuditLogDetail. */ static validateJSON(data: any): boolean; /** * Constructs a new AuditLogDetail. * @alias module:model/AuditLogDetail * @param {String} type - */ constructor(type: string); permission: Permission; resourceType: ResourceType; type: string; id: string; } declare namespace AuditLogDetail { let RequiredProperties: string[]; } //#endregion export { IAuditLogDetail, AuditLogDetail as default };