UNPKG

cecon-interfaces

Version:
15 lines (14 loc) 433 B
import { EMercadoPagoCallbackAction, EMercadoPagoCallbackType } from '../../enums'; export interface IMercadoPagoPaymentCallback { action: EMercadoPagoCallbackAction; api_version: string; data: IMercadoPagoPaymentCallbackData; date_created: string; id: number; live_mode: boolean; type: EMercadoPagoCallbackType; user_id: string; } export interface IMercadoPagoPaymentCallbackData { id: string; }