UNPKG

azure

Version:
70 lines (65 loc) 1.64 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 * Initializes a new instance of the SubscriptionListResult class. * @constructor * Subscription list operation response. * * @member {string} nextLink The URL to get the next set of results. * */ class SubscriptionListResult extends Array { constructor() { super(); } /** * Defines the metadata of SubscriptionListResult * * @returns {object} metadata of SubscriptionListResult * */ mapper() { return { required: false, serializedName: 'SubscriptionListResult', type: { name: 'Composite', className: 'SubscriptionListResult', modelProperties: { value: { required: false, serializedName: '', type: { name: 'Sequence', element: { required: false, serializedName: 'SubscriptionElementType', type: { name: 'Composite', className: 'Subscription' } } } }, nextLink: { required: true, serializedName: 'nextLink', type: { name: 'String' } } } } }; } } module.exports = SubscriptionListResult;