name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Parameter value pairs for various applications. For more information about * `eventName` parameters, see the list of event names for various * applications above in `applicationName`. * * @param ActivityEventsParameters[] $parameters */ public function setParameters($parameters) { $this->parameters = $parameters; } /** * @return ActivityEventsParameters[] */ public function getParameters() { return $this->parameters; } /** * Resource ids associated with the event. * * @param string[] $resourceIds */ public function setResourceIds($resourceIds) { $this->resourceIds = $resourceIds; } /** * @return string[] */ public function getResourceIds() { return $this->resourceIds; } /** * Type of event. The Google Workspace service or feature that an * administrator changes is identified in the `type` property which identifies * an event using the `eventName` property. For a full list of the API's * `type` categories, see the list of event names for various applications * above in `applicationName`. * * @param string $type */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ActivityEvents::class, 'Google_Service_Reports_ActivityEvents');