GoogleCloudContactcenterinsightsV1View.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. namespace Google\Service\Contactcenterinsights;
  18. class GoogleCloudContactcenterinsightsV1View extends \Google\Model
  19. {
  20. /**
  21. * Output only. The time at which this view was created.
  22. *
  23. * @var string
  24. */
  25. public $createTime;
  26. /**
  27. * The human-readable display name of the view.
  28. *
  29. * @var string
  30. */
  31. public $displayName;
  32. /**
  33. * Immutable. The resource name of the view. Format:
  34. * projects/{project}/locations/{location}/views/{view}
  35. *
  36. * @var string
  37. */
  38. public $name;
  39. /**
  40. * Output only. The most recent time at which the view was updated.
  41. *
  42. * @var string
  43. */
  44. public $updateTime;
  45. /**
  46. * A filter to reduce conversation results to a specific subset. Refer to
  47. * https://cloud.google.com/contact-center/insights/docs/filtering for
  48. * details.
  49. *
  50. * @var string
  51. */
  52. public $value;
  53. /**
  54. * Output only. The time at which this view was created.
  55. *
  56. * @param string $createTime
  57. */
  58. public function setCreateTime($createTime)
  59. {
  60. $this->createTime = $createTime;
  61. }
  62. /**
  63. * @return string
  64. */
  65. public function getCreateTime()
  66. {
  67. return $this->createTime;
  68. }
  69. /**
  70. * The human-readable display name of the view.
  71. *
  72. * @param string $displayName
  73. */
  74. public function setDisplayName($displayName)
  75. {
  76. $this->displayName = $displayName;
  77. }
  78. /**
  79. * @return string
  80. */
  81. public function getDisplayName()
  82. {
  83. return $this->displayName;
  84. }
  85. /**
  86. * Immutable. The resource name of the view. Format:
  87. * projects/{project}/locations/{location}/views/{view}
  88. *
  89. * @param string $name
  90. */
  91. public function setName($name)
  92. {
  93. $this->name = $name;
  94. }
  95. /**
  96. * @return string
  97. */
  98. public function getName()
  99. {
  100. return $this->name;
  101. }
  102. /**
  103. * Output only. The most recent time at which the view was updated.
  104. *
  105. * @param string $updateTime
  106. */
  107. public function setUpdateTime($updateTime)
  108. {
  109. $this->updateTime = $updateTime;
  110. }
  111. /**
  112. * @return string
  113. */
  114. public function getUpdateTime()
  115. {
  116. return $this->updateTime;
  117. }
  118. /**
  119. * A filter to reduce conversation results to a specific subset. Refer to
  120. * https://cloud.google.com/contact-center/insights/docs/filtering for
  121. * details.
  122. *
  123. * @param string $value
  124. */
  125. public function setValue($value)
  126. {
  127. $this->value = $value;
  128. }
  129. /**
  130. * @return string
  131. */
  132. public function getValue()
  133. {
  134. return $this->value;
  135. }
  136. }
  137. // Adding a class alias for backwards compatibility with the previous class name.
  138. class_alias(GoogleCloudContactcenterinsightsV1View::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1View');