space = $space; } /** * @return string */ public function getSpace() { return $this->space; } /** * Output only. The display name of the source space or DM at the time of * forwarding. For `SPACE`, this is the space name. For `DIRECT_MESSAGE`, this * is the other participant's name (e.g., "User A"). For `GROUP_CHAT`, this is * a generated name based on members' first names, limited to 5 including the * creator (e.g., "User A, User B"). * * @param string $spaceDisplayName */ public function setSpaceDisplayName($spaceDisplayName) { $this->spaceDisplayName = $spaceDisplayName; } /** * @return string */ public function getSpaceDisplayName() { return $this->spaceDisplayName; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ForwardedMetadata::class, 'Google_Service_HangoutsChat_ForwardedMetadata');