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 · modeblame

1d7f5fbcmax-mironov8 years ago1/*
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*/
18constructor() {
19}
20
21/**
22* Defines the metadata of DeviceConfigurationImage
23*
24* @returns {object} metadata of DeviceConfigurationImage
25*
26*/
27mapper() {
28return {
29required: false,
30serializedName: 'DeviceConfiguration_image',
31type: {
32name: 'Composite',
33className: 'DeviceConfigurationImage',
34modelProperties: {
35full: {
36required: false,
37serializedName: 'full',
38type: {
39name: 'String'
40}
41},
42thumb: {
43required: false,
44serializedName: 'thumb',
45type: {
46name: 'String'
47}
48}
49}
50}
51};
52}
53}
54
55module.exports = DeviceConfigurationImage;