Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

GetUserTrustFactorResponse

Properties

Name Type Description Notes
manual_trust_factor float [optional]
auto_trust_factor float [optional]
status APIStatus

Example

from client.models.get_user_trust_factor_response import GetUserTrustFactorResponse

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

# convert the object into a dict
get_user_trust_factor_response_dict = get_user_trust_factor_response_instance.to_dict()
# create an instance of GetUserTrustFactorResponse from a dict
get_user_trust_factor_response_from_dict = GetUserTrustFactorResponse.from_dict(get_user_trust_factor_response_dict)

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