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) 632 B
import { ScheduleParameterTypeDescription } from "./ScheduleParameterTypeDescription"; /** * ScheduleParametersType * @targetNSAlias `tns` * @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Provisioning.Entities` */ export interface ScheduleParametersType { /** xs:string */ ScheduleOperationDescription?: string; /** xs:int */ ScheduleOperationTypeId?: number; /** ScheduleParameterTypeDescription */ ScheduleParameterTypeDescription?: ScheduleParameterTypeDescription; /** xs:int */ ScheduledParameterTypeId?: number; /** xs:int */ ValidationExpression?: number; }