JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Dialogflow/GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings.php
File size: 2.72 KB
MIME-type: text/x-php
Charset: utf-8

<?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\Dialogflow;

class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings extends \Google\Model
{
  /**
   * Enables consent-based end-user input redaction, if true, a pre-defined
   * session parameter `$session.params.conversation-redaction` will be used to
   * determine if the utterance should be redacted.
   *
   * @var bool
   */
  public $enableConsentBasedRedaction;
  /**
   * Enables DF Interaction logging.
   *
   * @var bool
   */
  public $enableInteractionLogging;
  /**
   * Enables Google Cloud Logging.
   *
   * @var bool
   */
  public $enableStackdriverLogging;

  /**
   * Enables consent-based end-user input redaction, if true, a pre-defined
   * session parameter `$session.params.conversation-redaction` will be used to
   * determine if the utterance should be redacted.
   *
   * @param bool $enableConsentBasedRedaction
   */
  public function setEnableConsentBasedRedaction($enableConsentBasedRedaction)
  {
    $this->enableConsentBasedRedaction = $enableConsentBasedRedaction;
  }
  /**
   * @return bool
   */
  public function getEnableConsentBasedRedaction()
  {
    return $this->enableConsentBasedRedaction;
  }
  /**
   * Enables DF Interaction logging.
   *
   * @param bool $enableInteractionLogging
   */
  public function setEnableInteractionLogging($enableInteractionLogging)
  {
    $this->enableInteractionLogging = $enableInteractionLogging;
  }
  /**
   * @return bool
   */
  public function getEnableInteractionLogging()
  {
    return $this->enableInteractionLogging;
  }
  /**
   * Enables Google Cloud Logging.
   *
   * @param bool $enableStackdriverLogging
   */
  public function setEnableStackdriverLogging($enableStackdriverLogging)
  {
    $this->enableStackdriverLogging = $enableStackdriverLogging;
  }
  /**
   * @return bool
   */
  public function getEnableStackdriverLogging()
  {
    return $this->enableStackdriverLogging;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings');