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