/**
 * 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 PtsV2PayoutsPost201ResponseErrorInformation
 */
export interface PtsV2PayoutsPost201ResponseErrorInformation {
    /**
     * The reason of the status.  Possible values:  - EXPIRED_CARD  - PROCESSOR_DECLINED  - STOLEN_LOST_CARD  - UNAUTHORIZED_CARD  - CVN_NOT_MATCH  - INVALID_CVN  - BLACKLISTED_CUSTOMER  - INVALID_ACCOUNT  - GENERAL_DECLINE  - RISK_CONTROL_DECLINE  - PROCESSOR_RISK_CONTROL_DECLINE  - ALLOWABLE_PIN_RETRIES_EXCEEDED  - PROCESSOR_ERROR
     * @type {string}
     * @memberof PtsV2PayoutsPost201ResponseErrorInformation
     */
    reason?: string;
    /**
     * The detail message related to the status and reason listed above.
     * @type {string}
     * @memberof PtsV2PayoutsPost201ResponseErrorInformation
     */
    message?: string;
    /**
     *
     * @type {Array<PtsV2PaymentsPost400ResponseDetails>}
     * @memberof PtsV2PayoutsPost201ResponseErrorInformation
     */
    details?: Array<PtsV2PaymentsPost400ResponseDetails>;
}
