Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1006 Bytes

FraudCheckOptions.md

File metadata and controls

29 lines (21 loc) · 1006 Bytes

FraudCheckOptions

Properties

Name Type Description Notes
enabled bool [optional]
kount KountOptions [optional]

Example

from freedompay_client.models.fraud_check_options import FraudCheckOptions

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

# convert the object into a dict
fraud_check_options_dict = fraud_check_options_instance.to_dict()
# create an instance of FraudCheckOptions from a dict
fraud_check_options_form_dict = fraud_check_options.from_dict(fraud_check_options_dict)

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