UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

61 lines (56 loc) 1.31 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'; /** * A Data Lake Analytics catalog type field information item. * */ class TypeFieldInfo { /** * Create a TypeFieldInfo. * @member {string} [name] the name of the field associated with this type. * @member {string} [type] the type of the field. */ constructor() { } /** * Defines the metadata of TypeFieldInfo * * @returns {object} metadata of TypeFieldInfo * */ mapper() { return { required: false, serializedName: 'TypeFieldInfo', type: { name: 'Composite', className: 'TypeFieldInfo', modelProperties: { name: { required: false, serializedName: 'name', type: { name: 'String' } }, type: { required: false, serializedName: 'type', type: { name: 'String' } } } } }; } } module.exports = TypeFieldInfo;