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