Google_Url
The Google Pagespeed Insights Google Url class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_UrlshortenerService.php
- class Google_Url extends Google_Model {
- public $status;
- public $kind;
- public $created;
- protected $__analyticsType = 'Google_AnalyticsSummary';
- protected $__analyticsDataType = '';
- public $analytics;
- public $longUrl;
- public $id;
- public function setStatus($status) {
- $this->status = $status;
- }
- public function getStatus() {
- return $this->status;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setCreated($created) {
- $this->created = $created;
- }
- public function getCreated() {
- return $this->created;
- }
- public function setAnalytics(Google_AnalyticsSummary $analytics) {
- $this->analytics = $analytics;
- }
- public function getAnalytics() {
- return $this->analytics;
- }
- public function setLongUrl($longUrl) {
- $this->longUrl = $longUrl;
- }
- public function getLongUrl() {
- return $this->longUrl;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- }