pyshipstation icon indicating copy to clipboard operation
pyshipstation copied to clipboard

Country is missing from the ShipStationAddress constructor

Open DTrafford opened this issue 4 years ago • 0 comments

class ShipStationAddress(ShipStationBase): def init( self, name=None, company=None, street1=None, street2=None, street3=None, city=None, state=None, postal_code=None, country=None, phone=None, residential=None, ): self.name = name self.company = company self.street1 = street1 self.street2 = street2 self.street3 = street3 self.city = city self.state = state self.postal_code = postal_code self.phone = phone self.residential = residential

*** Need to add self.country = country

DTrafford avatar Aug 11 '20 18:08 DTrafford