You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: symphony/bdk/gen/pod_model/room_search_criteria.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,14 @@ class RoomSearchCriteria(BaseModel):
29
29
"""# noqa: E501
30
30
query: StrictStr=Field(description="The search query. Matches the room name and description.")
31
31
labels: Optional[List[StrictStr]] =Field(default=None, description="A list of room tag labels whose values will be queried.")
32
+
search_fields: Optional[List[StrictStr]] =Field(default=None, description="The room fields on which to search. Parameter introduced in sbe-25.10.0", alias="searchFields")
32
33
active: Optional[StrictBool] =Field(default=None, description="Restrict the search to active/inactive rooms. If unspecified, search all rooms.")
33
34
private: Optional[StrictBool] =Field(default=None, description="Restrict the search to private rooms. If unspecified, search all rooms.")
34
35
owner: Optional[UserId] =None
35
36
creator: Optional[UserId] =None
36
37
member: Optional[UserId] =None
37
38
sort_order: Optional[StrictStr] =Field(default=None, description="Sort algorithm to be used. Supports two values: \"BASIC\" (legacy algorithm) and \"RELEVANCE\" (enhanced algorithm). ", alias="sortOrder")
Copy file name to clipboardExpand all lines: symphony/bdk/gen/pod_model/v2_room_search_criteria.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,14 +29,15 @@ class V2RoomSearchCriteria(BaseModel):
29
29
"""# noqa: E501
30
30
query: StrictStr=Field(description="The search query. Matches the room name and description.")
31
31
labels: Optional[List[StrictStr]] =Field(default=None, description="A list of room tag labels whose values will be queried.")
32
+
search_fields: Optional[List[StrictStr]] =Field(default=None, description="The room fields on which to search. Parameter introduced in sbe-25.10.0", alias="searchFields")
32
33
active: Optional[StrictBool] =Field(default=None, description="Restrict the search to active/inactive rooms. If unspecified, search all rooms.")
33
34
private: Optional[StrictBool] =Field(default=None, description="Restrict the search to private rooms. If unspecified, search all rooms.")
34
35
owner: Optional[UserId] =None
35
36
creator: Optional[UserId] =None
36
37
member: Optional[UserId] =None
37
38
sort_order: Optional[StrictStr] =Field(default=None, description="Sort algorithm to be used. Supports two values: \"BASIC\" (legacy algorithm) and \"RELEVANCE\" (enhanced algorithm). ", alias="sortOrder")
38
39
sub_type: Optional[StrictStr] =Field(default=None, description="Restrict the search to the specific room subtype. Valid values are: EMAIL", alias="subType")
0 commit comments