class Calendav::Credentials::Standard

Attributes

authentication[R]
host[R]
password[R]
username[R]

Public Class Methods

new(host:, username:, password:, authentication: :basic_auth) click to toggle source
# File lib/calendav/credentials/standard.rb, line 10
def initialize(host:, username:, password:, authentication: :basic_auth)
  @host = URI(host)
  @username = username
  @password = password
  @authentication = authentication
end