Google_StorageObjectMedia
The Google Pagespeed Insights Google StorageObjectMedia class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_StorageService.php
- class Google_StorageObjectMedia extends Google_Model {
- public $contentType;
- public $timeCreated;
- public $algorithm;
- public $length;
- public $link;
- public $hash;
- public $data;
- public function setContentType($contentType) {
- $this->contentType = $contentType;
- }
- public function getContentType() {
- return $this->contentType;
- }
- public function setTimeCreated($timeCreated) {
- $this->timeCreated = $timeCreated;
- }
- public function getTimeCreated() {
- return $this->timeCreated;
- }
- public function setAlgorithm($algorithm) {
- $this->algorithm = $algorithm;
- }
- public function getAlgorithm() {
- return $this->algorithm;
- }
- public function setLength($length) {
- $this->length = $length;
- }
- public function getLength() {
- return $this->length;
- }
- public function setLink($link) {
- $this->link = $link;
- }
- public function getLink() {
- return $this->link;
- }
- public function setHash($hash) {
- $this->hash = $hash;
- }
- public function getHash() {
- return $this->hash;
- }
- public function setData($data) {
- $this->data = $data;
- }
- public function getData() {
- return $this->data;
- }
- }