UNPKG

connect-sdk-nodejs

Version:

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

11 lines (10 loc) 387 B
import { CreateMandateWithReturnUrl, MandateMerchantAction, MandateResponse } from "./definitions"; export interface CreateMandateRequest extends CreateMandateWithReturnUrl { } export interface CreateMandateResponse { mandate?: MandateResponse | null; merchantAction?: MandateMerchantAction | null; } export interface GetMandateResponse { mandate?: MandateResponse | null; }