microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
86466695ed3443c9a6a1facdfd9bce89c668afbf

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

lib/app-center-node-client/src/test/models/deviceList.js

57lines · modecode

1/*
2 * Code generated by Microsoft (R) AutoRest Code Generator.
3 * Changes may cause incorrect behavior and will be lost if the code is
4 * regenerated.
5 */
6
7'use strict';
8
9/**
10 * @summary Device List
11 *
12 * A list of device IDs
13 *
14 */
15class DeviceList {
16 /**
17 * Create a DeviceList.
18 * @member {array} devices
19 */
20 constructor() {
21 }
22
23 /**
24 * Defines the metadata of DeviceList
25 *
26 * @returns {object} metadata of DeviceList
27 *
28 */
29 mapper() {
30 return {
31 required: false,
32 serializedName: 'DeviceList',
33 type: {
34 name: 'Composite',
35 className: 'DeviceList',
36 modelProperties: {
37 devices: {
38 required: true,
39 serializedName: 'devices',
40 type: {
41 name: 'Sequence',
42 element: {
43 required: false,
44 serializedName: 'StringElementType',
45 type: {
46 name: 'String'
47 }
48 }
49 }
50 }
51 }
52 }
53 };
54 }
55}
56
57module.exports = DeviceList;
58