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
Response object for getting external validation keys.
next
str
The ID of the next page
[optional]
Example
fromfireblocks.models.get_validation_key_response_dtoimportGetValidationKeyResponseDto# TODO update the JSON string belowjson="{}"# create an instance of GetValidationKeyResponseDto from a JSON stringget_validation_key_response_dto_instance=GetValidationKeyResponseDto.from_json(json)
# print the JSON string representation of the objectprint(GetValidationKeyResponseDto.to_json())
# convert the object into a dictget_validation_key_response_dto_dict=get_validation_key_response_dto_instance.to_dict()
# create an instance of GetValidationKeyResponseDto from a dictget_validation_key_response_dto_from_dict=GetValidationKeyResponseDto.from_dict(get_validation_key_response_dto_dict)