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_CloudHealthcare_Hl7V2Store extends Google_Collection
19{
20  protected $collection_key = 'notificationConfigs';
21  public $labels;
22  public $name;
23  protected $notificationConfigsType = 'Google_Service_CloudHealthcare_Hl7V2NotificationConfig';
24  protected $notificationConfigsDataType = 'array';
25  protected $parserConfigType = 'Google_Service_CloudHealthcare_ParserConfig';
26  protected $parserConfigDataType = '';
27  public $rejectDuplicateMessage;
28
29  public function setLabels($labels)
30  {
31    $this->labels = $labels;
32  }
33  public function getLabels()
34  {
35    return $this->labels;
36  }
37  public function setName($name)
38  {
39    $this->name = $name;
40  }
41  public function getName()
42  {
43    return $this->name;
44  }
45  /**
46   * @param Google_Service_CloudHealthcare_Hl7V2NotificationConfig[]
47   */
48  public function setNotificationConfigs($notificationConfigs)
49  {
50    $this->notificationConfigs = $notificationConfigs;
51  }
52  /**
53   * @return Google_Service_CloudHealthcare_Hl7V2NotificationConfig[]
54   */
55  public function getNotificationConfigs()
56  {
57    return $this->notificationConfigs;
58  }
59  /**
60   * @param Google_Service_CloudHealthcare_ParserConfig
61   */
62  public function setParserConfig(Google_Service_CloudHealthcare_ParserConfig $parserConfig)
63  {
64    $this->parserConfig = $parserConfig;
65  }
66  /**
67   * @return Google_Service_CloudHealthcare_ParserConfig
68   */
69  public function getParserConfig()
70  {
71    return $this->parserConfig;
72  }
73  public function setRejectDuplicateMessage($rejectDuplicateMessage)
74  {
75    $this->rejectDuplicateMessage = $rejectDuplicateMessage;
76  }
77  public function getRejectDuplicateMessage()
78  {
79    return $this->rejectDuplicateMessage;
80  }
81}
82