Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

CreateNetworkIdRequest.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

CreateNetworkIdRequest

Properties

Name Type Description Notes
name str
routing_policy Dict[str, NetworkIdRoutingPolicyValue] [optional]

Example

from fireblocks.models.create_network_id_request import CreateNetworkIdRequest

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

# convert the object into a dict
create_network_id_request_dict = create_network_id_request_instance.to_dict()
# create an instance of CreateNetworkIdRequest from a dict
create_network_id_request_from_dict = CreateNetworkIdRequest.from_dict(create_network_id_request_dict)

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