UNPKG

aruba-admin

Version:

A TypeScript/Node.js library for interacting with Aruba Cloud's SOAP API with full type support and multi-region connectivity.

19 lines (18 loc) 482 B
import { ExceptionInfo } from "./ExceptionInfo"; /** * IsLuckySmartAvailableResult * @targetNSAlias `q38` * @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Common` */ export interface IsLuckySmartAvailableResult { /** ExceptionInfo */ ExceptionInfo?: ExceptionInfo; /** xs:int */ ResultCode?: number; /** xs:string */ ResultMessage?: string; /** xs:boolean */ Success?: boolean; /** xs:boolean */ Value?: boolean; }