/**
 * 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 { Ptsv2billingagreementsPaymentInformationBank } from './ptsv2billingagreements-payment-information-bank';
import { Ptsv2billingagreementsPaymentInformationCard } from './ptsv2billingagreements-payment-information-card';
import { Ptsv2billingagreementsPaymentInformationPaymentType } from './ptsv2billingagreements-payment-information-payment-type';
import { Ptsv2billingagreementsPaymentInformationTokenizedCard } from './ptsv2billingagreements-payment-information-tokenized-card';
/**
 *
 * @export
 * @interface Ptsv2billingagreementsPaymentInformation
 */
export interface Ptsv2billingagreementsPaymentInformation {
    /**
     *
     * @type {Ptsv2billingagreementsPaymentInformationCard}
     * @memberof Ptsv2billingagreementsPaymentInformation
     */
    card?: Ptsv2billingagreementsPaymentInformationCard;
    /**
     *
     * @type {Ptsv2billingagreementsPaymentInformationTokenizedCard}
     * @memberof Ptsv2billingagreementsPaymentInformation
     */
    tokenizedCard?: Ptsv2billingagreementsPaymentInformationTokenizedCard;
    /**
     *
     * @type {Ptsv2billingagreementsPaymentInformationPaymentType}
     * @memberof Ptsv2billingagreementsPaymentInformation
     */
    paymentType?: Ptsv2billingagreementsPaymentInformationPaymentType;
    /**
     *
     * @type {Ptsv2billingagreementsPaymentInformationBank}
     * @memberof Ptsv2billingagreementsPaymentInformation
     */
    bank?: Ptsv2billingagreementsPaymentInformationBank;
}
