/** * Adyen BinLookup Service * The BIN Lookup API provides endpoints for retrieving information, such as [cost estimates](https://docs.adyen.com/features/cost-estimation), and 3D Secure supported version based on a given [BIN](https://docs.adyen.com/payments-basics/payment-glossary#bankidentificationnumberbin). * * OpenAPI spec version: 40 * Contact: support@adyen.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ export interface ThreeDS2CardRangeDetail { /** * Card brand. */ brandCode?: string; /** * BIN end range. */ endRange?: string; /** * BIN start range. */ startRange?: string; /** * 3D Secure protocol version. */ threeDS2Version?: string; /** * In a 3D Secure 2 browser-based flow, this is the URL where you should send the device fingerprint to. */ threeDSMethodURL?: string; }