import { IconData } from './IconData';
import { PaypalStateEnum } from './PaypalStateEnum';
/** Paypal information */
export interface Paypal {
    /** Paypal agreement */
    agreementId: string;
    /** Paypal creation date */
    creationDate: string;
    /** This paypal is the default payment mean? */
    defaultPaymentMean: boolean;
    /** Custom description of this paypal */
    description?: string;
    /** Paypal associated email */
    email: string;
    /** Payment method type icon */
    icon?: IconData;
    /**  */
    id: number;
    /** Paypal state */
    state: PaypalStateEnum;
}
//# sourceMappingURL=Paypal.d.ts.map