class Readiness::Zendesk::Configuration

@since 1.0.0
@author Jason Colyer
Defines the class Configuration within the module {Readiness::Zendesk}.
#

def initialize

Other tags:
    Since: - 1.0.0

Other tags:
    Author: - Jason Colyer
def initialize
  @url = ''
  @username = ''
  @token = ''
  @retry_max = 5
  @retry_interval = 1
  @retry_randomness = 0.5
  @retry_backoff  = 2
  @retry_exceptions = Faraday::Retry::Middleware::DEFAULT_EXCEPTIONS + [Faraday::ConnectionFailed]
end