/**
 * Interface for cancel job API
 * @export
 * @interface ICancelParms
 */
export interface ICancelParms {
    "ca7#": string;
    force: string;
    reason: string;
}
