Name | Type | Description | Notes |
---|---|---|---|
enabled | bool |
from fireblocks.models.pre_screening import PreScreening
# TODO update the JSON string below
json = "{}"
# create an instance of PreScreening from a JSON string
pre_screening_instance = PreScreening.from_json(json)
# print the JSON string representation of the object
print(PreScreening.to_json())
# convert the object into a dict
pre_screening_dict = pre_screening_instance.to_dict()
# create an instance of PreScreening from a dict
pre_screening_from_dict = PreScreening.from_dict(pre_screening_dict)