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