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