appcenter-cli
Version:
Command line tool for Visual Studio App Center
77 lines (72 loc) • 1.69 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.
*/
;
/**
* Status Data from store
*
*/
class StatusData {
/**
* Create a StatusData.
* @property {string} [status] status from store
* @property {string} [storetype] store type
* @property {string} [track] track information from store
* @property {string} [version] version of the app from store
*/
constructor() {
}
/**
* Defines the metadata of StatusData
*
* @returns {object} metadata of StatusData
*
*/
mapper() {
return {
required: false,
serializedName: 'StatusData',
type: {
name: 'Composite',
className: 'StatusData',
modelProperties: {
status: {
required: false,
serializedName: 'status',
type: {
name: 'String'
}
},
storetype: {
required: false,
serializedName: 'storetype',
type: {
name: 'String'
}
},
track: {
required: false,
serializedName: 'track',
type: {
name: 'String'
}
},
version: {
required: false,
serializedName: 'version',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = StatusData;