//#region src/model/IAMServiceAccountControllerApiServiceAccountDetail.d.ts type IIAMServiceAccountControllerApiServiceAccountDetail = { /** * - the identifier of this service account. */ id: string; /** * - the name of this service account. */ name: string; /** * - the description of this service account. */ description: string; /** * :model/ApiTenantSummary>} tenants */ "": Array; superAdmin: boolean; }; /** * @typedef {Object} IIAMServiceAccountControllerApiServiceAccountDetail * @property {String} id - the identifier of this service account. * @property {String} name - the name of this service account. * @property {String} description - the description of this service account. * @property {Array.} tenants * @property {Boolean} superAdmin */ /** * The IAMServiceAccountControllerApiServiceAccountDetail model module. * @module model/IAMServiceAccountControllerApiServiceAccountDetail * @type {IIAMServiceAccountControllerApiServiceAccountDetail} */ declare class IAMServiceAccountControllerApiServiceAccountDetail { /** * 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, name: any): void; /** * Constructs a IAMServiceAccountControllerApiServiceAccountDetail 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/IAMServiceAccountControllerApiServiceAccountDetail} obj Optional instance to populate. * @return {module:model/IAMServiceAccountControllerApiServiceAccountDetail} The populated IAMServiceAccountControllerApiServiceAccountDetail instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to IAMServiceAccountControllerApiServiceAccountDetail. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to IAMServiceAccountControllerApiServiceAccountDetail. */ static validateJSON(data: any): boolean; /** * Constructs a new IAMServiceAccountControllerApiServiceAccountDetail. * A User Service Account. * @alias module:model/IAMServiceAccountControllerApiServiceAccountDetail * @param {String} name - the name of this service account. */ constructor(name: string); id: string; name: string; description: string; tenants: any; superAdmin: boolean; } declare namespace IAMServiceAccountControllerApiServiceAccountDetail { let RequiredProperties: string[]; } //#endregion export { IIAMServiceAccountControllerApiServiceAccountDetail, IAMServiceAccountControllerApiServiceAccountDetail as default };