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