/** * Finix API */ import { Country } from './country'; /** * Principal\'s personal home address. This field is used for `Identity` verification purposes. */ export declare class Address { /** * City (max 20 characters). */ 'city'?: string | null; 'country'?: Country | null; /** * First line of the address (max 35 characters). */ 'line1'?: string | null; /** * Second line of the address (max 35 characters). */ 'line2'?: string | null; /** * Zip or Postal code (max 7 characters). */ 'postalCode'?: string | null; /** * 2-letter State code. */ 'region'?: string | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }