暫無描述

GooglePrivacyDlpV2Finding.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. class Google_Service_DLP_GooglePrivacyDlpV2Finding extends Google_Model
  18. {
  19. public $createTime;
  20. protected $infoTypeType = 'Google_Service_DLP_GooglePrivacyDlpV2InfoType';
  21. protected $infoTypeDataType = '';
  22. public $likelihood;
  23. protected $locationType = 'Google_Service_DLP_GooglePrivacyDlpV2Location';
  24. protected $locationDataType = '';
  25. public $quote;
  26. protected $quoteInfoType = 'Google_Service_DLP_GooglePrivacyDlpV2QuoteInfo';
  27. protected $quoteInfoDataType = '';
  28. public function setCreateTime($createTime)
  29. {
  30. $this->createTime = $createTime;
  31. }
  32. public function getCreateTime()
  33. {
  34. return $this->createTime;
  35. }
  36. /**
  37. * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType
  38. */
  39. public function setInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $infoType)
  40. {
  41. $this->infoType = $infoType;
  42. }
  43. /**
  44. * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType
  45. */
  46. public function getInfoType()
  47. {
  48. return $this->infoType;
  49. }
  50. public function setLikelihood($likelihood)
  51. {
  52. $this->likelihood = $likelihood;
  53. }
  54. public function getLikelihood()
  55. {
  56. return $this->likelihood;
  57. }
  58. /**
  59. * @param Google_Service_DLP_GooglePrivacyDlpV2Location
  60. */
  61. public function setLocation(Google_Service_DLP_GooglePrivacyDlpV2Location $location)
  62. {
  63. $this->location = $location;
  64. }
  65. /**
  66. * @return Google_Service_DLP_GooglePrivacyDlpV2Location
  67. */
  68. public function getLocation()
  69. {
  70. return $this->location;
  71. }
  72. public function setQuote($quote)
  73. {
  74. $this->quote = $quote;
  75. }
  76. public function getQuote()
  77. {
  78. return $this->quote;
  79. }
  80. /**
  81. * @param Google_Service_DLP_GooglePrivacyDlpV2QuoteInfo
  82. */
  83. public function setQuoteInfo(Google_Service_DLP_GooglePrivacyDlpV2QuoteInfo $quoteInfo)
  84. {
  85. $this->quoteInfo = $quoteInfo;
  86. }
  87. /**
  88. * @return Google_Service_DLP_GooglePrivacyDlpV2QuoteInfo
  89. */
  90. public function getQuoteInfo()
  91. {
  92. return $this->quoteInfo;
  93. }
  94. }