From d3c70749cb35d8e2ab4b84295c383645e0d1b811 Mon Sep 17 00:00:00 2001 From: Iris Simon Date: Mon, 13 Nov 2023 09:33:06 -0500 Subject: [PATCH] update to CamelCase. Signed-off-by: Iris Simon --- services/dynamic_addressbook_add_node.proto | 18 +++++++++--------- services/dynamic_addressbook_remove_node.proto | 2 +- services/dynamic_addressbook_update_node.proto | 18 +++++++++--------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/services/dynamic_addressbook_add_node.proto b/services/dynamic_addressbook_add_node.proto index 746601dc..5966c13e 100644 --- a/services/dynamic_addressbook_add_node.proto +++ b/services/dynamic_addressbook_add_node.proto @@ -35,11 +35,11 @@ message DynamicAddressBookAddNodeTransactionBody { /** * The unique entity id of the Node. */ - int64 node_id = 1; + int64 nodeID = 1; /** * node account id */ - AccountID account_id = 2; + AccountID accountID = 2; /** * description of the node */ @@ -47,31 +47,31 @@ message DynamicAddressBookAddNodeTransactionBody { /** * inbound ip address or FQDN */ - string inbound_ip = 4; + string inboundIp = 4; /** * inbound port */ - int32 inbound_port = 5; + int32 inboundPort = 5; /** * outbound ip address or FQDN */ - string outbound_ip = 6; + string outboundIp = 6; /** * outbound port */ - int32 outbound_port = 7; + int32 outboundPort = 7; /** * grpc ip address or FQDN */ - string grpc_ip = 8; + string grpcIp = 8; /** * grpc port */ - int32 grpc_port = 9; + int32 grpcPort = 9; /** * node public key */ - Key public_key = 10; + Key publicKey = 10; /** * node x509 certificate */ diff --git a/services/dynamic_addressbook_remove_node.proto b/services/dynamic_addressbook_remove_node.proto index f55752b2..6e1a36d1 100644 --- a/services/dynamic_addressbook_remove_node.proto +++ b/services/dynamic_addressbook_remove_node.proto @@ -35,5 +35,5 @@ message DynamicAddressBookRemoveNodeTransactionBody { /** * Node identifier */ - int64 node_id = 1; + int64 nodeID = 1; } diff --git a/services/dynamic_addressbook_update_node.proto b/services/dynamic_addressbook_update_node.proto index 47867f66..431984c5 100644 --- a/services/dynamic_addressbook_update_node.proto +++ b/services/dynamic_addressbook_update_node.proto @@ -39,11 +39,11 @@ message DynamicAddressBookUpdateNodeTransactionBody { /** * The unique entity id of the DynamicAddress. */ - int64 node_id = 1; + int64 nodeID = 1; /** * If set, the new account_id to be associated with the node */ - AccountID account_id = 2; + AccountID accountID = 2; /** * If set, the new description to be associated with the node */ @@ -51,31 +51,31 @@ message DynamicAddressBookUpdateNodeTransactionBody { /** * If set, the new inbound_ip to be associated with the node */ - string inbound_ip = 4; + string inboundIp = 4; /** * If set, the new inbound_port to be associated with the node */ - int32 inbound_port = 5; + int32 inboundPort = 5; /** * If set, the new outbound_ip to be associated with the node */ - string outbound_ip = 6; + string outboundIp = 6; /** *If set, the new outbound_port to be associated with the node */ - int32 outbound_port = 7; + int32 outboundPort = 7; /** * If set, the new grpc_ip to be associated with the node */ - string grpc_ip = 8; + string grpcIp = 8; /** * If set, the new grpc_port to be associated with the node */ - int32 grpc_port = 9; + int32 grpcPort = 9; /** *If set, the new public_key to be associated with the node */ - Key public_key = 10; + Key publicKey = 10; /** * If set, the new x509 certificate to be associated with the node */