UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

92 lines (87 loc) 2.18 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 ExistingAuthApplicationPostRequest. */ class ExistingAuthApplicationPostRequest { /** * Create a ExistingAuthApplicationPostRequest. * @property {uuid} tenantId * @property {string} tenantName * @property {uuid} id * @property {string} policyId * @property {uuid} scopeId * @property {string} scopeUrl */ constructor() { } /** * Defines the metadata of ExistingAuthApplicationPostRequest * * @returns {object} metadata of ExistingAuthApplicationPostRequest * */ mapper() { return { required: false, serializedName: 'ExistingAuthApplicationPostRequest', type: { name: 'Composite', className: 'ExistingAuthApplicationPostRequest', modelProperties: { tenantId: { required: true, serializedName: 'tenantId', type: { name: 'String' } }, tenantName: { required: true, serializedName: 'tenantName', type: { name: 'String' } }, id: { required: true, serializedName: 'id', type: { name: 'String' } }, 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 = ExistingAuthApplicationPostRequest;