import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; import { PageIterator } from "../types/operations.js"; export declare class PaymentServices extends ClientSDK { /** * List payment services * * @remarks * List the configured payment services. */ list(request?: operations.ListPaymentServicesRequest | undefined, options?: RequestOptions): Promise>; /** * Configure a payment service * * @remarks * Configures a new payment service for use by merchants. */ create(paymentServiceCreate: components.PaymentServiceCreate, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Get payment service * * @remarks * Get the details of a configured payment service. */ get(paymentServiceId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Update a configured payment service * * @remarks * Updates the configuration of a payment service. */ update(paymentServiceUpdate: components.PaymentServiceUpdate, paymentServiceId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Delete a configured payment service * * @remarks * Deletes all the configuration of a payment service. */ delete(paymentServiceId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Verify payment service credentials * * @remarks * Verify the credentials of a configured payment service */ verify(verifyCredentials: components.VerifyCredentials, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Create a session for a payment service definition * * @remarks * Creates a session for a payment service that supports sessions. */ session(requestBody: { [k: string]: any; }, paymentServiceId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=paymentservices.d.ts.map