예제 #1
0
 public function __construct(Credentials $credentials, $name, $description, $from)
 {
     parent::__construct($credentials);
     $this->setName($name);
     $this->setDescription($description);
     $this->setFrom($from);
 }
예제 #2
0
 public function __construct(Credentials $credentials, $message, $from, $to)
 {
     parent::__construct($credentials);
     $this->setMessage($message);
     $this->setFrom($from);
     $this->setTo($to);
 }
예제 #3
0
 public function __construct(Credentials $credentials, $subaccount, $type, $amount)
 {
     parent::__construct($credentials);
     $this->setSubaccount($subaccount);
     $this->setType($type);
     $this->setAmount($amount);
 }
예제 #4
0
 public function __construct(Credentials $credentials, $message)
 {
     parent::__construct($credentials);
     $this->setMessage($message);
 }
예제 #5
0
 public function __construct(Credentials $credentials, $subaccount)
 {
     parent::__construct($credentials);
     $this->setSubaccount($subaccount);
 }
예제 #6
0
 public function __construct(Credentials $credentials, $mobile)
 {
     parent::__construct($credentials);
     $this->setMobile($mobile);
 }
예제 #7
0
 public function __construct(Credentials $credentials, $file, $group)
 {
     parent::__construct($credentials);
     $this->setFile($file);
     $this->setGroup($group);
 }