appcenter-cli
Version:
Command line tool for Visual Studio App Center
106 lines (101 loc) • 2.68 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.
*/
;
/**
* The information for a single iOS device
*
*/
class DeviceInfoRequest {
/**
* Create a DeviceInfoRequest.
* @property {string} udid The Unique Device IDentifier of the device
* @property {string} model The model identifier of the device, in the format
* iDeviceM,N
* @property {string} [osBuild] The build number of the last known OS version
* running on the device
* @property {string} [osVersion] The last known OS version running on the
* device
* @property {string} [serial] The device's serial number. Always empty or
* undefined at present.
* @property {string} [imei] The device's International Mobile Equipment
* Identity number. Always empty or undefined at present.
* @property {string} [ownerId] The user ID of the device owner.
*/
constructor() {
}
/**
* Defines the metadata of DeviceInfoRequest
*
* @returns {object} metadata of DeviceInfoRequest
*
*/
mapper() {
return {
required: false,
serializedName: 'DeviceInfoRequest',
type: {
name: 'Composite',
className: 'DeviceInfoRequest',
modelProperties: {
udid: {
required: true,
serializedName: 'udid',
type: {
name: 'String'
}
},
model: {
required: true,
serializedName: 'model',
type: {
name: 'String'
}
},
osBuild: {
required: false,
serializedName: 'os_build',
type: {
name: 'String'
}
},
osVersion: {
required: false,
serializedName: 'os_version',
type: {
name: 'String'
}
},
serial: {
required: false,
serializedName: 'serial',
type: {
name: 'String'
}
},
imei: {
required: false,
serializedName: 'imei',
type: {
name: 'String'
}
},
ownerId: {
required: false,
serializedName: 'owner_id',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = DeviceInfoRequest;