source: vendor/google/apiclient-services/src/DiscoveryEngine/GoogleCloudDiscoveryengineV1betaCustomTuningModel.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.0 KB
Line 
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\DiscoveryEngine;
19
20class GoogleCloudDiscoveryengineV1betaCustomTuningModel extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $createTime;
26 /**
27 * @var string
28 */
29 public $displayName;
30 /**
31 * @var string
32 */
33 public $errorMessage;
34 public $metrics;
35 /**
36 * @var string
37 */
38 public $modelState;
39 /**
40 * @var string
41 */
42 public $modelVersion;
43 /**
44 * @var string
45 */
46 public $name;
47 /**
48 * @var string
49 */
50 public $trainingStartTime;
51
52 /**
53 * @param string
54 */
55 public function setCreateTime($createTime)
56 {
57 $this->createTime = $createTime;
58 }
59 /**
60 * @return string
61 */
62 public function getCreateTime()
63 {
64 return $this->createTime;
65 }
66 /**
67 * @param string
68 */
69 public function setDisplayName($displayName)
70 {
71 $this->displayName = $displayName;
72 }
73 /**
74 * @return string
75 */
76 public function getDisplayName()
77 {
78 return $this->displayName;
79 }
80 /**
81 * @param string
82 */
83 public function setErrorMessage($errorMessage)
84 {
85 $this->errorMessage = $errorMessage;
86 }
87 /**
88 * @return string
89 */
90 public function getErrorMessage()
91 {
92 return $this->errorMessage;
93 }
94 public function setMetrics($metrics)
95 {
96 $this->metrics = $metrics;
97 }
98 public function getMetrics()
99 {
100 return $this->metrics;
101 }
102 /**
103 * @param string
104 */
105 public function setModelState($modelState)
106 {
107 $this->modelState = $modelState;
108 }
109 /**
110 * @return string
111 */
112 public function getModelState()
113 {
114 return $this->modelState;
115 }
116 /**
117 * @param string
118 */
119 public function setModelVersion($modelVersion)
120 {
121 $this->modelVersion = $modelVersion;
122 }
123 /**
124 * @return string
125 */
126 public function getModelVersion()
127 {
128 return $this->modelVersion;
129 }
130 /**
131 * @param string
132 */
133 public function setName($name)
134 {
135 $this->name = $name;
136 }
137 /**
138 * @return string
139 */
140 public function getName()
141 {
142 return $this->name;
143 }
144 /**
145 * @param string
146 */
147 public function setTrainingStartTime($trainingStartTime)
148 {
149 $this->trainingStartTime = $trainingStartTime;
150 }
151 /**
152 * @return string
153 */
154 public function getTrainingStartTime()
155 {
156 return $this->trainingStartTime;
157 }
158}
159
160// Adding a class alias for backwards compatibility with the previous class name.
161class_alias(GoogleCloudDiscoveryengineV1betaCustomTuningModel::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1betaCustomTuningModel');
Note: See TracBrowser for help on using the repository browser.