@zowe/cics-for-zowe-sdk
Version:
Zowe SDK for IBM CICS Transaction Server
36 lines (35 loc) • 919 B
TypeScript
/**
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
*
*/
export interface ITransactionParms {
/**
* The name of the transaction to define
* Up to four characters long
*/
name: string;
/**
* The name of the program to associate to the transaction
* Up to eight characters long
*/
programName?: string;
/**
* CSD group for the transaction
* Up to eight characters long
*/
csdGroup?: string;
/**
* The name of the CICS region to define the transaction to
*/
regionName: string;
/**
* CICS Plex to define the new transaction to
*/
cicsPlex?: string;
}