@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
49 lines (48 loc) • 2.96 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 TssV2TransactionsGet200ResponseConsumerAuthenticationInformationStrongAuthentication
*/
export interface TssV2TransactionsGet200ResponseConsumerAuthenticationInformationStrongAuthentication {
/**
* This field will contain the low value exemption indicator with one of the following values: Possible values: - `0` ( low value exemption does not apply to the transaction) - `1` (Transaction exempt from SCA as the merchant/acquirer has determined it to be a low value payment)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseConsumerAuthenticationInformationStrongAuthentication
*/
lowValueExemptionIndicator?: string;
/**
* This field will contain the transaction risk analysis exemption indicator with one of the following values: Possible values: - `0` (TRA exemption does not apply to the transaction) - `1` (Transaction exempt from SCA as the merchant/acquirer has determined it to be low risk in accordance with the criteria defined by PSD2/RTS)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseConsumerAuthenticationInformationStrongAuthentication
*/
riskAnalysisExemptionIndicator?: string;
/**
* Possible values: - `0` (Trusted merchant exemption does not apply to the transaction) - `1` (Transaction exempt from SCA as it originated at a merchant trusted by the cardholder)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseConsumerAuthenticationInformationStrongAuthentication
*/
trustedMerchantExemptionIndicator?: string;
/**
* This field will contain the secure corporate payment exemption indicator with one of the following values: Possible values: - `0` (SCA exemption does not apply to the transaction) - `1` (Transaction exempt from SCA as the merchant/acquirer has determined it as a secure corporate payment)
* @type {string}
* @memberof TssV2TransactionsGet200ResponseConsumerAuthenticationInformationStrongAuthentication
*/
secureCorporatePaymentIndicator?: string;
/**
* This field will contain the delegated authentication exemption indicator with one of the following values: Possible values: - `0` (delegated Authentication exemption does not apply to the transaction) - `1` (Transaction exempt from SCA as authentication has been delegated to other provider (PSP,Acquirer))
* @type {string}
* @memberof TssV2TransactionsGet200ResponseConsumerAuthenticationInformationStrongAuthentication
*/
delegatedAuthenticationExemptionIndicator?: string;
}