import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type BankAccountValidationInteractiveRetrieveBySortcoResponseItem = { /** * The name of the banking institution. */ bank?: string | undefined; /** * The banking institution's BIC, also know as the SWIFT BIC. */ bankBIC?: string | undefined; /** * The name of the account holding branch. */ branch?: string | undefined; /** * The branch's BIC. */ branchBIC?: string | undefined; /** * Line 1 of the branch's contact address. NB: This is the address to be used for BACs enquiries and may be a contact centre rather than the branch's address. */ contactAddressLine1?: string | undefined; /** * Line 2 of the branch's contact address. */ contactAddressLine2?: string | undefined; /** * The branch's contact post town. */ contactPostTown?: string | undefined; /** * The branch's contact postcode. */ contactPostcode?: string | undefined; /** * The branch's contact phone number. */ contactPhone?: string | undefined; /** * The branch's contact fax number. */ contactFax?: string | undefined; /** * Indicates that the account supports the faster payments service. */ fasterPaymentsSupported?: boolean | undefined; /** * Indicates that the account supports the CHAPS service. */ chapsSupported?: boolean | undefined; }; export type BankAccountValidationInteractiveRetrieveBySortcoResponse = { items?: Array | undefined; }; /** @internal */ export declare const BankAccountValidationInteractiveRetrieveBySortcoResponseItem$inboundSchema: z.ZodType; export declare function bankAccountValidationInteractiveRetrieveBySortcoResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BankAccountValidationInteractiveRetrieveBySortcoResponse$inboundSchema: z.ZodType; export declare function bankAccountValidationInteractiveRetrieveBySortcoResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bankaccountvalidationinteractiveretrievebysortcoresponse.d.ts.map