You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flag to enable or disable bypass screening on tenant configuration.
[optional]
disable_unfreeze
bool
Flag to enable or disable unfreeze of transaction frozen by policy rule on tenant configuration.
[optional]
Example
fromfireblocks.models.screening_update_configurationsimportScreeningUpdateConfigurations# TODO update the JSON string belowjson="{}"# create an instance of ScreeningUpdateConfigurations from a JSON stringscreening_update_configurations_instance=ScreeningUpdateConfigurations.from_json(json)
# print the JSON string representation of the objectprint(ScreeningUpdateConfigurations.to_json())
# convert the object into a dictscreening_update_configurations_dict=screening_update_configurations_instance.to_dict()
# create an instance of ScreeningUpdateConfigurations from a dictscreening_update_configurations_from_dict=ScreeningUpdateConfigurations.from_dict(screening_update_configurations_dict)