mercadopago
Version:
Mercadopago SDK for Node.js
16 lines (15 loc) • 432 B
TypeScript
/**
* Request types for the capture advanced-payment operation.
*
* @module advancedPayment/capture/types
*/
import type { MercadoPagoConfig } from '../../../mercadoPagoConfig';
import type { Options } from '../../../types';
export declare type AdvancedPaymentCaptureClient = {
id: string;
config: MercadoPagoConfig;
};
export declare type AdvancedPaymentCaptureData = {
id: string;
requestOptions?: Options;
};