Skip to content

Commit

Permalink
- Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 committed Jul 11, 2024
1 parent f38bc2d commit 04e19a2
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion EasyPost.Integration/Basics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void UserCanLocallyConstructResponseObject()
var endShipper = new EndShipper();
var endShipperCollection = new EndShipperCollection();
var error = new Error();
var EstimateDeliveryDateForZipPairResult = new EstimateDeliveryDateForZipPairResult();
var estimateDeliveryDateForZipPairResult = new EstimateDeliveryDateForZipPairResult();
var estimateDeliveryDateForShipmentResult = new EstimateDeliveryDateForShipmentResult();
var @event = new Event();
var eventCollection = new EventCollection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace EasyPost.Parameters.SmartRate
{
/// <summary>
/// Parameters for <see cref="SmartRateService.EstimateDeliveryDateForShipment(string, EstimateDeliveryDateForShipment, System.Threading.CancellationToken)"/> API calls.
/// Parameters for <see cref="ShipmentService.EstimateDeliveryDate(string, EstimateDeliveryDateForShipment, System.Threading.CancellationToken)"/> API calls.
/// </summary>
[ExcludeFromCodeCoverage]
public class EstimateDeliveryDateForShipment : BaseParameters<Models.API.EstimateDeliveryDateForShipmentResult>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace EasyPost.Parameters.SmartRate
{
/// <summary>
/// Parameters for <see cref="SmartRateService.EstimateDeliveryDateForZipPair(EstimateDeliveryDateForZipPair, System.Threading.CancellationToken)"/> API calls.
/// Parameters for <see cref="SmartRateService.EstimateDeliveryDate(EstimateDeliveryDateForZipPair, System.Threading.CancellationToken)"/> API calls.
/// </summary>
[ExcludeFromCodeCoverage]
public class EstimateDeliveryDateForZipPair : BaseParameters<Models.API.EstimateDeliveryDateForShipmentResult>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace EasyPost.Parameters.SmartRate
{
/// <summary>
/// Parameters for <see cref="SmartRateService.RecommendShipDateForShipment(string, RecommendShipDateForShipment, System.Threading.CancellationToken)"/> API calls.
/// Parameters for <see cref="ShipmentService.RecommendShipDate(string, RecommendShipDateForShipment, System.Threading.CancellationToken)"/> API calls.
/// </summary>
[ExcludeFromCodeCoverage]
public class RecommendShipDateForShipment : BaseParameters<Models.API.RecommendShipDateForShipmentResult>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace EasyPost.Parameters.SmartRate
{
/// <summary>
/// Parameters for <see cref="SmartRateService.RecommendShipDateForZipPair(RecommendShipDateForZipPair, System.Threading.CancellationToken)"/> API calls.
/// Parameters for <see cref="SmartRateService.RecommendShipDate(RecommendShipDateForZipPair, System.Threading.CancellationToken)"/> API calls.
/// </summary>
[ExcludeFromCodeCoverage]
public class RecommendShipDateForZipPair : BaseParameters<Models.API.RecommendShipDateForShipmentResult>
Expand Down
3 changes: 0 additions & 3 deletions EasyPost/Services/SmartRateService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using EasyPost._base;
Expand Down Expand Up @@ -39,8 +38,6 @@ public async Task<EstimateDeliveryDateForZipPairResult> EstimateDeliveryDate(Est
return await RequestAsync<EstimateDeliveryDateForZipPairResult>(Method.Post, "smartrate/deliver_by", cancellationToken, parameters.ToDictionary());
}



/// <summary>
/// Retrieve a recommended ship date for each carrier-service level combination via the Smart Deliver On API, based on a specific desired delivery date and origin-destination postal code pair.
/// Unlike the <see cref="ShipmentService.RecommendShipDate"/> method, this method does not require a <see cref="Shipment"/> ID.
Expand Down

0 comments on commit 04e19a2

Please sign in to comment.