mercadopago
Version:
Mercadopago SDK for Node.js
11 lines (10 loc) • 430 B
TypeScript
import type { CardTokenResponse } from '../commonTypes';
import type { CardTokenGetClient } from './types';
/**
* Retrieve a single card token by its unique identifier.
*
* @param id - Card token identifier to look up.
* @param config - SDK configuration including the access token.
* @returns The full card token resource.
*/
export default function get({ id, config }: CardTokenGetClient): Promise<CardTokenResponse>;