forked from ni/nisystemlink-clients-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_create_steps_request.py
56 lines (38 loc) · 1.56 KB
/
_create_steps_request.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from datetime import datetime
from typing import Dict, List, Optional
from nisystemlink.clients.core._uplink._json_model import JsonModel
from nisystemlink.clients.testmonitor.models._named_value import NamedValue
from nisystemlink.clients.testmonitor.models._step import Status
from nisystemlink.clients.testmonitor.models._step_data import StepData
class BaseStepRequest(JsonModel):
step_id: Optional[str]
"""Step ID."""
result_id: str
"""Result ID."""
parent_id: Optional[str] = None
"""Parent step ID."""
data: Optional[StepData] = None
"""Data returned by the test step."""
data_model: Optional[str] = None
"""Data model for the step."""
started_at: Optional[datetime] = None
"""ISO-8601 formatted timestamp indicating when the test result began."""
status: Optional[Status] = None
"""The status of the step."""
step_type: Optional[str] = None
"""Step type."""
total_time_in_seconds: Optional[float] = None
"""Total number of seconds the step took to execute."""
inputs: Optional[List[NamedValue]] = None
"""Inputs and their values passed to the test."""
outputs: Optional[List[NamedValue]] = None
"""Outputs and their values logged by the test."""
keywords: Optional[List[str]] = None
"""Words or phrases associated with the step."""
properties: Optional[Dict[str, str]] = None
"""Test step properties."""
class CreateStepRequest(BaseStepRequest):
name: str
"""Step name."""
children: Optional[List["CreateStepRequest"]] = None
"""Nested child steps."""