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_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebPage extends Google_Collection
19{
20  protected $collection_key = 'partialMatchingImages';
21  protected $fullMatchingImagesType = 'Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage';
22  protected $fullMatchingImagesDataType = 'array';
23  public $pageTitle;
24  protected $partialMatchingImagesType = 'Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage';
25  protected $partialMatchingImagesDataType = 'array';
26  public $score;
27  public $url;
28
29  /**
30   * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage
31   */
32  public function setFullMatchingImages($fullMatchingImages)
33  {
34    $this->fullMatchingImages = $fullMatchingImages;
35  }
36  /**
37   * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage
38   */
39  public function getFullMatchingImages()
40  {
41    return $this->fullMatchingImages;
42  }
43  public function setPageTitle($pageTitle)
44  {
45    $this->pageTitle = $pageTitle;
46  }
47  public function getPageTitle()
48  {
49    return $this->pageTitle;
50  }
51  /**
52   * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage
53   */
54  public function setPartialMatchingImages($partialMatchingImages)
55  {
56    $this->partialMatchingImages = $partialMatchingImages;
57  }
58  /**
59   * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage
60   */
61  public function getPartialMatchingImages()
62  {
63    return $this->partialMatchingImages;
64  }
65  public function setScore($score)
66  {
67    $this->score = $score;
68  }
69  public function getScore()
70  {
71    return $this->score;
72  }
73  public function setUrl($url)
74  {
75    $this->url = $url;
76  }
77  public function getUrl()
78  {
79    return $this->url;
80  }
81}
82