appcenter-cli
Version:
Command line tool for Visual Studio App Center
77 lines (72 loc) • 1.77 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.
*/
;
/**
* Itunes teams details .
*
*/
class AllItunesAppsResponse {
/**
* Create a AllItunesAppsResponse.
* @property {string} [appleId] apple id for app team id.
* @property {string} [bundleId] bundle identifier of app
* @property {string} [name] App Name
* @property {string} [iconUrl] url for the app icon from app store
*/
constructor() {
}
/**
* Defines the metadata of AllItunesAppsResponse
*
* @returns {object} metadata of AllItunesAppsResponse
*
*/
mapper() {
return {
required: false,
serializedName: 'AllItunesAppsResponse',
type: {
name: 'Composite',
className: 'AllItunesAppsResponse',
modelProperties: {
appleId: {
required: false,
serializedName: 'apple_id',
type: {
name: 'String'
}
},
bundleId: {
required: false,
serializedName: 'bundle_id',
type: {
name: 'String'
}
},
name: {
required: false,
serializedName: 'name',
type: {
name: 'String'
}
},
iconUrl: {
required: false,
serializedName: 'iconUrl',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = AllItunesAppsResponse;