Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

TrustSignals

Properties

Name Type Description Notes
trust_score int [optional]
trust_band str [optional]
signals ReputationSignals [optional]
indicators ReputationIndicators [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]