organizer Property

Defines the organizer of a calendar event.

Syntax

def get_organizer() -> str: ...
def set_organizer(value: str) -> None: ...

organizer = property(get_organizer, set_organizer)

Default Value

""

Remarks

This property is specified within the vEvent, vTodo, and vJournal calendar event_types to specify the organizer of a group-scheduled calendar entity. The property is specified within the vFreeBusy event_type to identify the calendar user requesting the free or busy time. When publishing a vFreeBusy event_type, the property is used to specify the calendar that the published busy time came from.

Each email address should be in the mailto URI format (as defined in RFC2368).

For instance:

  CalDAV.Organizer = "mailto:jane_doe@example.com";

This property is filled from the response to a get_calendar_event, and is also used when creating an event to be added using the put_calendar_event method. However, when requesting a report using the get_calendar_report method, the contents of this property will only be valid inside the on_event_details event.

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