mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 370 B
TypeScript
import type { InvoiceGetClient } from './types';
import type { InvoiceResponse } from '../../../clients/invoice/commonTypes';
/**
* Retrieve a subscription invoice (authorized payment) by ID.
*
* @returns The invoice details including status, amount, and payer information.
*/
export default function get({ id, config }: InvoiceGetClient): Promise<InvoiceResponse>;