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