azure
Version:
Microsoft Azure Client Library for node
55 lines (50 loc) • 1.28 kB
JavaScript
/*
* 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.
*/
;
/**
* The Edifact message filter for odata query.
*
*/
class EdifactMessageFilter {
/**
* Create a EdifactMessageFilter.
* @member {string} messageFilterType The message filter type. Possible
* values include: 'NotSpecified', 'Include', 'Exclude'
*/
constructor() {
}
/**
* Defines the metadata of EdifactMessageFilter
*
* @returns {object} metadata of EdifactMessageFilter
*
*/
mapper() {
return {
required: false,
serializedName: 'EdifactMessageFilter',
type: {
name: 'Composite',
className: 'EdifactMessageFilter',
modelProperties: {
messageFilterType: {
required: true,
serializedName: 'messageFilterType',
type: {
name: 'Enum',
allowedValues: [ 'NotSpecified', 'Include', 'Exclude' ]
}
}
}
}
};
}
}
module.exports = EdifactMessageFilter;