📂 File Browser

/AgentAI/vendor/google/apiclient-services/src/Reports
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 Activities.php
▶ Open 📄 View Source
🐘 Activity.php
▶ Open 📄 View Source
🐘 ActivityActor.php
▶ Open 📄 View Source
🐘 ActivityActorApplicationInfo.php
▶ Open 📄 View Source
🐘 ActivityEvents.php
▶ Open 📄 View Source
🐘 ActivityEventsParameters.php
▶ Open 📄 View Source
🐘 ActivityEventsParametersMessageValue.php
▶ Open 📄 View Source
🐘 ActivityEventsParametersMultiMessageValue.php
▶ Open 📄 View Source
🐘 ActivityEventsSensitiveParameters.php
▶ Open 📄 View Source
🐘 ActivityEventsSensitiveParametersMessageValue.php
▶ Open 📄 View Source
🐘 ActivityEventsSensitiveParametersMultiMessageValue.php
▶ Open 📄 View Source
🐘 ActivityEventsStatus.php
▶ Open 📄 View Source
🐘 ActivityId.php
▶ Open 📄 View Source
🐘 ActivityNetworkInfo.php
▶ Open 📄 View Source
🐘 AppliedLabel.php
▶ Open 📄 View Source
🐘 Channel.php
▶ Open 📄 View Source
🐘 CustomerIdentity.php
▶ Open 📄 View Source
🐘 Date.php
▶ Open 📄 View Source
🐘 FieldValue.php
▶ Open 📄 View Source
🐘 FieldValueSelectionListValue.php
▶ Open 📄 View Source
🐘 FieldValueSelectionValue.php
▶ Open 📄 View Source
🐘 FieldValueTextListValue.php
▶ Open 📄 View Source
🐘 FieldValueUserListValue.php
▶ Open 📄 View Source
🐘 FieldValueUserValue.php
▶ Open 📄 View Source
🐘 GroupIdentity.php
▶ Open 📄 View Source
🐘 NestedParameter.php
▶ Open 📄 View Source
🐘 OwnerDetails.php
▶ Open 📄 View Source
🐘 OwnerIdentity.php
▶ Open 📄 View Source
🐘 Reason.php
▶ Open 📄 View Source
🐘 ResourceDetails.php
▶ Open 📄 View Source
🐘 UsageReport.php
▶ Open 📄 View Source
🐘 UsageReportEntity.php
▶ Open 📄 View Source
🐘 UsageReportParameters.php
▶ Open 📄 View Source
🐘 UsageReports.php
▶ Open 📄 View Source
🐘 UsageReportsWarnings.php
▶ Open 📄 View Source
🐘 UsageReportsWarningsData.php
▶ Open 📄 View Source
🐘 UserIdentity.php
▶ Open 📄 View Source

📄 Source: ActivityEvents.php

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\Reports;

class ActivityEvents extends \Google\Collection
{
  protected $collection_key = 'sensitiveParameters';
  /**
   * Name of the event. This is the specific name of the activity reported by
   * the API. And each `eventName` is related to a specific Google Workspace
   * service or feature which the API organizes into types of events. For
   * `eventName` request parameters in general: - If no `eventName` is given,
   * the report returns all possible instances of an `eventName`. - When you
   * request an `eventName`, the API's response returns all activities which
   * contain that `eventName`. For more information about `eventName`
   * properties, see the list of event names for various applications above in
   * `applicationName`.
   *
   * @var string
   */
  public $name;
  protected $parametersType = ActivityEventsParameters::class;
  protected $parametersDataType = 'array';
  /**
   * Resource ids associated with the event.
   *
   * @var string[]
   */
  public $resourceIds;
  protected $sensitiveParametersType = ActivityEventsSensitiveParameters::class;
  protected $sensitiveParametersDataType = 'array';
  protected $statusType = ActivityEventsStatus::class;
  protected $statusDataType = '';
  /**
   * 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`.
   *
   * @var string
   */
  public $type;

  /**
   * Name of the event. This is the specific name of the activity reported by
   * the API. And each `eventName` is related to a specific Google Workspace
   * service or feature which the API organizes into types of events. For
   * `eventName` request parameters in general: - If no `eventName` is given,
   * the report returns all possible instances of an `eventName`. - When you
   * request an `eventName`, the API's response returns all activities which
   * contain that `eventName`. For more information about `eventName`
   * properties, see the list of event names for various applications above in
   * `applicationName`.
   *
   * @param string $name
   */
  public function setName($name)
  {
    $this->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;
  }
  /**
   * Includes sensitive parameter value pairs for various applications.
   *
   * @param ActivityEventsSensitiveParameters[] $sensitiveParameters
   */
  public function setSensitiveParameters($sensitiveParameters)
  {
    $this->sensitiveParameters = $sensitiveParameters;
  }
  /**
   * @return ActivityEventsSensitiveParameters[]
   */
  public function getSensitiveParameters()
  {
    return $this->sensitiveParameters;
  }
  /**
   * Status of the event. Note: Not all events have status.
   *
   * @param ActivityEventsStatus $status
   */
  public function setStatus(ActivityEventsStatus $status)
  {
    $this->status = $status;
  }
  /**
   * @return ActivityEventsStatus
   */
  public function getStatus()
  {
    return $this->status;
  }
  /**
   * 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');
← Back