Google_Segment
The Google Pagespeed Insights Google Segment class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_AnalyticsService.php
- class Google_Segment extends Google_Model {
- public $created;
- public $definition;
- public $id;
- public $kind;
- public $name;
- public $segmentId;
- public $selfLink;
- public $updated;
- public function setCreated($created) {
- $this->created = $created;
- }
- public function getCreated() {
- return $this->created;
- }
- public function setDefinition($definition) {
- $this->definition = $definition;
- }
- public function getDefinition() {
- return $this->definition;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setName($name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setSegmentId($segmentId) {
- $this->segmentId = $segmentId;
- }
- public function getSegmentId() {
- return $this->segmentId;
- }
- 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;
- }
- }