UNPKG

mercadopago

Version:
19 lines (18 loc) 613 B
/** * Request types for the update-release-date operation on an advanced payment. * * @module advancedPayment/updateReleaseDate/types */ import type { MercadoPagoConfig } from '../../../mercadoPagoConfig'; import type { Options } from '../../../types'; export declare type AdvancedPaymentUpdateReleaseDateClient = { id: string; releaseDate: string; config: MercadoPagoConfig; }; export declare type AdvancedPaymentUpdateReleaseDateData = { id: string; /** New release date in ISO 8601 format (e.g. `"2025-12-31 00:00:00.000"`). */ releaseDate: string; requestOptions?: Options; };