aruba-admin
Version:
A TypeScript/Node.js library for interacting with Aruba Cloud's SOAP API with full type support and multi-region connectivity.
18 lines (17 loc) • 441 B
TypeScript
import { BillingType } from "./BillingType";
import { UserOffer } from "./UserOffer";
/**
* ProductInfo
* @targetNSAlias `q8`
* @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Common.Entities`
*/
export interface ProductInfo {
/** BillingType */
BillingType?: BillingType;
/** xs:decimal */
Price?: number;
/** xs:int */
ProductID?: number;
/** UserOffer */
UserOffer?: UserOffer;
}