/** * Finix API */ /** * Principal\'s date of birth. */ export declare class IdentityEntityFormDob { /** * Day of birth (between 1 and 31). */ 'day'?: number; /** * Month of birth (between 1 and 12). */ 'month'?: number; /** * Year of birth (4-digit). */ 'year'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }