import { PaymentContext, SdkResponse } from "../../../model/types"; import { ErrorResponse, GetInstallmentRequest, InstallmentOptionsResponse } from "../domain"; export interface InstallmentsClient { /** * Resource /{merchantId}/installments/getInstallmentsInfo - Get installment information */ getInstallmentsInfo(merchantId: string, postData: GetInstallmentRequest, paymentContext?: PaymentContext | null): Promise>; }