Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

PaymentInstructionsOneOf

Properties

Name Type Description Notes
type str
address InternalTransferAddress
reference_id str [optional]

Example

from fireblocks.models.payment_instructions_one_of import PaymentInstructionsOneOf

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

# convert the object into a dict
payment_instructions_one_of_dict = payment_instructions_one_of_instance.to_dict()
# create an instance of PaymentInstructionsOneOf from a dict
payment_instructions_one_of_from_dict = PaymentInstructionsOneOf.from_dict(payment_instructions_one_of_dict)

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