Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 996 Bytes

File metadata and controls

29 lines (20 loc) · 996 Bytes

PairApiKeyRequest

Properties

Name Type Description Notes
callback_handler CallbackHandlerRequest [optional]

Example

from fireblocks.models.pair_api_key_request import PairApiKeyRequest

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

# convert the object into a dict
pair_api_key_request_dict = pair_api_key_request_instance.to_dict()
# create an instance of PairApiKeyRequest from a dict
pair_api_key_request_from_dict = PairApiKeyRequest.from_dict(pair_api_key_request_dict)

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