18 lines
544 B
TypeScript
18 lines
544 B
TypeScript
import { type ApplicationIn } from "./applicationIn";
|
|
export interface MessageIn {
|
|
application?: ApplicationIn | null;
|
|
channels?: string[] | null;
|
|
deliverAt?: Date | null;
|
|
eventId?: string | null;
|
|
eventType: string;
|
|
payload: any;
|
|
payloadRetentionHours?: number | null;
|
|
payloadRetentionPeriod?: number | null;
|
|
tags?: string[] | null;
|
|
transformationsParams?: any | null;
|
|
}
|
|
export declare const MessageInSerializer: {
|
|
_fromJsonObject(object: any): MessageIn;
|
|
_toJsonObject(self: MessageIn): any;
|
|
};
|