UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

70 lines (65 loc) 1.62 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'; /** * List of JobInfo items. */ class JobInfoListResult extends Array { /** * Create a JobInfoListResult. * @member {string} [nextLink] the link (url) to the next page of results. */ constructor() { super(); } /** * Defines the metadata of JobInfoListResult * * @returns {object} metadata of JobInfoListResult * */ mapper() { return { required: false, serializedName: 'JobInfoListResult', type: { name: 'Composite', className: 'JobInfoListResult', modelProperties: { value: { required: false, readOnly: true, serializedName: '', type: { name: 'Sequence', element: { required: false, serializedName: 'JobInformationBasicElementType', type: { name: 'Composite', className: 'JobInformationBasic' } } } }, nextLink: { required: false, readOnly: true, serializedName: 'nextLink', type: { name: 'String' } } } } }; } } module.exports = JobInfoListResult;