Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 852 Bytes

PreScreening.md

File metadata and controls

29 lines (20 loc) · 852 Bytes

PreScreening

Properties

Name Type Description Notes
enabled bool

Example

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)

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