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