Generator Changes at 11/25/2025 2:47:13 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 02:50:11 +03:30
parent 34f66fcb2d
commit 90e260eb30
6 changed files with 39 additions and 15 deletions

View File

@@ -12,7 +12,7 @@ option csharp_namespace = "FrontOffice.BFF.UserWallet.Protobuf.Protos.UserWallet
service UserWalletContract
{
rpc GetAllUserWalletChangeLog(google.protobuf.Empty) returns (google.protobuf.Empty){
rpc GetAllUserWalletChangeLog(google.protobuf.Empty) returns (GetAllUserWalletChangeLogResponse){
option (google.api.http) = {
get: "/GetAllUserWalletChangeLog"
@@ -30,18 +30,13 @@ service UserWalletContract
body: "*"
};
};
rpc WithdrawBalance(google.protobuf.Empty) returns (GetAllUserWalletChangeLogResponse){
rpc WithdrawBalance(google.protobuf.Empty) returns (google.protobuf.Empty){
option (google.api.http) = {
post: "/WithdrawBalance"
body: "*"
};
};
}
message GetUserWalletResponse
{
int64 balance = 1;
int64 network_balance = 2;
}
message GetAllUserWalletChangeLogResponse
{
MetaData meta_data = 1;
@@ -56,6 +51,11 @@ message GetAllUserWalletChangeLogResponseModel
bool is_increase = 5;
google.protobuf.Int64Value refrence_id = 6;
}
message GetUserWalletResponse
{
int64 balance = 1;
int64 network_balance = 2;
}
message PaginationState
{