@zowe/zosmf-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS Management Facility
17 lines • 424 B
TypeScript
import { IDefinedSystem } from "./IDefinedSystem";
/**
* API response for list systems defined to z/OSMF.
* @export
* @interface IZosmfInfoResponse
*/
export interface IZosmfListDefinedSystemsResponse {
/**
* Total items returned.
*/
numRows: number;
/**
* Properties of each defined system.
*/
items: IDefinedSystem[];
}
//# sourceMappingURL=IZosmfListDefinedSystemsResponse.d.ts.map