Generator Changes at 11/25/2025 2:47:13 AM +03:30
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user