/** 
  * Creates a SubscriptionNotaryArguments object.
  * 
  * @param string merchantSubIdList merchant subscription id list
  */
 public function __construct($merchantSubIdList)
 {
     parent::__construct();
     $this->_idList = $merchantSubIdList;
 }
Exemplo n.º 2
0
 /** 
  * Creates a SubscriptionNotaryArguments object.
  * 
  * Merchant subscription id list is set to P + current time.
  */
 public function __construct()
 {
     parent::__construct();
     $this->_idList = 'P' . time();
 }