Skip to content

Commit

Permalink
generated with codegen at box/box-codegen@790e795 and spec at box/box…
Browse files Browse the repository at this point in the history
  • Loading branch information
box-sdk-build committed Aug 31, 2023
1 parent fd99ce3 commit 7170a5f
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions box_sdk_gen/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7170a5f

Please sign in to comment.