ICal.Attendee (iCal v1.0.0)

View Source

An ICal attendee. While the name is required, other fields are optional.

For details on the meaning of the fields, see https://datatracker.ietf.org/doc/html/rfc5545#section-3.8.4.1

Summary

Types

t()

@type t() :: %ICal.Attendee{
  cname: String.t() | nil,
  delegated_from: [String.t()],
  delegated_to: [String.t()],
  dir: String.t() | nil,
  language: String.t() | nil,
  membership: [String.t()],
  name: String.t(),
  role: String.t() | nil,
  rsvp: boolean(),
  sent_by: String.t() | nil,
  status: String.t() | nil,
  type: String.t() | nil
}