cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 433 B
TypeScript
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;
}