mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 316 B
TypeScript
import { OrderGetClient } from './types';
import { OrderResponse } from '../commonTypes';
/**
* Retrieve a single order by its unique identifier.
*
* @returns The full order representation including transactions and status.
*/
export default function get({ id, config }: OrderGetClient): Promise<OrderResponse>;