/** * Finix API */ /** * The address of the bank account or card owner. */ export declare class CreatePaymentInstrumentRequestAddress { /** * City (max 20 characters). */ 'city'?: string; /** * 2-letter State code. */ 'region'?: string; /** * Zip or Postal code (max 7 characters). */ 'postalCode'?: string; /** * First line of the address (max 35 characters). */ 'line1'?: string; /** * 3 Letter country code (e.g. USA). */ 'country'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }