class Dhl::Configuration

Attributes

account[RW]
password[RW]
username[RW]

Public Class Methods

new() click to toggle source
# File lib/dhl/configuration.rb, line 5
def initialize
  @username = ENV['DHL_USERNAME']
  @password = ENV['DHL_PASSWORD']
  @account = ENV['DHL_ACCOUNT']
end