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.

21 lines (20 loc) 502 B
import { Descriptions } from "./Descriptions"; /** * UserOffer * @targetNSAlias `tns` * @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Provisioning.Entities.SmartVMWare` */ export interface UserOffer { /** Descriptions */ Descriptions?: Descriptions; /** xs:int */ Duration?: number; /** xs:dateTime */ PeriodA?: Date; /** xs:dateTime */ PeriodFrom?: Date; /** xs:decimal */ Price?: number; /** xs:int */ ProductId?: number; }