@playmoweb/payline-typescript-sdk
Version:
Payline Typescript SDK
24 lines (23 loc) • 593 B
TypeScript
import { PaylinePaymentData } from "./payline-payment-data.js";
declare enum PaylineCardType {
CB = "CB",
VISA = "VISA",
MASTERCARD = "MASTERCARD",
MAESTRO = "MAESTRO",
AMEX = "AMEX"
}
declare class PaylineCard {
encryptionKeyId?: string;
encryptedData?: string;
number?: string;
type: PaylineCardType;
expirationDate?: string;
cvx?: string;
ownerBirthdayDate?: string;
password?: string;
cardPresent?: string;
cardholder?: string;
token?: string;
paymentData?: PaylinePaymentData;
}
export { PaylineCard, PaylineCardType };