Function: icalendar-fbtype-param-p
icalendar-fbtype-param-p is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-fbtype-param-p NODE)
Documentation
Return non-nil if NODE represents a FBTYPE parameter.
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")