Google_Webproperty
The Google Pagespeed Insights Google Webproperty class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_AnalyticsService.php
- class Google_Webproperty extends Google_Model {
- public $accountId;
- protected $__childLinkType = 'Google_WebpropertyChildLink';
- protected $__childLinkDataType = '';
- public $childLink;
- public $created;
- public $id;
- public $industryVertical;
- public $internalWebPropertyId;
- public $kind;
- public $level;
- public $name;
- protected $__parentLinkType = 'Google_WebpropertyParentLink';
- protected $__parentLinkDataType = '';
- public $parentLink;
- public $profileCount;
- public $selfLink;
- public $updated;
- public $websiteUrl;
- public function setAccountId($accountId) {
- $this->accountId = $accountId;
- }
- public function getAccountId() {
- return $this->accountId;
- }
- public function setChildLink(Google_WebpropertyChildLink $childLink) {
- $this->childLink = $childLink;
- }
- public function getChildLink() {
- return $this->childLink;
- }
- public function setCreated($created) {
- $this->created = $created;
- }
- public function getCreated() {
- return $this->created;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setIndustryVertical($industryVertical) {
- $this->industryVertical = $industryVertical;
- }
- public function getIndustryVertical() {
- return $this->industryVertical;
- }
- public function setInternalWebPropertyId($internalWebPropertyId) {
- $this->internalWebPropertyId = $internalWebPropertyId;
- }
- public function getInternalWebPropertyId() {
- return $this->internalWebPropertyId;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setLevel($level) {
- $this->level = $level;
- }
- public function getLevel() {
- return $this->level;
- }
- public function setName($name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setParentLink(Google_WebpropertyParentLink $parentLink) {
- $this->parentLink = $parentLink;
- }
- public function getParentLink() {
- return $this->parentLink;
- }
- public function setProfileCount($profileCount) {
- $this->profileCount = $profileCount;
- }
- public function getProfileCount() {
- return $this->profileCount;
- }
- public function setSelfLink($selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- public function setUpdated($updated) {
- $this->updated = $updated;
- }
- public function getUpdated() {
- return $this->updated;
- }
- public function setWebsiteUrl($websiteUrl) {
- $this->websiteUrl = $websiteUrl;
- }
- public function getWebsiteUrl() {
- return $this->websiteUrl;
- }
- }