| Class | Vpim::Icalendar::Address |
| In: |
lib/vpim/address.rb
|
| Parent: | Object |
Used to represent calendar fields containing CAL-ADDRESS values. The organizer or the attendees of a calendar event are examples of such a field.
Example:
ORGANIZER;CN="A. Person":mailto:a_person@example.com ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION ;CN="Sam Roberts";RSVP=TRUE:mailto:SRoberts@example.com
| cn | [RW] | The common or displayable name associated with the calendar address, or nil if there is none. |
| partstat | [RW] |
The participation status for the calendar user specified by the property
PARTSTAT, a String.
These are the participation statuses for an Event:
Default is NEEDS-ACTION. FIXME - make the default depend on the component type. |
| role | [RW] |
The participation role for the calendar user specified by the address.
The standard roles are:
The default role is REQ-PARTICIPANT, returned if no ROLE parameter was specified. |
| rsvp | [RW] | The value of the RSVP field, either true or false. It is used to specify whether there is an expectation of a reply from the calendar user specified by the property value. |
| uri | [RW] | Addresses in a CAL-ADDRESS are represented as a URI, usually a mailto URI. |
Return true if the uri is == to this address’ URI. The comparison is case-insensitive (because email addresses and domain names are).