Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

AmlRegistrationResult.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

AmlRegistrationResult

Properties

Name Type Description Notes
provider str [optional]
success bool [optional]
timestamp float [optional]

Example

from fireblocks.models.aml_registration_result import AmlRegistrationResult

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

# convert the object into a dict
aml_registration_result_dict = aml_registration_result_instance.to_dict()
# create an instance of AmlRegistrationResult from a dict
aml_registration_result_from_dict = AmlRegistrationResult.from_dict(aml_registration_result_dict)

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