/**
 * 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 { PtsV2ModifyBillingAgreementPost201ResponseAgreementInformation } from './pts-v2-modify-billing-agreement-post201-response-agreement-information';
import { PtsV2ModifyBillingAgreementPost201ResponseClientReferenceInformation } from './pts-v2-modify-billing-agreement-post201-response-client-reference-information';
import { PtsV2ModifyBillingAgreementPost201ResponseInstallmentInformation } from './pts-v2-modify-billing-agreement-post201-response-installment-information';
import { PtsV2ModifyBillingAgreementPost201ResponseLinks } from './pts-v2-modify-billing-agreement-post201-response-links';
import { PtsV2ModifyBillingAgreementPost201ResponseOrderInformation } from './pts-v2-modify-billing-agreement-post201-response-order-information';
import { PtsV2ModifyBillingAgreementPost201ResponsePaymentInformation } from './pts-v2-modify-billing-agreement-post201-response-payment-information';
import { PtsV2ModifyBillingAgreementPost201ResponseProcessorInformation } from './pts-v2-modify-billing-agreement-post201-response-processor-information';
import { PtsV2ModifyBillingAgreementPost201ResponseRiskInformation } from './pts-v2-modify-billing-agreement-post201-response-risk-information';
/**
 *
 * @export
 * @interface PtsV2ModifyBillingAgreementPost201Response
 */
export interface PtsV2ModifyBillingAgreementPost201Response {
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponseLinks}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    links?: PtsV2ModifyBillingAgreementPost201ResponseLinks;
    /**
     * 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 PtsV2ModifyBillingAgreementPost201Response
     */
    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.  Returned by Cybersource for all services.
     * @type {string}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    submitTimeUtc?: string;
    /**
     * The status of the billing agreement. Possible value is:   - PENDING   - REVOKED   - ACTIVE   - FAILED   - EXPIRED   - INACTIVE
     * @type {string}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    status?: string;
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponseProcessorInformation}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    processorInformation?: PtsV2ModifyBillingAgreementPost201ResponseProcessorInformation;
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponseInstallmentInformation}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    installmentInformation?: PtsV2ModifyBillingAgreementPost201ResponseInstallmentInformation;
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponseClientReferenceInformation}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    clientReferenceInformation?: PtsV2ModifyBillingAgreementPost201ResponseClientReferenceInformation;
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponseRiskInformation}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    riskInformation?: PtsV2ModifyBillingAgreementPost201ResponseRiskInformation;
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponseAgreementInformation}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    agreementInformation?: PtsV2ModifyBillingAgreementPost201ResponseAgreementInformation;
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponseOrderInformation}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    orderInformation?: PtsV2ModifyBillingAgreementPost201ResponseOrderInformation;
    /**
     *
     * @type {PtsV2ModifyBillingAgreementPost201ResponsePaymentInformation}
     * @memberof PtsV2ModifyBillingAgreementPost201Response
     */
    paymentInformation?: PtsV2ModifyBillingAgreementPost201ResponsePaymentInformation;
}
