UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

76 lines (71 loc) 1.6 kB
/* * 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. */ 'use strict'; /** * Class representing a ScopeResponse. */ class ScopeResponse { /** * Create a ScopeResponse. * @property {string} [id] * @property {string} [appName] * @property {string} [scope] * @property {string} [url] */ constructor() { } /** * Defines the metadata of ScopeResponse * * @returns {object} metadata of ScopeResponse * */ mapper() { return { required: false, serializedName: 'ScopeResponse', type: { name: 'Composite', className: 'ScopeResponse', modelProperties: { id: { required: false, serializedName: 'id', type: { name: 'String' } }, appName: { required: false, serializedName: 'appName', type: { name: 'String' } }, scope: { required: false, serializedName: 'scope', type: { name: 'String' } }, url: { required: false, serializedName: 'url', type: { name: 'String' } } } } }; } } module.exports = ScopeResponse;