From a518d54d2be14b560d7975295f81dce7b89c14bd Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Mon, 13 May 2024 13:44:13 -0600 Subject: [PATCH] fix: docs about Parameters --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ddf195cf..f7b1ff2b 100644 --- a/README.md +++ b/README.md @@ -134,13 +134,13 @@ Shipment myPurchasedShipment = await myClient.Shipment.Buy(myShipment.Id, myShip ### Parameters -Most functions in this library accept a `Dictionary` as their sole parameter, which is ultimately used as the body of the HTTP request against EasyPost's API. If you instead would like to use .NET objects to construct API call parameters, you can use the various `Parameters` classes (currently in beta). +Most functions in this library accept a `Dictionary` as their sole parameter, which is ultimately used as the body of the HTTP request against EasyPost's API. If you instead would like to use .NET objects to construct API call parameters, you can use the various `Parameters` classes. For example, to create an address: ```csharp // Use an object constructor to create the address creation parameters -var addressCreateParameters = new EasyPost.BetaFeatures.Parameters.Addresses.Create { +var addressCreateParameters = new EasyPost.Parameters.Address.Create { Name = "My Name", Street1 = "123 Main St", City = "San Francisco",