UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

68 lines (63 loc) 1.54 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 AuthApplicationPatchRequest. */ class AuthApplicationPatchRequest { /** * Create a AuthApplicationPatchRequest. * @property {string} policyId * @property {uuid} scopeId * @property {string} scopeUrl */ constructor() { } /** * Defines the metadata of AuthApplicationPatchRequest * * @returns {object} metadata of AuthApplicationPatchRequest * */ mapper() { return { required: false, serializedName: 'AuthApplicationPatchRequest', type: { name: 'Composite', className: 'AuthApplicationPatchRequest', modelProperties: { policyId: { required: true, serializedName: 'policyId', type: { name: 'String' } }, scopeId: { required: true, serializedName: 'scopeId', type: { name: 'String' } }, scopeUrl: { required: true, serializedName: 'scopeUrl', type: { name: 'String' } } } } }; } } module.exports = AuthApplicationPatchRequest;