| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | The type of destination. Use "BLOCKCHAIN" for blockchain address destinations. | |
| address | InternalTransferAddress | ||
| reference_id | str | [optional] |
from fireblocks.models.payment_instructions import PaymentInstructions
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentInstructions from a JSON string
payment_instructions_instance = PaymentInstructions.from_json(json)
# print the JSON string representation of the object
print(PaymentInstructions.to_json())
# convert the object into a dict
payment_instructions_dict = payment_instructions_instance.to_dict()
# create an instance of PaymentInstructions from a dict
payment_instructions_from_dict = PaymentInstructions.from_dict(payment_instructions_dict)