Update user order proto and filter model

This commit is contained in:
masoodafar-web
2025-11-28 01:39:05 +03:30
parent bc96b240b3
commit fc4f6defb3
5 changed files with 37 additions and 37 deletions

View File

@@ -81,14 +81,14 @@ message GetUserOrderResponse
int64 amount = 2;
int64 package_id = 3;
google.protobuf.Int64Value transaction_id = 4;
oneof PaymentStatus_item
oneof PaymentStatus_item
{
PaymentStatus payment_status = 5;
}
google.protobuf.Timestamp payment_date = 6;
int64 user_id = 7;
int64 user_address_id = 8;
oneof PaymentMethod_item
oneof PaymentMethod_item
{
PaymentMethod payment_method = 9;
}
@@ -124,7 +124,7 @@ message GetAllUserOrderByFilterRequest
message GetAllUserOrderByFilterFilter
{
google.protobuf.Int64Value id = 1;
google.protobuf.Int64Value price = 2;
google.protobuf.Int64Value amount = 2;
google.protobuf.Int64Value package_id = 3;
google.protobuf.Int64Value transaction_id = 4;
google.protobuf.BoolValue payment_status = 5;
@@ -143,14 +143,14 @@ message GetAllUserOrderByFilterResponseModel
int64 amount = 2;
int64 package_id = 3;
google.protobuf.Int64Value transaction_id = 4;
oneof PaymentStatus_item
oneof PaymentStatus_item
{
PaymentStatus payment_status = 5;
}
google.protobuf.Timestamp payment_date = 6;
int64 user_id = 7;
int64 user_address_id = 8;
oneof PaymentMethod_item
oneof PaymentMethod_item
{
PaymentMethod payment_method = 9;
}