email; } /** * @param string|null $email * @return Receiver */ public function setEmail($email) { $this->email = $email; return $this; } /** * @return string|null */ public function getActivated() { return $this->activated; } /** * @param string|null $activated * @return Receiver */ public function setActivated($activated) { $this->activated = $activated; return $this; } /** * @return string|null */ public function getRegistered() { return $this->registered; } /** * @param string|null $registered * @return Receiver */ public function setRegistered($registered) { $this->registered = $registered; return $this; } /** * @return string|null */ public function getDeactivated() { return $this->deactivated; } /** * @param string|null $deactivated * @return Receiver */ public function setDeactivated($deactivated) { $this->deactivated = $deactivated; return $this; } /** * @return string|null */ public function getSource() { return $this->source; } /** * @param string|null $source * @return Receiver */ public function setSource($source) { $this->source = $source; return $this; } /** * @return string[]|null */ public function getAttributes() { return $this->attributes; } /** * @param string[]|null $attributes * @return Receiver */ public function setAttributes($attributes) { $this->attributes = $attributes; return $this; } /** * @return string[]|null */ public function getGlobalAttributes() { return $this->globalAttributes; } /** * @param string[]|null $globalAttributes * @return Receiver */ public function setGlobalAttributes($globalAttributes) { $this->globalAttributes = $globalAttributes; return $this; } /** * @return array */ public function toArray(): array { return [ 'email' => $this->email, 'activated' => $this->activated, 'registered' => $this->registered, 'deactivated' => $this->deactivated, 'source' => $this->source, 'attributes' => $this->attributes, 'global_attributes' => $this->globalAttributes ]; } }