Make amount, user_id and address_id optional in user order update
This commit is contained in:
@@ -74,7 +74,7 @@ message CreateNewUserOrderResponse
|
||||
message UpdateUserOrderRequest
|
||||
{
|
||||
int64 id = 1;
|
||||
int64 amount = 2;
|
||||
google.protobuf.Int64Value amount = 2;
|
||||
google.protobuf.Int64Value package_id = 3;
|
||||
google.protobuf.Int64Value transaction_id = 4;
|
||||
oneof PaymentStatus_item
|
||||
@@ -82,8 +82,8 @@ message UpdateUserOrderRequest
|
||||
messages.PaymentStatus payment_status = 5;
|
||||
}
|
||||
google.protobuf.Timestamp payment_date = 6;
|
||||
int64 user_id = 7;
|
||||
int64 user_address_id = 8;
|
||||
google.protobuf.Int64Value user_id = 7;
|
||||
google.protobuf.Int64Value user_address_id = 8;
|
||||
oneof PaymentMethod_item
|
||||
{
|
||||
messages.PaymentMethod payment_method = 9;
|
||||
|
||||
Reference in New Issue
Block a user