/** * Finix API */ /** * The home address of the merchant\'s principal control owner. This field is used for identity verification purposes. */ export declare class IdentityEntityPersonalAddress { /** * First line of the address (max 35 characters). */ 'line1'?: string | null; /** * Second line of the address (max 35 characters). */ 'line2'?: string | null; /** * City (max 20 characters). */ 'city'?: string | null; /** * 2-letter State code. */ 'region'?: string | null; /** * Zip or Postal code (max 7 characters). */ 'postalCode'?: string | null; /** * 3-Letter country code (e.g. USA). */ 'country'?: string | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }