File size: 1,723 Bytes
6993919
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# ScanResponse

Pydantic wrapper around the legacy ScanResult.  The legacy result is rich and complex (free/pro/elite per-tier data blocks, modules_run, confidence, etc.). We expose the most useful fields at the top level for API consumers.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**address** | **str** |  | 
**chain** | **str** |  | 
**symbol** | **str** |  | [optional] [default to '']
**name** | **str** |  | [optional] [default to '']
**safety_score** | **int** |  | [optional] [default to 50]
**risk_flags** | **List[str]** |  | [optional] 
**tier_required** | **str** |  | [optional] [default to 'free']
**confidence** | **int** |  | [optional] [default to 0]
**modules_run** | [**List[ScanModuleResult]**](ScanModuleResult.md) |  | [optional] 
**free** | **Dict[str, object]** |  | [optional] 
**pro** | **Dict[str, object]** |  | [optional] 
**elite** | **Dict[str, object]** |  | [optional] 
**scanned_at** | **str** |  | [optional] [default to '']

## Example

```python
from rugmunch.models.scan_response import ScanResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ScanResponse from a JSON string
scan_response_instance = ScanResponse.from_json(json)
# print the JSON string representation of the object
print(ScanResponse.to_json())

# convert the object into a dict
scan_response_dict = scan_response_instance.to_dict()
# create an instance of ScanResponse from a dict
scan_response_from_dict = ScanResponse.from_dict(scan_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)