@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
49 lines (48 loc) • 2.65 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface PaymentsStrongAuthIssuerInformation
*/
export interface PaymentsStrongAuthIssuerInformation {
/**
* Possible values: Visa Platform Connect - `8401` Merchant not participating in Visa Trusted Listing Program. - `8402` Issuer not participating in Visa Trusted Listing Program. - `8403` Cardholder has not trusted the merchant (supplied by Visa Net). - `8404` Indeterminate or invalid issuer response. - `8473` Cardholder has not trusted the merchant (issuer-supplied). - `8474` Did not meet the exemption criteria (issuer-supplied). Upto 20 Values may be received in a transaction.
* @type {string}
* @memberof PaymentsStrongAuthIssuerInformation
*/
riskAnalysisExemptionResult?: string;
/**
* Possible values: Visa Platform Connect - `2` Trusted merchant exemption validated/honored. - `3` Trusted merchant exemption failed validation/not honored.
* @type {string}
* @memberof PaymentsStrongAuthIssuerInformation
*/
trustedMerchantExemptionResult?: string;
/**
* This will be the value returned by Visanet when low value exemption has been requested. Valid values: Visa Platform Connect - `2` Low value exemption validated/honored - `3` Low value exemption failed validation/not honored
* @type {string}
* @memberof PaymentsStrongAuthIssuerInformation
*/
lowValueExemptionResult?: string;
/**
* This will be the value returned by Visanet when secure corporate payment (scp) exemption has been requested. Valid values: Visa Platform Connect - `2` Secure corporate payment exemption validated/honored - `3` Secure corporate payment exemption failed validation/not honored
* @type {string}
* @memberof PaymentsStrongAuthIssuerInformation
*/
secureCorporatePaymentResult?: string;
/**
* This will be the value returned by Visanet when transaction risk analysis (TRA) exemption has been requested. Valid values: Visa Platform Connect - `2` transaction risk analysis (TRA) exemption validated/honored - `3` transaction risk analysis (TRA) exemption failed validation/not honored
* @type {string}
* @memberof PaymentsStrongAuthIssuerInformation
*/
transactionRiskAnalysisExemptionResult?: string;
}