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