diff --git a/official/docs/python/current/pagination/get-next-page.py b/official/docs/python/current/pagination/get-next-page.py index 5e7e1041..1fcc8496 100644 --- a/official/docs/python/current/pagination/get-next-page.py +++ b/official/docs/python/current/pagination/get-next-page.py @@ -8,6 +8,6 @@ ) # Provide the previous results page to move onto the next page -next_page = client.shipments.get_next_page(shipments) +next_page = client.shipment.get_next_page(shipments) print(next_page) diff --git a/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-by.py b/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-by.py index 392e4278..109337c6 100644 --- a/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-by.py +++ b/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-by.py @@ -2,7 +2,7 @@ client = easypost.EasyPostClient("EASYPOST_API_KEY") -results = client.smartrate.estimate_delivery_date( +results = client.smart_rate.estimate_delivery_date( from_zip="10001", to_zip="10002", planned_ship_date="2024-07-18", diff --git a/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-on.py b/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-on.py index b43b13e7..c18971d8 100644 --- a/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-on.py +++ b/official/docs/python/current/smartrate/retrieve-standalone-smartrate-deliver-on.py @@ -2,7 +2,7 @@ client = easypost.EasyPostClient("EASYPOST_API_KEY") -results = client.smartrate.recommend_ship_date( +results = client.smart_rate.recommend_ship_date( from_zip="10001", to_zip="10002", desired_delivery_date="2024-07-18", diff --git a/official/docs/python/v8/pagination/get-next-page.py b/official/docs/python/v8/pagination/get-next-page.py index 5e7e1041..1fcc8496 100644 --- a/official/docs/python/v8/pagination/get-next-page.py +++ b/official/docs/python/v8/pagination/get-next-page.py @@ -8,6 +8,6 @@ ) # Provide the previous results page to move onto the next page -next_page = client.shipments.get_next_page(shipments) +next_page = client.shipment.get_next_page(shipments) print(next_page) diff --git a/official/docs/python/v9/pagination/get-next-page.py b/official/docs/python/v9/pagination/get-next-page.py index 5e7e1041..1fcc8496 100644 --- a/official/docs/python/v9/pagination/get-next-page.py +++ b/official/docs/python/v9/pagination/get-next-page.py @@ -8,6 +8,6 @@ ) # Provide the previous results page to move onto the next page -next_page = client.shipments.get_next_page(shipments) +next_page = client.shipment.get_next_page(shipments) print(next_page) diff --git a/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-by.py b/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-by.py index 392e4278..109337c6 100644 --- a/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-by.py +++ b/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-by.py @@ -2,7 +2,7 @@ client = easypost.EasyPostClient("EASYPOST_API_KEY") -results = client.smartrate.estimate_delivery_date( +results = client.smart_rate.estimate_delivery_date( from_zip="10001", to_zip="10002", planned_ship_date="2024-07-18", diff --git a/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-on.py b/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-on.py index b43b13e7..c18971d8 100644 --- a/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-on.py +++ b/official/docs/python/v9/smartrate/retrieve-standalone-smartrate-deliver-on.py @@ -2,7 +2,7 @@ client = easypost.EasyPostClient("EASYPOST_API_KEY") -results = client.smartrate.recommend_ship_date( +results = client.smart_rate.recommend_ship_date( from_zip="10001", to_zip="10002", desired_delivery_date="2024-07-18",