import { IPaymentTokenData } from './i-payment-token-data';
export interface IPaymentToken {
    customerId: string;
    data: IPaymentTokenData;
    description: string;
    id: string;
    itemType: string;
}
