/**
  *
  * @param array $options
  */
 public function __construct($options = array())
 {
     $this->required_options('acquire_id, merchant_id, pos_id, user, password, channel_type', $options);
     if (isset($options['currency'])) {
         self::$default_currency = $options['currency'];
     }
     $this->options = $options;
 }