Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.06 KB

File metadata and controls

30 lines (22 loc) · 1.06 KB

CreateRiskRulesData

Properties

Name Type Description Notes
description str Description of the rule
field str Field to be used for the rule
value str Value to be used for the rule

Example

from conekta.models.create_risk_rules_data import CreateRiskRulesData

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

# convert the object into a dict
create_risk_rules_data_dict = create_risk_rules_data_instance.to_dict()
# create an instance of CreateRiskRulesData from a dict
create_risk_rules_data_form_dict = create_risk_rules_data.from_dict(create_risk_rules_data_dict)

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