📄 Source: GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.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\FactCheckTools;
class GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor extends \Google\Model
{
/**
* Corresponds to `ClaimReview.itemReviewed.author.image`.
*
* @var string
*/
public $imageUrl;
/**
* Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
*
* @var string
*/
public $jobTitle;
/**
* A person or organization stating the claim. For instance, "John Doe".
* Corresponds to `ClaimReview.itemReviewed.author.name`.
*
* @var string
*/
public $name;
/**
* Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
*
* @var string
*/
public $sameAs;
/**
* Corresponds to `ClaimReview.itemReviewed.author.image`.
*
* @param string $imageUrl
*/
public function setImageUrl($imageUrl)
{
$this->imageUrl = $imageUrl;
}
/**
* @return string
*/
public function getImageUrl()
{
return $this->imageUrl;
}
/**
* Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
*
* @param string $jobTitle
*/
public function setJobTitle($jobTitle)
{
$this->jobTitle = $jobTitle;
}
/**
* @return string
*/
public function getJobTitle()
{
return $this->jobTitle;
}
/**
* A person or organization stating the claim. For instance, "John Doe".
* Corresponds to `ClaimReview.itemReviewed.author.name`.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
*
* @param string $sameAs
*/
public function setSameAs($sameAs)
{
$this->sameAs = $sameAs;
}
/**
* @return string
*/
public function getSameAs()
{
return $this->sameAs;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor::class, 'Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor');
← Back