UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

61 lines (56 loc) 1.26 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'; /** * The Usage Names. * */ class UsageName { /** * Create a UsageName. * @member {string} [value] The name of the resource. * @member {string} [localizedValue] The localized name of the resource. */ constructor() { } /** * Defines the metadata of UsageName * * @returns {object} metadata of UsageName * */ mapper() { return { required: false, serializedName: 'UsageName', type: { name: 'Composite', className: 'UsageName', modelProperties: { value: { required: false, serializedName: 'value', type: { name: 'String' } }, localizedValue: { required: false, serializedName: 'localizedValue', type: { name: 'String' } } } } }; } } module.exports = UsageName;