/**
 * 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 { PtsV2PaymentsPost201ResponseTokenInformation } from './pts-v2-payments-post201-response-token-information';
import { PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation } from './pts-v2-payments-voids-post201-response-client-reference-information';
import { PtsV2PaymentsVoidsPost201ResponseLinks } from './pts-v2-payments-voids-post201-response-links';
import { PtsV2PayoutsPost201ResponseErrorInformation } from './pts-v2-payouts-post201-response-error-information';
import { PtsV2PayoutsPost201ResponseIssuerInformation } from './pts-v2-payouts-post201-response-issuer-information';
import { PtsV2PayoutsPost201ResponseMerchantInformation } from './pts-v2-payouts-post201-response-merchant-information';
import { PtsV2PayoutsPost201ResponseOrderInformation } from './pts-v2-payouts-post201-response-order-information';
import { PtsV2PayoutsPost201ResponseProcessorInformation } from './pts-v2-payouts-post201-response-processor-information';
import { PtsV2PayoutsPost201ResponseRecipientInformation } from './pts-v2-payouts-post201-response-recipient-information';
/**
 *
 * @export
 * @interface PtsV2PayoutsPost201Response
 */
export interface PtsV2PayoutsPost201Response {
    /**
     *
     * @type {PtsV2PaymentsVoidsPost201ResponseLinks}
     * @memberof PtsV2PayoutsPost201Response
     */
    links?: PtsV2PaymentsVoidsPost201ResponseLinks;
    /**
     * An unique identification number generated by Cybersource to identify the submitted request. Returned by all services. It is also appended to the endpoint of the resource. On incremental authorizations, this value with be the same as the identification number returned in the original authorization response.
     * @type {string}
     * @memberof PtsV2PayoutsPost201Response
     */
    id?: string;
    /**
     * Time of request in UTC. `Format: YYYY-MM-DDThh:mm:ssZ`  Example 2016-08-11T22:47:57Z equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The T separates the date and the time. The Z indicates UTC.
     * @type {string}
     * @memberof PtsV2PayoutsPost201Response
     */
    submitTimeUtc?: string;
    /**
     * The status of the submitted transaction.  Possible values:  - ACCEPTED  - DECLINED  - INVALID_REQUEST
     * @type {string}
     * @memberof PtsV2PayoutsPost201Response
     */
    status?: string;
    /**
     * Cybersource or merchant generated transaction reference number. This is sent to the processor and is echoed back in the response to the merchant. This is This value is used for reconciliation purposes.
     * @type {string}
     * @memberof PtsV2PayoutsPost201Response
     */
    reconciliationId?: string;
    /**
     *
     * @type {PtsV2PayoutsPost201ResponseErrorInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    errorInformation?: PtsV2PayoutsPost201ResponseErrorInformation;
    /**
     *
     * @type {PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    clientReferenceInformation?: PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation;
    /**
     *
     * @type {PtsV2PayoutsPost201ResponseMerchantInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    merchantInformation?: PtsV2PayoutsPost201ResponseMerchantInformation;
    /**
     *
     * @type {PtsV2PayoutsPost201ResponseOrderInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    orderInformation?: PtsV2PayoutsPost201ResponseOrderInformation;
    /**
     *
     * @type {PtsV2PayoutsPost201ResponseProcessorInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    processorInformation?: PtsV2PayoutsPost201ResponseProcessorInformation;
    /**
     *
     * @type {PtsV2PayoutsPost201ResponseRecipientInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    recipientInformation?: PtsV2PayoutsPost201ResponseRecipientInformation;
    /**
     *
     * @type {PtsV2PayoutsPost201ResponseIssuerInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    issuerInformation?: PtsV2PayoutsPost201ResponseIssuerInformation;
    /**
     *
     * @type {PtsV2PaymentsPost201ResponseTokenInformation}
     * @memberof PtsV2PayoutsPost201Response
     */
    tokenInformation?: PtsV2PaymentsPost201ResponseTokenInformation;
}
