From 7170a5ffc6f71efb1af56495f7a4d7325c499af4 Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Thu, 31 Aug 2023 08:52:40 -0700 Subject: [PATCH] generated with codegen at box/box-codegen@790e795 and spec at box/box-openapi@f01a34e --- box_sdk_gen/schemas.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/box_sdk_gen/schemas.py b/box_sdk_gen/schemas.py index d4f079e..2c07a87 100644 --- a/box_sdk_gen/schemas.py +++ b/box_sdk_gen/schemas.py @@ -11850,9 +11850,47 @@ class MetadataFieldFilterMultiSelect(BaseObject): pass +class MetadataFieldFilterFloatRangeMapValue(BaseObject): + def __init__(self, lt: Optional[int] = None, gt: Optional[int] = None, **kwargs): + """ + :param lt: Specifies the (inclusive) upper bound for the metadata field + value. The value of a field must be lower than (`lt`) or + equal to this value for the search query to match this + template. + :type lt: Optional[int], optional + :param gt: Specifies the (inclusive) lower bound for the metadata field + value. The value of a field must be greater than (`gt`) or + equal to this value for the search query to match this + template. + :type gt: Optional[int], optional + """ + super().__init__(**kwargs) + self.lt = lt + self.gt = gt + + class MetadataFieldFilterFloatRange(BaseObject): pass +class MetadataFieldFilterDateRangeMapValue(BaseObject): + def __init__(self, lt: Optional[str] = None, gt: Optional[str] = None, **kwargs): + """ + :param lt: Specifies the (inclusive) upper bound for the metadata field + value. The value of a field must be lower than (`lt`) or + equal to this value for the search query to match this + template. + :type lt: Optional[str], optional + :param gt: Specifies the (inclusive) lower bound for the metadata field + value. The value of a field must be greater than (`gt`) or + equal to this value for the search query to match this + template. + :type gt: Optional[str], optional + """ + super().__init__(**kwargs) + self.lt = lt + self.gt = gt + + class MetadataFieldFilterDateRange(BaseObject): pass