mercadopago
Version:
Mercadopago SDK for Node.js
14 lines (13 loc) • 440 B
TypeScript
import type { MercadoPagoConfig } from '../../../mercadoPagoConfig';
import type { CustomerRequestBody } from '../commonTypes';
import type { Options } from '../../../types';
export declare type CustomerUpdateData = {
customerId: string;
body: CustomerRequestBody;
requestOptions?: Options;
};
export declare type CustomerUpdateClient = {
customerId: string;
body: CustomerRequestBody;
config: MercadoPagoConfig;
};