NAME
plenigo::Configuration - Contains all base configuration settings.
SYNOPSIS
use plenigo::Configuration;
# Prepare configuration
my $activate_testing = 0; # set if testing mode should be enabled
my $use_external_customer_id = 0; # set if you use your own customer id instead of the one provided by plenigo
my $configuration = plenigo::Configuration->new(company_id => 'YOUR_COMPANY_ID, secret => 'YOUR_SECRET', staging => $activate_testing, use_external_customer_id => $use_external_customer_id);
DESCRIPTION
plenigo::Configuration contains all base configuration settings.