Worldline Connect Node.js SDK
    Preparing search index...

    Interface ServicesClient

    interface ServicesClient {
        bankaccount(
            merchantId: string,
            postData: BankDetailsRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<BankDetailsResponse, ErrorResponse>>;
        convertAmount(
            merchantId: string,
            paymentContext: ConvertAmountParams,
        ): Promise<SdkResponse<ConvertAmount, ErrorResponse>>;
        getIINdetails(
            merchantId: string,
            postData: GetIINDetailsRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<GetIINDetailsResponse, ErrorResponse>>;
        privacypolicy(
            merchantId: string,
            paymentContext: PrivacypolicyParams,
        ): Promise<SdkResponse<GetPrivacyPolicyResponse, ErrorResponse>>;
        testconnection(
            merchantId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<TestConnection, ErrorResponse>>;
    }
    Index

    Methods