GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata extends \Google\Model
  19. {
  20. /**
  21. * Output only. The time the operation was created.
  22. *
  23. * @var string
  24. */
  25. public $createTime;
  26. /**
  27. * Output only. The time the operation finished running.
  28. *
  29. * @var string
  30. */
  31. public $endTime;
  32. protected $requestType = GoogleCloudContactcenterinsightsV1UndeployIssueModelRequest::class;
  33. protected $requestDataType = '';
  34. /**
  35. * Output only. The time the operation was created.
  36. *
  37. * @param string $createTime
  38. */
  39. public function setCreateTime($createTime)
  40. {
  41. $this->createTime = $createTime;
  42. }
  43. /**
  44. * @return string
  45. */
  46. public function getCreateTime()
  47. {
  48. return $this->createTime;
  49. }
  50. /**
  51. * Output only. The time the operation finished running.
  52. *
  53. * @param string $endTime
  54. */
  55. public function setEndTime($endTime)
  56. {
  57. $this->endTime = $endTime;
  58. }
  59. /**
  60. * @return string
  61. */
  62. public function getEndTime()
  63. {
  64. return $this->endTime;
  65. }
  66. /**
  67. * The original request for undeployment.
  68. *
  69. * @param GoogleCloudContactcenterinsightsV1UndeployIssueModelRequest $request
  70. */
  71. public function setRequest(GoogleCloudContactcenterinsightsV1UndeployIssueModelRequest $request)
  72. {
  73. $this->request = $request;
  74. }
  75. /**
  76. * @return GoogleCloudContactcenterinsightsV1UndeployIssueModelRequest
  77. */
  78. public function getRequest()
  79. {
  80. return $this->request;
  81. }
  82. }
  83. // Adding a class alias for backwards compatibility with the previous class name.
  84. class_alias(GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata');