Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.36 KB

File metadata and controls

30 lines (21 loc) · 1.36 KB

ChannelDvnConfigWithConfirmations

Properties

Name Type Description Notes
send_config ChannelDvnConfigWithConfirmationsSendConfig [optional]
receive_config ChannelDvnConfigWithConfirmationsReceiveConfig [optional]

Example

from fireblocks.models.channel_dvn_config_with_confirmations import ChannelDvnConfigWithConfirmations

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

# convert the object into a dict
channel_dvn_config_with_confirmations_dict = channel_dvn_config_with_confirmations_instance.to_dict()
# create an instance of ChannelDvnConfigWithConfirmations from a dict
channel_dvn_config_with_confirmations_from_dict = ChannelDvnConfigWithConfirmations.from_dict(channel_dvn_config_with_confirmations_dict)

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