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