Function: icalendar-match-fbtype-param
icalendar-match-fbtype-param is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-match-fbtype-param LIMIT)
Documentation
Matcher for FBTYPE parameter.
(Defined by icalendar-define-param.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-param ical:fbtypeparam "FBTYPE"
"Free/Busy Time Type. Default is \"BUSY\".
RFC5545 gives the following meanings to the values:
FREE: the time interval is free for scheduling.
BUSY: the time interval is busy because one or more events have
been scheduled for that interval.
BUSY-UNAVAILABLE: the time interval is busy and the interval
can not be scheduled.
BUSY-TENTATIVE: the time interval is busy because one or more
events have been tentatively scheduled for that interval.
Other values are treated like BUSY."
(or "FREE"
"BUSY-UNAVAILABLE"
"BUSY-TENTATIVE"
"BUSY"
ical:x-name
ical:iana-token)
:default "BUSY"
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.2.9")