@@ -5,17 +5,27 @@ from typing import ClassVar as _ClassVar, Optional as _Optional
55DESCRIPTOR : _descriptor .FileDescriptor
66
77class Address (_message .Message ):
8- __slots__ = ("country" , "state" , "postal_code" , "city" , "line1" , "line2" )
8+ __slots__ = ("name" , "phone" , "email" , "country" , "state" , "postal_code" , "city" , "line1" , "house_number" , "line2" , "pickup_location" )
9+ NAME_FIELD_NUMBER : _ClassVar [int ]
10+ PHONE_FIELD_NUMBER : _ClassVar [int ]
11+ EMAIL_FIELD_NUMBER : _ClassVar [int ]
912 COUNTRY_FIELD_NUMBER : _ClassVar [int ]
1013 STATE_FIELD_NUMBER : _ClassVar [int ]
1114 POSTAL_CODE_FIELD_NUMBER : _ClassVar [int ]
1215 CITY_FIELD_NUMBER : _ClassVar [int ]
1316 LINE1_FIELD_NUMBER : _ClassVar [int ]
17+ HOUSE_NUMBER_FIELD_NUMBER : _ClassVar [int ]
1418 LINE2_FIELD_NUMBER : _ClassVar [int ]
19+ PICKUP_LOCATION_FIELD_NUMBER : _ClassVar [int ]
20+ name : str
21+ phone : str
22+ email : str
1523 country : str
1624 state : str
1725 postal_code : str
1826 city : str
1927 line1 : str
28+ house_number : str
2029 line2 : str
21- def __init__ (self , country : _Optional [str ] = ..., state : _Optional [str ] = ..., postal_code : _Optional [str ] = ..., city : _Optional [str ] = ..., line1 : _Optional [str ] = ..., line2 : _Optional [str ] = ...) -> None : ...
30+ pickup_location : str
31+ def __init__ (self , name : _Optional [str ] = ..., phone : _Optional [str ] = ..., email : _Optional [str ] = ..., country : _Optional [str ] = ..., state : _Optional [str ] = ..., postal_code : _Optional [str ] = ..., city : _Optional [str ] = ..., line1 : _Optional [str ] = ..., house_number : _Optional [str ] = ..., line2 : _Optional [str ] = ..., pickup_location : _Optional [str ] = ...) -> None : ...
0 commit comments