View Source CalDAVClient.Client (caldav_client v2.0.0)
Stores the server address, authentication method and user credentials.
fields
Fields
server_url
- address of the calendar server, e.g."http://example.com/calendar"
auth
- authentication type and credentials:CalDAVClient.Auth.Basic.t/0
- Basic authenticationCalDAVClient.Auth.Digest.t/0
- Digest authenticationCalDAVClient.Auth.Bearer.t/0
- Bearer (token) authentication
Link to this section Summary
Link to this section Types
Specs
t() :: %CalDAVClient.Client{ auth: CalDAVClient.Auth.Basic.t() | CalDAVClient.Auth.Digest.t() | CalDAVClient.Auth.Bearer.t(), server_url: String.t() }