UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

22 lines (20 loc) 486 B
/** * Gateway Inventory Detail class. */ export class GatewayInventoryDetail { /** * The latest version of gateway available for download. */ latestVersion; /** * Initializes a new instance of the GatewayInventoryDetailData Class. * * @param data the server inventory recovered data. */ constructor(data) { if (data) { Object.assign(this, data); } } } //# sourceMappingURL=gateway-inventory-detail.js.map