kollapsminoriteten/wp-content/plugins/google-site-kit/includes/Modules/Analytics/Proxy_AccountTicket.php

80 lines
1.4 KiB
PHP
Raw Normal View History

2022-12-15 17:34:08 +01:00
<?php
/**
* Class Google\Site_Kit\Modules\Analytics\Proxy_AccountTicket
*
* @package Google\Site_Kit\Modules\Analytics
* @copyright 2021 Google LLC
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link https://sitekit.withgoogle.com
*/
namespace Google\Site_Kit\Modules\Analytics;
use Google\Site_Kit_Dependencies\Google\Service\Analytics\AccountTicket as Google_Service_Analytics_AccountTicket;
/**
* Class for the Analytics provisioning Account Ticket object.
*
* @since 1.9.0
* @access private
* @ignore
*/
class Proxy_AccountTicket extends Google_Service_Analytics_AccountTicket {
/**
* The site ID.
*
* @since 1.9.0
* @var String
*/
public $site_id = '';
/**
* The site secret.
*
* @since 1.9.0
* @var String
*/
public $site_secret = '';
/**
* Gets the site ID.
*
* @since 1.9.0
*/
public function getSiteId() {
return $this->site_id;
}
/**
* Sets the site ID.
*
* @since 1.9.0
*
* @param string $id The site id.
*/
public function setSiteId( $id ) {
$this->site_id = $id;
}
/**
* Gets the site secret.
*
* @since 1.9.0
*/
public function getSiteSecret() {
return $this->site_secret;
}
/**
* Sets the site secret.
*
* @since 1.9.0
*
* @param string $secret The site secret.
*/
public function setSiteSecret( $secret ) {
$this->site_secret = $secret;
}
}