# `CalDAVEx.Types.Calendar`
[🔗](https://github.com/ciroque/caldav_ex/blob/v0.1.3/lib/caldav_ex/types.ex#L29)

Represents a CalDAV calendar.

Contains metadata about a calendar collection.

# `t`

```elixir
@type t() :: %CalDAVEx.Types.Calendar{
  ctag: String.t() | nil,
  description: String.t() | nil,
  display_name: String.t() | nil,
  is_calendar: boolean(),
  url: String.t()
}
```

Calendar struct.

## Fields

- `url` - The full URL of the calendar
- `display_name` - Human-readable name of the calendar
- `description` - Optional description of the calendar
- `ctag` - Calendar collection tag for sync purposes
- `is_calendar` - Whether this resource is a calendar (has C:calendar resourcetype)

---

*Consult [api-reference.md](api-reference.md) for complete listing*
