Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

codegen output 5eef0a9a5ee04b57bf5579285d876ffb #46

Merged
merged 1 commit into from
Jan 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 5 additions & 25 deletions box_sdk_gen/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -11820,18 +11820,6 @@ def __init__(
self.entries = entries


class MetadataFieldFilterString(BaseObject):
pass


class MetadataFieldFilterFloat(BaseObject):
pass


class MetadataFieldFilterMultiSelect(BaseObject):
pass


class MetadataFieldFilterFloatRangeValue(BaseObject):
def __init__(
self, lt: Optional[float] = None, gt: Optional[float] = None, **kwargs
Expand All @@ -11853,10 +11841,6 @@ def __init__(
self.gt = gt


class MetadataFieldFilterFloatRange(BaseObject):
pass


class MetadataFieldFilterDateRangeValue(BaseObject):
def __init__(self, lt: Optional[str] = None, gt: Optional[str] = None, **kwargs):
"""
Expand All @@ -11876,10 +11860,6 @@ def __init__(self, lt: Optional[str] = None, gt: Optional[str] = None, **kwargs)
self.gt = gt


class MetadataFieldFilterDateRange(BaseObject):
pass


class MetadataFilterScopeField(str, Enum):
GLOBAL = 'global'
ENTERPRISE = 'enterprise'
Expand All @@ -11902,11 +11882,11 @@ def __init__(
template_key: Optional[str] = None,
filters: Optional[
Union[
MetadataFieldFilterString,
MetadataFieldFilterFloat,
MetadataFieldFilterMultiSelect,
MetadataFieldFilterFloatRange,
MetadataFieldFilterDateRange,
Dict[str, str],
Dict[str, float],
Dict[str, List[str]],
Dict[str, MetadataFieldFilterFloatRangeValue],
Dict[str, MetadataFieldFilterDateRangeValue],
]
] = None,
**kwargs
Expand Down
Loading