/**
 * Interface for TSO start command z/OSMF parameters
 * @export
 * @interface IStartTsoParms
 */
export interface IStartTsoParms {
    /**
     * name of the logonProcedure for address space
     * @type string
     * @memberOf IStartTsoParms
     */
    logonProcedure?: string;
    /**
     * character set for address space
     * @type string
     * @memberOf IStartTsoParms
     */
    characterSet?: string;
    /**
     * code page for tso address space
     * @type string
     * @memberOf IStartTsoParms
     */
    codePage?: string;
    /**
     * number of rows
     * @type string
     * @memberOf IStartTsoParms
     */
    rows?: string;
    /**
     * number of columns
     * @type string
     * @memberOf IStartTsoParms
     */
    columns?: string;
    /**
     * user account number
     * @type string
     * @memberOf IStartTsoParms
     */
    account?: string;
    /**
     * region size for address space
     * @type string
     * @memberOf IStartTsoParms
     */
    regionSize?: string;
}
