1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_CustomSearchAPI_ResultImage extends Google_Model
19{
20  public $byteSize;
21  public $contextLink;
22  public $height;
23  public $thumbnailHeight;
24  public $thumbnailLink;
25  public $thumbnailWidth;
26  public $width;
27
28  public function setByteSize($byteSize)
29  {
30    $this->byteSize = $byteSize;
31  }
32  public function getByteSize()
33  {
34    return $this->byteSize;
35  }
36  public function setContextLink($contextLink)
37  {
38    $this->contextLink = $contextLink;
39  }
40  public function getContextLink()
41  {
42    return $this->contextLink;
43  }
44  public function setHeight($height)
45  {
46    $this->height = $height;
47  }
48  public function getHeight()
49  {
50    return $this->height;
51  }
52  public function setThumbnailHeight($thumbnailHeight)
53  {
54    $this->thumbnailHeight = $thumbnailHeight;
55  }
56  public function getThumbnailHeight()
57  {
58    return $this->thumbnailHeight;
59  }
60  public function setThumbnailLink($thumbnailLink)
61  {
62    $this->thumbnailLink = $thumbnailLink;
63  }
64  public function getThumbnailLink()
65  {
66    return $this->thumbnailLink;
67  }
68  public function setThumbnailWidth($thumbnailWidth)
69  {
70    $this->thumbnailWidth = $thumbnailWidth;
71  }
72  public function getThumbnailWidth()
73  {
74    return $this->thumbnailWidth;
75  }
76  public function setWidth($width)
77  {
78    $this->width = $width;
79  }
80  public function getWidth()
81  {
82    return $this->width;
83  }
84}
85