Function: icalendar-created-property-p

icalendar-created-property-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-created-property-p NODE)

Documentation

Return non-nil if NODE represents a CREATED property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
;;;;; Section 3.8.7: Change Management Component Properties

(ical:define-property ical:created "CREATED"
  "Date-Time Created.

This property specifies the date and time when the calendar user
initially created an `icalendar-vevent', `icalendar-vtodo', or
`icalendar-vjournal' in the calendar database.  The value must be
in UTC time."
  ical:date-time
  :child-spec (:zero-or-more (ical:otherparam))
  :other-validator ical:requires-utc-validator
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.7.1")