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_JobService_MatchingJob extends Google_Model
19{
20  protected $commuteInfoType = 'Google_Service_JobService_CommuteInfo';
21  protected $commuteInfoDataType = '';
22  protected $jobType = 'Google_Service_JobService_Job';
23  protected $jobDataType = '';
24  public $jobSummary;
25  public $jobTitleSnippet;
26  public $searchTextSnippet;
27
28  /**
29   * @param Google_Service_JobService_CommuteInfo
30   */
31  public function setCommuteInfo(Google_Service_JobService_CommuteInfo $commuteInfo)
32  {
33    $this->commuteInfo = $commuteInfo;
34  }
35  /**
36   * @return Google_Service_JobService_CommuteInfo
37   */
38  public function getCommuteInfo()
39  {
40    return $this->commuteInfo;
41  }
42  /**
43   * @param Google_Service_JobService_Job
44   */
45  public function setJob(Google_Service_JobService_Job $job)
46  {
47    $this->job = $job;
48  }
49  /**
50   * @return Google_Service_JobService_Job
51   */
52  public function getJob()
53  {
54    return $this->job;
55  }
56  public function setJobSummary($jobSummary)
57  {
58    $this->jobSummary = $jobSummary;
59  }
60  public function getJobSummary()
61  {
62    return $this->jobSummary;
63  }
64  public function setJobTitleSnippet($jobTitleSnippet)
65  {
66    $this->jobTitleSnippet = $jobTitleSnippet;
67  }
68  public function getJobTitleSnippet()
69  {
70    return $this->jobTitleSnippet;
71  }
72  public function setSearchTextSnippet($searchTextSnippet)
73  {
74    $this->searchTextSnippet = $searchTextSnippet;
75  }
76  public function getSearchTextSnippet()
77  {
78    return $this->searchTextSnippet;
79  }
80}
81