Skip to content

Commit

Permalink
Add master_event_id to event list queries
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbair-nylas committed Jun 4, 2024
1 parent 4a27790 commit 362984c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nylas/models/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ class ListEventQueryParams(ListQueryParams):
This value should be taken from a ListResponse object's next_cursor parameter.
event_type (NotRequired[List[EventType]]): (Google only) Filter events by event type.
You can pass the query parameter multiple times to select or exclude multiple event types.
master_event_id (NotRequired[str]): Filter for instances of recurring events with the
specified master_event_id. Not respected by metadata filtering.
"""

calendar_id: str
Expand All @@ -743,6 +745,7 @@ class ListEventQueryParams(ListQueryParams):
busy: NotRequired[bool]
order_by: NotRequired[str]
event_type: NotRequired[List[EventType]]
master_event_id: NotRequired[str]


class CreateEventQueryParams(TypedDict):
Expand Down

0 comments on commit 362984c

Please sign in to comment.