durable-functions
Version:
Durable Functions library for Node.js Azure Functions
17 lines • 789 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpManagementPayload = void 0;
class HttpManagementPayload {
constructor(id, statusQueryGetUri, sendEventPostUri, terminatePostUri, rewindPostUri, purgeHistoryDeleteUri, suspendPostUri, resumePostUri) {
this.id = id;
this.statusQueryGetUri = statusQueryGetUri;
this.sendEventPostUri = sendEventPostUri;
this.terminatePostUri = terminatePostUri;
this.rewindPostUri = rewindPostUri;
this.purgeHistoryDeleteUri = purgeHistoryDeleteUri;
this.suspendPostUri = suspendPostUri;
this.resumePostUri = resumePostUri;
}
}
exports.HttpManagementPayload = HttpManagementPayload;
//# sourceMappingURL=HttpManagementPayload.js.map
;