UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

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