Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

AmlRegistrationResultFullPayload

The results of the AML address registration.

Properties

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

Example

from fireblocks.models.aml_registration_result_full_payload import AmlRegistrationResultFullPayload

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

# convert the object into a dict
aml_registration_result_full_payload_dict = aml_registration_result_full_payload_instance.to_dict()
# create an instance of AmlRegistrationResultFullPayload from a dict
aml_registration_result_full_payload_from_dict = AmlRegistrationResultFullPayload.from_dict(aml_registration_result_full_payload_dict)

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