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/deviceConfigurationImage.js

55lines · 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 * Class representing a DeviceConfigurationImage.
11 */
12class DeviceConfigurationImage {
13 /**
14 * Create a DeviceConfigurationImage.
15 * @member {string} [full]
16 * @member {string} [thumb]
17 */
18 constructor() {
19 }
20
21 /**
22 * Defines the metadata of DeviceConfigurationImage
23 *
24 * @returns {object} metadata of DeviceConfigurationImage
25 *
26 */
27 mapper() {
28 return {
29 required: false,
30 serializedName: 'DeviceConfiguration_image',
31 type: {
32 name: 'Composite',
33 className: 'DeviceConfigurationImage',
34 modelProperties: {
35 full: {
36 required: false,
37 serializedName: 'full',
38 type: {
39 name: 'String'
40 }
41 },
42 thumb: {
43 required: false,
44 serializedName: 'thumb',
45 type: {
46 name: 'String'
47 }
48 }
49 }
50 }
51 };
52 }
53}
54
55module.exports = DeviceConfigurationImage;
56