@snapp-store/snapp-box-sdk
Version:
A javascript sdk for snapp box api
28 lines (27 loc) • 563 B
TypeScript
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"
}
}