Example #1
0
 /**
  * Create a Contact List object.
  *
  * @param Client $client
  *   The API client.
  *
  * @param int $contactListId
  *   The ID of the contact list from which we want contacts.
  */
 public function __construct(Client $client, $contactListId)
 {
     $this->contactListId = $contactListId;
     parent::__construct($client);
 }
 /**
  * {@inheritDoc}
  */
 public function get($path, array $parameters = array(), $requestHeaders = array())
 {
     return parent::get($path, $parameters, $requestHeaders);
 }
Example #3
0
 /**
  * {@inheritdoc}
  */
 public function __construct(Client $client, $customObjectId)
 {
     $this->_id = $customObjectId;
     parent::__construct($client);
 }
Example #4
0
 /**
  * Create a Contact List object.
  *
  * @param Client $client
  *   The API client.
  *
  * @param int $segmentId
  *   The ID of the contact segment from which we want contacts.
  */
 public function __construct(Client $client, $segmentId)
 {
     $this->segmentId = $segmentId;
     parent::__construct($client);
 }