/**
 * 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 { GetAllPlansResponsePlanInformation } from './get-all-plans-response-plan-information';
import { PtsV2PaymentsVoidsPost201ResponseLinks } from './pts-v2-payments-voids-post201-response-links';
import { Rbsv1plansidOrderInformation } from './rbsv1plansid-order-information';
/**
 * Plan list.
 * @export
 * @interface GetAllPlansResponsePlans
 */
export interface GetAllPlansResponsePlans {
    /**
     *
     * @type {PtsV2PaymentsVoidsPost201ResponseLinks}
     * @memberof GetAllPlansResponsePlans
     */
    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 GetAllPlansResponsePlans
     */
    id?: string;
    /**
     *
     * @type {GetAllPlansResponsePlanInformation}
     * @memberof GetAllPlansResponsePlans
     */
    planInformation?: GetAllPlansResponsePlanInformation;
    /**
     *
     * @type {Rbsv1plansidOrderInformation}
     * @memberof GetAllPlansResponsePlans
     */
    orderInformation?: Rbsv1plansidOrderInformation;
}
