mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 320 B
TypeScript
import type { CustomerGetClient } from './types';
import type { CustomerResponse } from '../commonTypes';
/**
* Retrieve a customer by its unique identifier.
*
* @returns The customer record matching the given ID.
*/
export default function get({ customerId, config }: CustomerGetClient): Promise<CustomerResponse>;