Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

WhitelistlistRuleResponse.md

File metadata and controls

32 lines (23 loc) · 1.24 KB

WhitelistlistRuleResponse

Properties

Name Type Description Notes
id str Whitelist rule id [optional]
var_field str field used for whitelists rule [optional]
value str value used for whitelists rule [optional]
description str use an description for whitelisted rule [optional]

Example

from conekta.models.whitelistlist_rule_response import WhitelistlistRuleResponse

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

# convert the object into a dict
whitelistlist_rule_response_dict = whitelistlist_rule_response_instance.to_dict()
# create an instance of WhitelistlistRuleResponse from a dict
whitelistlist_rule_response_from_dict = WhitelistlistRuleResponse.from_dict(whitelistlist_rule_response_dict)

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