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