23 lines
756 B
TypeScript
23 lines
756 B
TypeScript
import { type MessageAttemptTriggerType } from "./messageAttemptTriggerType";
|
|
import { type MessageOut } from "./messageOut";
|
|
import { type MessageStatus } from "./messageStatus";
|
|
import { type MessageStatusText } from "./messageStatusText";
|
|
export interface MessageAttemptOut {
|
|
endpointId: string;
|
|
id: string;
|
|
msg?: MessageOut | null;
|
|
msgId: string;
|
|
response: string;
|
|
responseDurationMs: number;
|
|
responseStatusCode: number;
|
|
status: MessageStatus;
|
|
statusText: MessageStatusText;
|
|
timestamp: Date;
|
|
triggerType: MessageAttemptTriggerType;
|
|
url: string;
|
|
}
|
|
export declare const MessageAttemptOutSerializer: {
|
|
_fromJsonObject(object: any): MessageAttemptOut;
|
|
_toJsonObject(self: MessageAttemptOut): any;
|
|
};
|