Skip to content

Commit f23ae63

Browse files
1 parent 1b194a9 commit f23ae63

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

src/Dataflow/GetWorkerStacktracesRequest.php

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

2020
class GetWorkerStacktracesRequest extends \Google\Model
2121
{
22+
/**
23+
* The end time for the stacktrace query. The returned stacktraces will be a
24+
* recent stack trace at or shortly before this time.
25+
*
26+
* @var string
27+
*/
28+
public $endTime;
2229
/**
2330
* The worker for which to get stacktraces. The returned stacktraces will be
2431
* for the SDK harness running on this worker.
@@ -27,6 +34,23 @@ class GetWorkerStacktracesRequest extends \Google\Model
2734
*/
2835
public $workerId;
2936

37+
/**
38+
* The end time for the stacktrace query. The returned stacktraces will be a
39+
* recent stack trace at or shortly before this time.
40+
*
41+
* @param string $endTime
42+
*/
43+
public function setEndTime($endTime)
44+
{
45+
$this->endTime = $endTime;
46+
}
47+
/**
48+
* @return string
49+
*/
50+
public function getEndTime()
51+
{
52+
return $this->endTime;
53+
}
3054
/**
3155
* The worker for which to get stacktraces. The returned stacktraces will be
3256
* for the SDK harness running on this worker.

0 commit comments

Comments
 (0)