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