CalDAVClient.Client (caldav_client v1.0.0) View Source

Stores the server address, authentication method and user credentials.

Fields

  • server_url - address of the calendar server, e.g. "http://example.com/calendar"
  • auth - HTTP authentication method, either :basic or :digest
  • username - username
  • password - password

Link to this section Summary

Link to this section Types

Specs

t() :: %CalDAVClient.Client{
  auth: :basic | :digest,
  password: String.t(),
  server_url: String.t(),
  username: String.t()
}