emailOwner = $emailOwner; } /** * @return bool */ public function getEmailOwner() { return $this->emailOwner; } /** * The type of delivery for the owner to receive, if enabled. * * Accepted values: LINK, ATTACHMENT * * @param self::EMAIL_OWNER_DELIVERY_TYPE_* $emailOwnerDeliveryType */ public function setEmailOwnerDeliveryType($emailOwnerDeliveryType) { $this->emailOwnerDeliveryType = $emailOwnerDeliveryType; } /** * @return self::EMAIL_OWNER_DELIVERY_TYPE_* */ public function getEmailOwnerDeliveryType() { return $this->emailOwnerDeliveryType; } /** * The message to be sent with each email. * * @param string $message */ public function setMessage($message) { $this->message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * The list of recipients to which to email the report. * * @param Recipient[] $recipients */ public function setRecipients($recipients) { $this->recipients = $recipients; } /** * @return Recipient[] */ public function getRecipients() { return $this->recipients; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReportDelivery::class, 'Google_Service_Dfareporting_ReportDelivery');