<?php
// Generated file. Do not edit by hand. Use update.php in project root.
namespace PHPFUI\ConstantContact\V3\Reports\EmailReports\Tracking;
class Opens extends \PHPFUI\ConstantContact\Base
{
public function __construct(\PHPFUI\ConstantContact\Client $client)
{
parent::__construct($client, '/v3/reports/email_reports/{campaign_activity_id}/tracking/opens');
}
/**
* GET an Email Opens Report
*
* Use this method to get each time a contact opened a specific email campaign
* activity. This report includes general contact information such as the
* contact's email address and unique ID, the date and time they opened
* the email campaign activity, and the type of device they used to open
* it. This report lists the most recent activity first. For more use case
* information, see [Get an Opens report for an Email Campaign Activity](https://v3.developer.constantcontact.com/api_guide/email_summary_opens_report.html)
* in the API guide.
*
* @param string $campaign_activity_id The unique ID for an email campaign activity to use for this report.
* @param string $limit The number of tracking activities to return on a page.
*/
public function get(string $campaign_activity_id, ?string $limit = null) : ?array
{
return $this->doGet(['campaign_activity_id' => $campaign_activity_id, 'limit' => $limit, ]);
}
public function getTyped(string $campaign_activity_id, ?string $limit = null) : ?\PHPFUI\ConstantContact\Definition\OpensTrackingActivitiesPage
{
$data = $this->get($campaign_activity_id, $limit);
return $data ? new \PHPFUI\ConstantContact\Definition\OpensTrackingActivitiesPage($data) : null;
}
}