appcenter-cli
Version:
Command line tool for Visual Studio App Center
55 lines (50 loc) • 1.11 kB
JavaScript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/
;
/**
* @summary Device Selection
*
* Short ID for a list of device IDs
*
*/
class DeviceSelection {
/**
* Create a DeviceSelection.
* @property {string} shortId Identifier of the device selection
*/
constructor() {
}
/**
* Defines the metadata of DeviceSelection
*
* @returns {object} metadata of DeviceSelection
*
*/
mapper() {
return {
required: false,
serializedName: 'DeviceSelection',
type: {
name: 'Composite',
className: 'DeviceSelection',
modelProperties: {
shortId: {
required: true,
serializedName: 'shortId',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = DeviceSelection;