-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented string filter comparators
- Loading branch information
nick
committed
Apr 18, 2024
1 parent
c199270
commit 2ce6dc0
Showing
11 changed files
with
194 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Manticoresearch.RangeFilterLte | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Manticore Search Client | ||
* Copyright (c) 2020-2021, Manticore Software LTD (https://manticoresearch.com) | ||
* | ||
* All rights reserved | ||
*/ | ||
|
||
(function(root, factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
// AMD. Register as an anonymous module. | ||
define(['ApiClient'], factory); | ||
} else if (typeof module === 'object' && module.exports) { | ||
// CommonJS-like environments that support module.exports, like Node. | ||
module.exports = factory(require('../ApiClient')); | ||
} else { | ||
// Browser globals (root is window) | ||
if (!root.Manticoresearch) { | ||
root.Manticoresearch = {}; | ||
} | ||
root.Manticoresearch.RangeFilterLte = factory(root.Manticoresearch.ApiClient); | ||
} | ||
}(this, function(ApiClient) { | ||
'use strict'; | ||
|
||
|
||
|
||
/** | ||
* The RangeFilterLte model module. | ||
* @module model/RangeFilterLte | ||
* @version 4.0.0 | ||
*/ | ||
|
||
/** | ||
* Constructs a new <code>RangeFilterLte</code>. | ||
* @alias module:model/RangeFilterLte | ||
* @class | ||
*/ | ||
var exports = function() { | ||
var _this = this; | ||
|
||
}; | ||
|
||
/** | ||
* Constructs a <code>RangeFilterLte</code> from a plain JavaScript object, optionally creating a new instance. | ||
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not. | ||
* @param {Object} data The plain JavaScript object bearing properties of interest. | ||
* @param {module:model/RangeFilterLte} obj Optional instance to populate. | ||
* @return {module:model/RangeFilterLte} The populated <code>RangeFilterLte</code> instance. | ||
*/ | ||
exports.constructFromObject = function(data, obj) { | ||
if (data) { | ||
obj = obj || new exports(); | ||
} | ||
return obj; | ||
} | ||
|
||
|
||
|
||
|
||
return exports; | ||
})); | ||
|
||
|
Oops, something went wrong.