/** * Finix API */ /** * The primary address for the legal entity. */ export declare class CreateAssociatedIdentityRequestEntityBusinessAddress { /** * City (max 20 characters). */ 'city'?: string; 'country'?: 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; /** * 2-letter state code. */ 'region'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }