Example #1
0
 public function __construct($name, Client $client, Proxy $proxy)
 {
     parent::__construct($client, $proxy);
     $this->setParamValue(FieldResponse::FIELD_NAME, $name);
 }
 public function __construct($contactId, $groupId, Client $client, Proxy $proxy)
 {
     parent::__construct($client, $proxy);
     $this->contactId = $contactId;
     $this->groupId = $groupId;
 }
 public function __construct($id, Client $client, Proxy $proxy)
 {
     parent::__construct($client, $proxy);
     $this->id = $id;
 }
 public function __construct($groupId, $username, Client $client, Proxy $proxy)
 {
     parent::__construct($client, $proxy);
     $this->groupId = $groupId;
     $this->username = $username;
 }
Example #5
0
 public function __construct($name, Client $client, Proxy $proxy)
 {
     parent::__construct($client, $proxy);
     $this->params['name'] = $name;
 }
 public function __construct($groupId, $username, Client $client, Proxy $proxy)
 {
     parent::__construct($client, $proxy);
     $this->groupId = $groupId;
     $this->setParamValue(PermissionResponse::FIELD_USERNAME, $username);
 }