Google_ReportDelivery
The Google Pagespeed Insights Google ReportDelivery class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_DfareportingService.php
- class Google_ReportDelivery extends Google_Model {
- public $emailOwner;
- public $emailOwnerDeliveryType;
- public $message;
- protected $__recipientsType = 'Google_Recipient';
- protected $__recipientsDataType = 'array';
- public $recipients;
- public function setEmailOwner($emailOwner) {
- $this->emailOwner = $emailOwner;
- }
- public function getEmailOwner() {
- return $this->emailOwner;
- }
- public function setEmailOwnerDeliveryType($emailOwnerDeliveryType) {
- $this->emailOwnerDeliveryType = $emailOwnerDeliveryType;
- }
- public function getEmailOwnerDeliveryType() {
- return $this->emailOwnerDeliveryType;
- }
- public function setMessage($message) {
- $this->message = $message;
- }
- public function getMessage() {
- return $this->message;
- }
- public function setRecipients(/** array(Google_Recipient) */ $recipients) {
- $this->assertIsArray($recipients, 'Google_Recipient', __METHOD__);
- $this->recipients = $recipients;
- }
- public function getRecipients() {
- return $this->recipients;
- }
- }