File tree Expand file tree Collapse file tree 4 files changed +32
-1
lines changed Expand file tree Collapse file tree 4 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ class Route:
35
35
later.
36
36
"""
37
37
38
+ route_name : str
39
+ path_pattern : str
40
+ http_methods : List [str ]
41
+
38
42
def __init__ (
39
43
self ,
40
44
route_name : str ,
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ class VuforiaDatabase:
14
14
Credentials for VWS APIs.
15
15
"""
16
16
17
+ database_name : str
18
+ server_access_key : bytes
19
+ server_secret_key : bytes
20
+ client_access_key : bytes
21
+ client_secret_key : bytes
22
+ targets : List [Target ]
23
+ state : States
24
+
17
25
def __init__ (
18
26
self ,
19
27
server_access_key : Optional [str ] = None ,
Original file line number Diff line number Diff line change @@ -21,6 +21,18 @@ class Target: # pylint: disable=too-many-instance-attributes
21
21
https://developer.vuforia.com/target-manager.
22
22
"""
23
23
24
+ name : str
25
+ target_id : str
26
+ active_flag : bool
27
+ width : float
28
+ upload_date : datetime .datetime
29
+ last_modified_date : datetime .datetime
30
+ processed_tracking_rating : int
31
+ image : io .BytesIO
32
+ reco_rating : str
33
+ application_metadata : str
34
+ delete_date : Optional [datetime .datetime ]
35
+
24
36
def __init__ ( # pylint: disable=too-many-arguments
25
37
self ,
26
38
name : str ,
@@ -46,7 +58,7 @@ def __init__( # pylint: disable=too-many-arguments
46
58
name (str): The name of the target.
47
59
target_id (str): The unique ID of the target.
48
60
active_flag (bool): Whether or not the target is active for query.
49
- width (int ): The width of the image in scene unit.
61
+ width (float ): The width of the image in scene unit.
50
62
upload_date (datetime.datetime): The time that the target was
51
63
created.
52
64
last_modified_date (datetime.datetime): The time that the target
Original file line number Diff line number Diff line change @@ -29,6 +29,13 @@ class Endpoint:
29
29
Details of endpoints to be called in tests.
30
30
"""
31
31
32
+ prepared_request : requests .PreparedRequest
33
+ successful_headers_result_code : ResultCodes
34
+ successful_headers_status_code : int
35
+ auth_header_content_type : str
36
+ access_key : bytes
37
+ secret_key : bytes
38
+
32
39
def __init__ (
33
40
self ,
34
41
prepared_request : requests .PreparedRequest ,
You can’t perform that action at this time.
0 commit comments