diff --git a/easypost/easypost_client.html b/easypost/easypost_client.html index a7303c5..66a5e74 100644 --- a/easypost/easypost_client.html +++ b/easypost/easypost_client.html @@ -150,7 +150,7 @@

76 self.report = ReportService(self) 77 self.scan_form = ScanFormService(self) 78 self.shipment = ShipmentService(self) - 79 self.smartrate = SmartRateService(self) + 79 self.smart_rate = SmartRateService(self) 80 self.tracker = TrackerService(self) 81 self.user = UserService(self) 82 self.webhook = WebhookService(self) @@ -257,7 +257,7 @@

77 self.report = ReportService(self) 78 self.scan_form = ScanFormService(self) 79 self.shipment = ShipmentService(self) - 80 self.smartrate = SmartRateService(self) + 80 self.smart_rate = SmartRateService(self) 81 self.tracker = TrackerService(self) 82 self.user = UserService(self) 83 self.webhook = WebhookService(self) @@ -363,7 +363,7 @@

77 self.report = ReportService(self) 78 self.scan_form = ScanFormService(self) 79 self.shipment = ShipmentService(self) - 80 self.smartrate = SmartRateService(self) + 80 self.smart_rate = SmartRateService(self) 81 self.tracker = TrackerService(self) 82 self.user = UserService(self) 83 self.webhook = WebhookService(self) diff --git a/easypost/services/smartrate_service.html b/easypost/services/smartrate_service.html index ff1bd06..22981c3 100644 --- a/easypost/services/smartrate_service.html +++ b/easypost/services/smartrate_service.html @@ -83,7 +83,7 @@

15class SmartRateService(BaseService): 16 def __init__(self, client): 17 self._client = client -18 self._model_class = "Smartrate" +18 self._model_class = "SmartRate" 19 20 def estimate_delivery_date(self, **params) -> List[Dict[str, Any]]: 21 """Retrieve the estimated delivery date of each carrier-service level combination via the @@ -122,7 +122,7 @@

16class SmartRateService(BaseService):
 17    def __init__(self, client):
 18        self._client = client
-19        self._model_class = "Smartrate"
+19        self._model_class = "SmartRate"
 20
 21    def estimate_delivery_date(self, **params) -> List[Dict[str, Any]]:
 22        """Retrieve the estimated delivery date of each carrier-service level combination via the
@@ -162,7 +162,7 @@ 

17    def __init__(self, client):
 18        self._client = client
-19        self._model_class = "Smartrate"
+19        self._model_class = "SmartRate"