import { ICommonJobParms } from "./ICommonJobParms";
/**
 * Interface for get JCL APIs
 * @export
 * @interface IGetJclParms
 */
export interface IGetJclParms extends ICommonJobParms {
    /**
     * If you specify true for this field, the file will be downloaded in binary mode
     * @type {boolean}
     * @memberof IGetJclParms
     */
    binary?: boolean;
    /**
     * If you specify true for this field, the file will be downloaded in record mode
     * @type {boolean}
     * @memberof IGetJclParms
     */
    record?: boolean;
    /**
     * The codepage to use for translation from EBCDIC
     * @type {string}
     * @memberof IGetJclParms
     */
    encoding?: string;
}
//# sourceMappingURL=IGetJclParms.d.ts.map