appcenter-cli
Version:
Command line tool for Visual Studio App Center
60 lines (55 loc) • 1.39 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.
*/
;
/**
* Class representing a InternalBulkAppResponse.
*/
class InternalBulkAppResponse {
/**
* Create a InternalBulkAppResponse.
* @property {string} [appName] The name of the app
* @property {string} [ownerDisplayName] The display name of the owner
*/
constructor() {
}
/**
* Defines the metadata of InternalBulkAppResponse
*
* @returns {object} metadata of InternalBulkAppResponse
*
*/
mapper() {
return {
required: false,
serializedName: 'InternalBulkAppResponse',
type: {
name: 'Composite',
className: 'InternalBulkAppResponse',
modelProperties: {
appName: {
required: false,
serializedName: 'app_name',
type: {
name: 'String'
}
},
ownerDisplayName: {
required: false,
serializedName: 'owner_display_name',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = InternalBulkAppResponse;