UNPKG

@snapp-store/snapp-box-sdk

Version:
28 lines (27 loc) 563 B
import type { PullingDataDTO } from './PullingDataDTO'; export declare type PullingEventDTO = { /** * Id of events */ id: number; /** * Type of event */ type: PullingEventDTO.type; /** * Time that this event expire in UTC format */ expireIn: string; /** * Event Payload that store for this recipient before */ data: PullingDataDTO; }; export declare namespace PullingEventDTO { /** * Type of event */ enum type { ORDER_STATUS_UPDATE = "ORDER_STATUS_UPDATE" } }