aruba-admin
Version:
A TypeScript/Node.js library for interacting with Aruba Cloud's SOAP API with full type support and multi-region connectivity.
20 lines (19 loc) • 487 B
TypeScript
import { ExceptionInfo } from "./ExceptionInfo";
import { Value43 } from "./Value43";
/**
* GetIsosResult
* @targetNSAlias `q137`
* @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Common`
*/
export interface GetIsosResult {
/** ExceptionInfo */
ExceptionInfo?: ExceptionInfo;
/** xs:int */
ResultCode?: number;
/** xs:string */
ResultMessage?: string;
/** xs:boolean */
Success?: boolean;
/** Value */
Value?: Value43;
}