14 lines
489 B
TypeScript
14 lines
489 B
TypeScript
import { type MessageAttemptFailedData } from "./messageAttemptFailedData";
|
|
export interface MessageAttemptFailingEventData {
|
|
appId: string;
|
|
appUid?: string | null;
|
|
endpointId: string;
|
|
lastAttempt: MessageAttemptFailedData;
|
|
msgEventId?: string | null;
|
|
msgId: string;
|
|
}
|
|
export declare const MessageAttemptFailingEventDataSerializer: {
|
|
_fromJsonObject(object: any): MessageAttemptFailingEventData;
|
|
_toJsonObject(self: MessageAttemptFailingEventData): any;
|
|
};
|