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
18namespace Google\Service\CloudHealthcare;
19
20class Hl7V2Store extends \Google\Collection
21{
22  protected $collection_key = 'notificationConfigs';
23  /**
24   * @var string[]
25   */
26  public $labels;
27  /**
28   * @var string
29   */
30  public $name;
31  protected $notificationConfigsType = Hl7V2NotificationConfig::class;
32  protected $notificationConfigsDataType = 'array';
33  protected $parserConfigType = ParserConfig::class;
34  protected $parserConfigDataType = '';
35  /**
36   * @var bool
37   */
38  public $rejectDuplicateMessage;
39
40  /**
41   * @param string[]
42   */
43  public function setLabels($labels)
44  {
45    $this->labels = $labels;
46  }
47  /**
48   * @return string[]
49   */
50  public function getLabels()
51  {
52    return $this->labels;
53  }
54  /**
55   * @param string
56   */
57  public function setName($name)
58  {
59    $this->name = $name;
60  }
61  /**
62   * @return string
63   */
64  public function getName()
65  {
66    return $this->name;
67  }
68  /**
69   * @param Hl7V2NotificationConfig[]
70   */
71  public function setNotificationConfigs($notificationConfigs)
72  {
73    $this->notificationConfigs = $notificationConfigs;
74  }
75  /**
76   * @return Hl7V2NotificationConfig[]
77   */
78  public function getNotificationConfigs()
79  {
80    return $this->notificationConfigs;
81  }
82  /**
83   * @param ParserConfig
84   */
85  public function setParserConfig(ParserConfig $parserConfig)
86  {
87    $this->parserConfig = $parserConfig;
88  }
89  /**
90   * @return ParserConfig
91   */
92  public function getParserConfig()
93  {
94    return $this->parserConfig;
95  }
96  /**
97   * @param bool
98   */
99  public function setRejectDuplicateMessage($rejectDuplicateMessage)
100  {
101    $this->rejectDuplicateMessage = $rejectDuplicateMessage;
102  }
103  /**
104   * @return bool
105   */
106  public function getRejectDuplicateMessage()
107  {
108    return $this->rejectDuplicateMessage;
109  }
110}
111
112// Adding a class alias for backwards compatibility with the previous class name.
113class_alias(Hl7V2Store::class, 'Google_Service_CloudHealthcare_Hl7V2Store');
114