We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce0be71 commit 27fb83fCopy full SHA for 27fb83f
src/vws/reports.py
@@ -5,6 +5,7 @@
5
import datetime
6
from dataclasses import dataclass
7
from enum import Enum
8
+from typing import Optional
9
10
11
@dataclass
@@ -77,3 +78,24 @@ class TargetRecord:
77
78
width: float
79
tracking_rating: int
80
reco_rating: str
81
+
82
83
+@dataclass
84
+class TargetData:
85
+ """
86
+ XXX
87
88
89
+ name: str
90
+ application_metadata: str
91
+ target_timestamp: datetime.datetime
92
93
94
95
+class QueryResult:
96
97
98
99
100
+ target_id: str
101
+ target_data: Optional[TargetData]
0 commit comments