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 during service outages.
[optional]
inbound_transaction_delay
float
Inbound transaction delay in seconds.
[optional]
outbound_transaction_delay
float
Outbound transaction delay in seconds.
[optional]
Example
fromfireblocks.models.screening_configurations_requestimportScreeningConfigurationsRequest# TODO update the JSON string belowjson="{}"# create an instance of ScreeningConfigurationsRequest from a JSON stringscreening_configurations_request_instance=ScreeningConfigurationsRequest.from_json(json)
# print the JSON string representation of the objectprint(ScreeningConfigurationsRequest.to_json())
# convert the object into a dictscreening_configurations_request_dict=screening_configurations_request_instance.to_dict()
# create an instance of ScreeningConfigurationsRequest from a dictscreening_configurations_request_from_dict=ScreeningConfigurationsRequest.from_dict(screening_configurations_request_dict)