Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.08 KB

File metadata and controls

36 lines (27 loc) · 1.08 KB

Reputation

Reputation Serializer

Properties

Name Type Description Notes
pk UUID [optional]
identifier str
ip str
ip_geo_data Dict[str, object] [optional]
ip_asn_data Dict[str, object] [optional]
score int [optional]
updated datetime [readonly]

Example

from authentik_client.models.reputation import Reputation

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

# convert the object into a dict
reputation_dict = reputation_instance.to_dict()
# create an instance of Reputation from a dict
reputation_from_dict = Reputation.from_dict(reputation_dict)

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