report_filter_property Property

Limits the events returned in a Report to only those which contain a matching property name and value.

Syntax

def get_report_filter_property() -> str: ...
def set_report_filter_property(value: str) -> None: ...

report_filter_property = property(get_report_filter_property, set_report_filter_property)

Default Value

""

Remarks

Limits the events returned in a Report to only those which contain a matching property name and value. For instance, setting the report_filter_property filter to "ORGANIZER" will return only events that have an organizer specified. Setting the report_filter_property filter to "ORGANIZER=mailto:JohnSmith@example.com" will return only resources where "mailto:JohnSmith@example.com" is the specified organizer. Likewise, you can retrieve a report on a single event by setting the report_filter_property filter with the UID of the needed resource. For example: report_filter_property = "UID=DC6C50A017428C5216A2F1CD@example.com";.

You may add multiple properties to the filter by separating them with commas. For example: "ORGANIZER=mailto:JohnSmith@example.com, STATUS=CANCELLED".

For more advanced filtering, you may specify your own report_filter_custom_filter.

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