/**
 * 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 { TssV2TransactionsGet200ResponseApplicationInformationApplications } from './tss-v2-transactions-get200-response-application-information-applications';
/**
 *
 * @export
 * @interface TssV2TransactionsGet200ResponseApplicationInformation
 */
export interface TssV2TransactionsGet200ResponseApplicationInformation {
    /**
     * The status of the submitted transaction.
     * @type {string}
     * @memberof TssV2TransactionsGet200ResponseApplicationInformation
     */
    status?: string;
    /**
     * Indicates the reason why a request succeeded or failed and possible action to take if a request fails.  For details, see the appendix of reason codes in the documentation for the relevant payment method.
     * @type {string}
     * @memberof TssV2TransactionsGet200ResponseApplicationInformation
     */
    reasonCode?: string;
    /**
     * Indicates whether the service request was successful. Possible values:  - `-1`: An error occurred. - `0`: The request was declined. - `1`: The request was successful.
     * @type {string}
     * @memberof TssV2TransactionsGet200ResponseApplicationInformation
     */
    rCode?: string;
    /**
     * One-word description of the result of the application.
     * @type {string}
     * @memberof TssV2TransactionsGet200ResponseApplicationInformation
     */
    rFlag?: string;
    /**
     *
     * @type {Array<TssV2TransactionsGet200ResponseApplicationInformationApplications>}
     * @memberof TssV2TransactionsGet200ResponseApplicationInformation
     */
    applications?: Array<TssV2TransactionsGet200ResponseApplicationInformationApplications>;
}
