File size: 529 Bytes
a601b1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""
Data models for API requests and responses
"""

from .requests import (
    VideoUploadResponse,
    AnalysisStartRequest,
    AnalysisStartResponse
)

from .responses import (
    HealthResponse,
    SessionInfo,
    SessionListResponse,
    ResultsResponse,
    ErrorResponse
)

__all__ = [
    # Requests
    'VideoUploadResponse',
    'AnalysisStartRequest',
    'AnalysisStartResponse',
    
    # Responses
    'HealthResponse',
    'SessionInfo',
    'SessionListResponse',
    'ResultsResponse',
    'ErrorResponse'
]