Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

DeletedWhitelistRuleResponse.md

File metadata and controls

32 lines (23 loc) · 1.3 KB

DeletedWhitelistRuleResponse

Properties

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

Example

from conekta.models.deleted_whitelist_rule_response import DeletedWhitelistRuleResponse

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

# convert the object into a dict
deleted_whitelist_rule_response_dict = deleted_whitelist_rule_response_instance.to_dict()
# create an instance of DeletedWhitelistRuleResponse from a dict
deleted_whitelist_rule_response_from_dict = DeletedWhitelistRuleResponse.from_dict(deleted_whitelist_rule_response_dict)

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