📄 Source: GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment.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\RecaptchaEnterprise;
class GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment extends \Google\Model
{
/**
* Optional. Identifies the client module initiating the CreateAssessment
* request. This can be the link to the client module's project. Examples
* include: - "github.com/GoogleCloudPlatform/recaptcha-enterprise-google-tag-
* manager" - "wordpress.org/plugins/recaptcha-something"
*
* @var string
*/
public $client;
/**
* Optional. The version of the client module. For example, "1.0.0".
*
* @var string
*/
public $version;
/**
* Optional. Identifies the client module initiating the CreateAssessment
* request. This can be the link to the client module's project. Examples
* include: - "github.com/GoogleCloudPlatform/recaptcha-enterprise-google-tag-
* manager" - "wordpress.org/plugins/recaptcha-something"
*
* @param string $client
*/
public function setClient($client)
{
$this->client = $client;
}
/**
* @return string
*/
public function getClient()
{
return $this->client;
}
/**
* Optional. The version of the client module. For example, "1.0.0".
*
* @param string $version
*/
public function setVersion($version)
{
$this->version = $version;
}
/**
* @return string
*/
public function getVersion()
{
return $this->version;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment::class, 'Google_Service_RecaptchaEnterprise_GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment');
← Back