Skip to content

Commit 0f767c5

Browse files
1 parent 4ac107a commit 0f767c5

10 files changed

Lines changed: 380 additions & 0 deletions
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
18+
namespace Google\Service\CloudVideoIntelligence;
19+
20+
class GoogleCloudVideointelligenceV1ExportToOutputUriStatus extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $state;
26+
protected $statusType = GoogleRpcStatus::class;
27+
protected $statusDataType = '';
28+
29+
/**
30+
* @param string
31+
*/
32+
public function setState($state)
33+
{
34+
$this->state = $state;
35+
}
36+
/**
37+
* @return string
38+
*/
39+
public function getState()
40+
{
41+
return $this->state;
42+
}
43+
/**
44+
* @param GoogleRpcStatus
45+
*/
46+
public function setStatus(GoogleRpcStatus $status)
47+
{
48+
$this->status = $status;
49+
}
50+
/**
51+
* @return GoogleRpcStatus
52+
*/
53+
public function getStatus()
54+
{
55+
return $this->status;
56+
}
57+
}
58+
59+
// Adding a class alias for backwards compatibility with the previous class name.
60+
class_alias(GoogleCloudVideointelligenceV1ExportToOutputUriStatus::class, 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ExportToOutputUriStatus');

src/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoAnnotationProgress.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
class GoogleCloudVideointelligenceV1VideoAnnotationProgress extends \Google\Model
2121
{
22+
protected $exportStatusType = GoogleCloudVideointelligenceV1ExportToOutputUriStatus::class;
23+
protected $exportStatusDataType = '';
2224
/**
2325
* @var string
2426
*/
@@ -42,6 +44,20 @@ class GoogleCloudVideointelligenceV1VideoAnnotationProgress extends \Google\Mode
4244
*/
4345
public $updateTime;
4446

47+
/**
48+
* @param GoogleCloudVideointelligenceV1ExportToOutputUriStatus
49+
*/
50+
public function setExportStatus(GoogleCloudVideointelligenceV1ExportToOutputUriStatus $exportStatus)
51+
{
52+
$this->exportStatus = $exportStatus;
53+
}
54+
/**
55+
* @return GoogleCloudVideointelligenceV1ExportToOutputUriStatus
56+
*/
57+
public function getExportStatus()
58+
{
59+
return $this->exportStatus;
60+
}
4561
/**
4662
* @param string
4763
*/
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
18+
namespace Google\Service\CloudVideoIntelligence;
19+
20+
class GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $state;
26+
protected $statusType = GoogleRpcStatus::class;
27+
protected $statusDataType = '';
28+
29+
/**
30+
* @param string
31+
*/
32+
public function setState($state)
33+
{
34+
$this->state = $state;
35+
}
36+
/**
37+
* @return string
38+
*/
39+
public function getState()
40+
{
41+
return $this->state;
42+
}
43+
/**
44+
* @param GoogleRpcStatus
45+
*/
46+
public function setStatus(GoogleRpcStatus $status)
47+
{
48+
$this->status = $status;
49+
}
50+
/**
51+
* @return GoogleRpcStatus
52+
*/
53+
public function getStatus()
54+
{
55+
return $this->status;
56+
}
57+
}
58+
59+
// Adding a class alias for backwards compatibility with the previous class name.
60+
class_alias(GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus::class, 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus');

src/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
class GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress extends \Google\Model
2121
{
22+
protected $exportStatusType = GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus::class;
23+
protected $exportStatusDataType = '';
2224
/**
2325
* @var string
2426
*/
@@ -42,6 +44,20 @@ class GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress extends \Google
4244
*/
4345
public $updateTime;
4446

47+
/**
48+
* @param GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus
49+
*/
50+
public function setExportStatus(GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus $exportStatus)
51+
{
52+
$this->exportStatus = $exportStatus;
53+
}
54+
/**
55+
* @return GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus
56+
*/
57+
public function getExportStatus()
58+
{
59+
return $this->exportStatus;
60+
}
4561
/**
4662
* @param string
4763
*/
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
18+
namespace Google\Service\CloudVideoIntelligence;
19+
20+
class GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $state;
26+
protected $statusType = GoogleRpcStatus::class;
27+
protected $statusDataType = '';
28+
29+
/**
30+
* @param string
31+
*/
32+
public function setState($state)
33+
{
34+
$this->state = $state;
35+
}
36+
/**
37+
* @return string
38+
*/
39+
public function getState()
40+
{
41+
return $this->state;
42+
}
43+
/**
44+
* @param GoogleRpcStatus
45+
*/
46+
public function setStatus(GoogleRpcStatus $status)
47+
{
48+
$this->status = $status;
49+
}
50+
/**
51+
* @return GoogleRpcStatus
52+
*/
53+
public function getStatus()
54+
{
55+
return $this->status;
56+
}
57+
}
58+
59+
// Adding a class alias for backwards compatibility with the previous class name.
60+
class_alias(GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus::class, 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus');

src/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
class GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress extends \Google\Model
2121
{
22+
protected $exportStatusType = GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus::class;
23+
protected $exportStatusDataType = '';
2224
/**
2325
* @var string
2426
*/
@@ -42,6 +44,20 @@ class GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress extends \Goog
4244
*/
4345
public $updateTime;
4446

47+
/**
48+
* @param GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus
49+
*/
50+
public function setExportStatus(GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus $exportStatus)
51+
{
52+
$this->exportStatus = $exportStatus;
53+
}
54+
/**
55+
* @return GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus
56+
*/
57+
public function getExportStatus()
58+
{
59+
return $this->exportStatus;
60+
}
4561
/**
4662
* @param string
4763
*/
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
18+
namespace Google\Service\CloudVideoIntelligence;
19+
20+
class GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $state;
26+
protected $statusType = GoogleRpcStatus::class;
27+
protected $statusDataType = '';
28+
29+
/**
30+
* @param string
31+
*/
32+
public function setState($state)
33+
{
34+
$this->state = $state;
35+
}
36+
/**
37+
* @return string
38+
*/
39+
public function getState()
40+
{
41+
return $this->state;
42+
}
43+
/**
44+
* @param GoogleRpcStatus
45+
*/
46+
public function setStatus(GoogleRpcStatus $status)
47+
{
48+
$this->status = $status;
49+
}
50+
/**
51+
* @return GoogleRpcStatus
52+
*/
53+
public function getStatus()
54+
{
55+
return $this->status;
56+
}
57+
}
58+
59+
// Adding a class alias for backwards compatibility with the previous class name.
60+
class_alias(GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus::class, 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus');

src/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
class GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress extends \Google\Model
2121
{
22+
protected $exportStatusType = GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus::class;
23+
protected $exportStatusDataType = '';
2224
/**
2325
* @var string
2426
*/
@@ -42,6 +44,20 @@ class GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress extends \Goog
4244
*/
4345
public $updateTime;
4446

47+
/**
48+
* @param GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus
49+
*/
50+
public function setExportStatus(GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus $exportStatus)
51+
{
52+
$this->exportStatus = $exportStatus;
53+
}
54+
/**
55+
* @return GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus
56+
*/
57+
public function getExportStatus()
58+
{
59+
return $this->exportStatus;
60+
}
4561
/**
4662
* @param string
4763
*/

0 commit comments

Comments
 (0)