@playmoweb/payline-typescript-sdk
Version:
Payline Typescript SDK
10 lines (9 loc) • 418 B
TypeScript
import { PaylineBaseResponse } from "./payline-base-response.js";
import { PaylineCardOut } from "../payline-card-out.js";
import { PaylineExtendedCardType } from "../payline-extended-card-type.js";
declare class PaylineUpdateWalletResponse extends PaylineBaseResponse {
card: PaylineCardOut;
extendedCard: PaylineExtendedCardType;
contractNumberWalletList?: any;
}
export { PaylineUpdateWalletResponse };