import {Method, SchemaInterface} from "../../schema-client"; class PauseProcessSchema implements SchemaInterface { method = Method.POST url = '/system-monitoring/processes/{id}/pause' contentType = null; } export let pauseProcessSchema = new PauseProcessSchema() export default pauseProcessSchema