on_free_busy Event

Fires for each Free/Busy element received in the response.

Syntax

class CalDAVFreeBusyEventParams(object):
  @property
  def busy_type() -> str: ...
  @property
  def busy_range() -> str: ...

# In class CalDAV:
@property
def on_free_busy() -> Callable[[CalDAVFreeBusyEventParams], None]: ...
@on_free_busy.setter
def on_free_busy(event_hook: Callable[[CalDAVFreeBusyEventParams], None]) -> None: ...

Remarks

This event fires for each FREEBUSY element received in response to a get_free_busy_report request. The FBTYPE will be contained in the BusyType parameter, and the FREEBUSY value itself will be contained in the BusyRange parameter. The Free/Busy information will also be stored in the free_busy collection.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 Python Edition - Version 20.0 [Build 8307]