UNPKG

connect-sdk-nodejs

Version:

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

19 lines (18 loc) 1.49 kB
import { CreateHostedMandateManagementRequest } from "../domain/hostedmandatemanagement"; import { PaymentContext, SdkCallback } from "../types"; export interface HostedmandatemanagementsClient { /** * Resource /{merchantId}/hostedmandatemanagements - <a href="https://epayments-api.developer-ingenico.com/s2sapi/v1/en_US/nodejs/hostedmandatemanagements/create.html">Create hosted mandate management</a> * @param cb The callback for the response. * If the call was successfull, the response body type will be {@link CreateHostedMandateManagementResponse}. * If the call was not successful, the response body type will be {@link ErrorResponse}. */ create(merchantId: string, postData: CreateHostedMandateManagementRequest, paymentContext: PaymentContext | null, cb: SdkCallback): void; /** * Resource /{merchantId}/hostedmandatemanagements/{hostedMandateManagementId} - <a href="https://epayments-api.developer-ingenico.com/s2sapi/v1/en_US/nodejs/hostedmandatemanagements/get.html">Get hosted mandate management status</a> * @param cb The callback for the response. * If the call was successfull, the response body type will be {@link GetHostedMandateManagementResponse}. * If the call was not successful, the response body type will be {@link ErrorResponse}. */ get(merchantId: string, hostedMandateManagementId: string, paymentContext: PaymentContext | null, cb: SdkCallback): void; }