@@ -152,25 +152,37 @@ export interface Info {
152
152
*/
153
153
readonly workflowType : string ;
154
154
/**
155
- * Timestamp for when this Activity was scheduled in milliseconds
155
+ * Timestamp for when this Activity was first scheduled.
156
+ * For retries, this will have the timestamp of the first attempt.
157
+ * See {@link currentAttemptScheduledTimestampMs} for current attempt.
158
+ *
159
+ * @format number of milliseconds from epoch
156
160
*/
157
161
readonly scheduledTimestampMs : number ;
158
162
/**
159
- * Timeout for this Activity from schedule to close in milliseconds.
163
+ * Timeout for this Activity from schedule to close.
164
+ *
165
+ * @format number of milliseconds
160
166
*/
161
167
readonly scheduleToCloseTimeoutMs : number ;
162
168
/**
163
- * Timeout for this Activity from start to close in milliseconds
169
+ * Timeout for this Activity from start to close.
170
+ *
171
+ * @format number of milliseconds
164
172
*/
165
173
readonly startToCloseTimeoutMs : number ;
166
174
/**
167
- * Timestamp for when the current attempt of this Activity was scheduled in milliseconds
175
+ * Timestamp for when the current attempt of this Activity was scheduled.
176
+ *
177
+ * @format number of milliseconds from epoch
168
178
*/
169
179
readonly currentAttemptScheduledTimestampMs : number ;
170
180
/**
171
- * Heartbeat timeout in milliseconds .
181
+ * Heartbeat timeout.
172
182
* If this timeout is defined, the Activity must heartbeat before the timeout is reached.
173
183
* The Activity must **not** heartbeat in case this timeout is not defined.
184
+ *
185
+ * @format number of milliseconds
174
186
*/
175
187
readonly heartbeatTimeoutMs ?: number ;
176
188
/**
0 commit comments