| Name | Type | Description | Notes |
|---|---|---|---|
| trust_score | int | [optional] | |
| trust_band | str | [optional] | |
| signals | ReputationSignals | [optional] | |
| indicators | ReputationIndicators | [optional] |
from whoisfreaks.models.trust_signals import TrustSignals
# TODO update the JSON string below
json = "{}"
# create an instance of TrustSignals from a JSON string
trust_signals_instance = TrustSignals.from_json(json)
# print the JSON string representation of the object
print(TrustSignals.to_json())
# convert the object into a dict
trust_signals_dict = trust_signals_instance.to_dict()
# create an instance of TrustSignals from a dict
trust_signals_from_dict = TrustSignals.from_dict(trust_signals_dict)