Google_Recipient
The WordPress Core Google Recipient class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_DfareportingService.php
- class Google_Recipient extends Google_Model {
- public $deliveryType;
- public $email;
- public $kind;
- public function setDeliveryType( $deliveryType) {
- $this->deliveryType = $deliveryType;
- }
- public function getDeliveryType() {
- return $this->deliveryType;
- }
- public function setEmail( $email) {
- $this->email = $email;
- }
- public function getEmail() {
- return $this->email;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }