breaking changes to Address in proto

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-06-27 15:51:33 -07:00 committed by Simon Zeltser
parent e9826f5f69
commit 6f10ac9794
9 changed files with 571 additions and 575 deletions

View file

@ -108,9 +108,9 @@ message ShipOrderResponse {
}
message Address {
string street_address_1 = 1;
string street_address_2 = 2;
string city= 3;
string street_address = 1;
string city = 2;
string state = 3;
string country = 4;
int32 zip_code = 5;
}