Generator Changes at 11/25/2025 2:22:16 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 02:25:35 +03:30
parent c20b2432fb
commit 50ccd10e24
25 changed files with 783 additions and 7 deletions

View File

@@ -126,13 +126,30 @@ message SubmitShopBuyOrderRequest
message SubmitShopBuyOrderResponse
{
int64 order_id = 1;
string payment_status = 2;
google.protobuf.Timestamp created = 3;
google.protobuf.StringValue payment_method = 4;
oneof PaymentStatus_item
{
PaymentStatus payment_status = 2;
}
google.protobuf.Timestamp payment_date = 3;
oneof PaymentMethod_item
{
PaymentMethod payment_method = 4;
}
google.protobuf.StringValue user_address_text = 5;
google.protobuf.Int64Value total_amount = 6;
repeated SubmitShopBuyOrderFactorDetail factor_details = 7;
}
enum PaymentStatus
{
Success = 0;
Reject = 1;
Pending = 2;
}
enum PaymentMethod
{
IPG = 0;
Wallet = 1;
}
message SubmitShopBuyOrderFactorDetail
{
int64 product_id = 1;