UNPKG

@paciolan/cybersource-sdk

Version:
38 lines (37 loc) 1.26 kB
/** * CyberSource Merged Spec * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html * * OpenAPI spec version: 0.0.1 * * * 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. */ import { PayerAuthConfigCardTypesVerifiedByVisaCurrencies } from './payer-auth-config-card-types-verified-by-visa-currencies'; /** * * @export * @interface PayerAuthConfigCardTypesCB */ export interface PayerAuthConfigCardTypesCB { /** * The value is for 3DS2.0 and is a Directory Server assigned 3DS Requestor ID value. If this field is passed in request, it will override Requestor Id value that is configured on the Merchant's profile. * @type {string} * @memberof PayerAuthConfigCardTypesCB */ requestorId?: string; /** * * @type {boolean} * @memberof PayerAuthConfigCardTypesCB */ enabled?: boolean; /** * * @type {Array<PayerAuthConfigCardTypesVerifiedByVisaCurrencies>} * @memberof PayerAuthConfigCardTypesCB */ currencies?: Array<PayerAuthConfigCardTypesVerifiedByVisaCurrencies>; }