/**
 * 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 { PtsV2PaymentsPost400ResponseDetails } from './pts-v2-payments-post400-response-details';
/**
 *
 * @export
 * @interface RiskV1DecisionsPost201ResponseErrorInformation
 */
export interface RiskV1DecisionsPost201ResponseErrorInformation {
    /**
     * The reason of the status.  Possible values:  - `EXPIRED_CARD`  - `SCORE_EXCEEDS_THRESHOLD`  - `DECISION_PROFILE_REVIEW`  - `DECISION_PROFILE_REJECT`  - `CONSUMER_AUTHENTICATION_REQUIRED`  - `INVALID_MERCHANT_CONFIGURATION`  - `CONSUMER_AUTHENTICATION_FAILED`  - `DECISION_PROFILE_CHALLENGE`  - `CUSTOMER_WATCHLIST_MATCH`  - `ADDRESS_COUNTRY_WATCHLIST_MATCH`  - `EMAIL_COUNTRY_WATCHLIST_MATCH`  - `IP_COUNTRY_WATCHLIST_MATCH`
     * @type {string}
     * @memberof RiskV1DecisionsPost201ResponseErrorInformation
     */
    reason?: string;
    /**
     * The detail message related to the status and reason listed above.
     * @type {string}
     * @memberof RiskV1DecisionsPost201ResponseErrorInformation
     */
    message?: string;
    /**
     *
     * @type {Array<PtsV2PaymentsPost400ResponseDetails>}
     * @memberof RiskV1DecisionsPost201ResponseErrorInformation
     */
    details?: Array<PtsV2PaymentsPost400ResponseDetails>;
}
