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