connect-sdk-nodejs
Version:
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
16 lines (15 loc) • 643 B
TypeScript
import { MandateResponse } from "../mandates/definitions";
import { HostedMandateInfo, HostedMandateManagementSpecificInput } from "./definitions";
export interface CreateHostedMandateManagementRequest {
createMandateInfo?: HostedMandateInfo | null;
hostedMandateManagementSpecificInput?: HostedMandateManagementSpecificInput | null;
}
export interface CreateHostedMandateManagementResponse {
RETURNMAC?: string | null;
hostedMandateManagementId?: string | null;
partialRedirectUrl?: string | null;
}
export interface GetHostedMandateManagementResponse {
mandate?: MandateResponse | null;
status?: string | null;
}