Generator Changes at 11/25/2025 1:59:23 AM +03:30
This commit is contained in:
@@ -48,6 +48,7 @@ message CreateNewUserWalletRequest
|
||||
{
|
||||
int64 user_id = 1;
|
||||
int64 balance = 2;
|
||||
int64 network_balance = 3;
|
||||
}
|
||||
message CreateNewUserWalletResponse
|
||||
{
|
||||
@@ -58,6 +59,7 @@ message UpdateUserWalletRequest
|
||||
int64 id = 1;
|
||||
int64 user_id = 2;
|
||||
int64 balance = 3;
|
||||
int64 network_balance = 4;
|
||||
}
|
||||
message DeleteUserWalletRequest
|
||||
{
|
||||
@@ -72,6 +74,7 @@ message GetUserWalletResponse
|
||||
int64 id = 1;
|
||||
int64 user_id = 2;
|
||||
int64 balance = 3;
|
||||
int64 network_balance = 4;
|
||||
}
|
||||
message GetAllUserWalletByFilterRequest
|
||||
{
|
||||
@@ -84,6 +87,7 @@ message GetAllUserWalletByFilterFilter
|
||||
google.protobuf.Int64Value id = 1;
|
||||
google.protobuf.Int64Value user_id = 2;
|
||||
google.protobuf.Int64Value balance = 3;
|
||||
int64 network_balance = 4;
|
||||
}
|
||||
message GetAllUserWalletByFilterResponse
|
||||
{
|
||||
@@ -95,4 +99,5 @@ message GetAllUserWalletByFilterResponseModel
|
||||
int64 id = 1;
|
||||
int64 user_id = 2;
|
||||
int64 balance = 3;
|
||||
int64 network_balance = 4;
|
||||
}
|
||||
|
||||
@@ -49,8 +49,10 @@ message CreateNewUserWalletChangeLogRequest
|
||||
int64 wallet_id = 1;
|
||||
int64 current_balance = 2;
|
||||
int64 change_value = 3;
|
||||
bool is_increase = 4;
|
||||
google.protobuf.Int64Value refrence_id = 5;
|
||||
int64 current_network_balance = 4;
|
||||
int64 change_nerwork_value = 5;
|
||||
bool is_increase = 6;
|
||||
google.protobuf.Int64Value refrence_id = 7;
|
||||
}
|
||||
message CreateNewUserWalletChangeLogResponse
|
||||
{
|
||||
@@ -62,8 +64,10 @@ message UpdateUserWalletChangeLogRequest
|
||||
int64 wallet_id = 2;
|
||||
int64 current_balance = 3;
|
||||
int64 change_value = 4;
|
||||
bool is_increase = 5;
|
||||
google.protobuf.Int64Value refrence_id = 6;
|
||||
int64 current_network_balance = 5;
|
||||
int64 change_nerwork_value = 6;
|
||||
bool is_increase = 7;
|
||||
google.protobuf.Int64Value refrence_id = 8;
|
||||
}
|
||||
message DeleteUserWalletChangeLogRequest
|
||||
{
|
||||
@@ -79,8 +83,10 @@ message GetUserWalletChangeLogResponse
|
||||
int64 wallet_id = 2;
|
||||
int64 current_balance = 3;
|
||||
int64 change_value = 4;
|
||||
bool is_increase = 5;
|
||||
google.protobuf.Int64Value refrence_id = 6;
|
||||
int64 current_network_balance = 5;
|
||||
int64 change_nerwork_value = 6;
|
||||
bool is_increase = 7;
|
||||
google.protobuf.Int64Value refrence_id = 8;
|
||||
}
|
||||
message GetAllUserWalletChangeLogByFilterRequest
|
||||
{
|
||||
@@ -108,6 +114,8 @@ message GetAllUserWalletChangeLogByFilterResponseModel
|
||||
int64 wallet_id = 2;
|
||||
int64 current_balance = 3;
|
||||
int64 change_value = 4;
|
||||
bool is_increase = 5;
|
||||
google.protobuf.Int64Value refrence_id = 6;
|
||||
int64 current_network_balance = 5;
|
||||
int64 change_nerwork_value = 6;
|
||||
bool is_increase = 7;
|
||||
google.protobuf.Int64Value refrence_id = 8;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user