mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 411 B
TypeScript
import type { PaymentIntentResponse } from '../commonTypes';
import type { PointSearchPaymentIntentClient } from './types';
/**
* Retrieve the details of a payment intent by its ID.
*
* @returns The payment intent details including state, amount, and device info.
*/
export default function searchPaymentIntent({ payment_intent_id, config }: PointSearchPaymentIntentClient): Promise<PaymentIntentResponse>;