mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 372 B
TypeScript
import type { CustomerCardGetRemoveClient } from './types';
import type { CustomerCardResponse } from '../commonTypes';
/**
* Retrieve a specific saved card for a customer.
*
* @returns The card record matching the given customer and card IDs.
*/
export default function get({ customerId, cardId, config }: CustomerCardGetRemoveClient): Promise<CustomerCardResponse>;