actor = $actor; } /** * @return IUser * @since 19.0.0 */ public function getActor(): IUser { return $this->actor; } /** * @return string|null * @since 19.0.0 */ public function getUid(): ?string { return $this->uid; } /** * Set the uid of the person interacted with, if known * * @param string $uid * * @return self * @since 19.0.0 */ public function setUid(string $uid): self { $this->uid = $uid; return $this; } /** * @return string|null * @since 19.0.0 */ public function getEmail(): ?string { return $this->email; } /** * Set the email of the person interacted with, if known * * @param string $email * * @return self * @since 19.0.0 */ public function setEmail(string $email): self { $this->email = $email; return $this; } /** * @return string|null * @since 19.0.0 */ public function getFederatedCloudId(): ?string { return $this->federatedCloudId; } /** * Set the federated cloud of the person interacted with, if known * * @param string $federatedCloudId * * @return self * @since 19.0.0 */ public function setFederatedCloudId(string $federatedCloudId): self { $this->federatedCloudId = $federatedCloudId; return $this; } }