Google_SiteVerificationWebResourceResource
The WordPress Core Google SiteVerificationWebResourceResource class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_SiteVerificationService.php
- class Google_SiteVerificationWebResourceResource extends Google_Model {
- public $id;
- public $owners;
- protected $__siteType = 'Google_SiteVerificationWebResourceResourceSite';
- protected $__siteDataType = '';
- public $site;
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setOwners(/** array(Google_string) */ $owners) {
- $this->assertIsArray($owners, 'Google_string', __METHOD__);
- $this->owners = $owners;
- }
- public function getOwners() {
- return $this->owners;
- }
- public function setSite(Google_SiteVerificationWebResourceResourceSite $site) {
- $this->site = $site;
- }
- public function getSite() {
- return $this->site;
- }
- }