Skip to content

Commit 435251a

Browse files
authored
Merge pull request #586 from EasyPost/update_doc_links
fix: all doc links in docstrings
2 parents d17876e + ea61dfb commit 435251a

File tree

139 files changed

+307
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+307
-300
lines changed

CHANGELOG.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## Next Release
4+
5+
- Corrects all API documentation link references to point to their new locations
6+
37
## v6.7.2 (2024-08-16)
48

59
- Fix inclusion of `Verify` and `VerifyStrict` parameters when creating an Address as part of a larger object creation (e.g. Shipment, Order, etc.)
@@ -15,10 +19,10 @@
1519
## v6.6.0 (2024-07-16)
1620

1721
- Add new `SmartRate` service for interacting with the SmartRate API
18-
- New `RecommendShipDateForShipment` function to recommend ship date for a shipment based on a desired delivery date.
19-
- New `EstimateDeliveryDateForRoute` function to estimate delivery date based on a list of carriers, to/from ZIP codes and a planned ship date (no existing shipment required).
20-
- New `RecommendShipDateForRoute` function to to recommend ship date based on a list of carriers, to/from ZIP codes and a planned ship date (no existing shipment required).
21-
- New model classes as needed for JSON response to new API functions
22+
- New `RecommendShipDateForShipment` function to recommend ship date for a shipment based on a desired delivery date.
23+
- New `EstimateDeliveryDateForRoute` function to estimate delivery date based on a list of carriers, to/from ZIP codes and a planned ship date (no existing shipment required).
24+
- New `RecommendShipDateForRoute` function to to recommend ship date based on a list of carriers, to/from ZIP codes and a planned ship date (no existing shipment required).
25+
- New model classes as needed for JSON response to new API functions
2226
- Enforce one-or-other for `Shipment` and `Batch` parameters in `Pickup.Create` parameter set
2327
- Add internal parameter dependency utility
2428

EasyPost/Models/API/Address.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1724 // Naming conflicts with Parameters.Address
1010
/// <summary>
11-
/// Class representing an <a href="https://www.easypost.com/docs/api#address-object">EasyPost address</a>.
11+
/// Class representing an <a href="https://docs.easypost.com/docs/addresses#address-object">EasyPost address</a>.
1212
/// </summary>
1313
public class Address : EasyPostObject, Parameters.IAddressParameter
1414
{

EasyPost/Models/API/ApiKey.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#api-key-object">EasyPost API key</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/api-keys#api-keys-object">EasyPost API key</a>.
99
/// </summary>
1010
public class ApiKey : EasyPostObject
1111
{

EasyPost/Models/API/Batch.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1724 // Naming conflicts with Parameters.Batch
1010
/// <summary>
11-
/// Class representing an <a href="https://www.easypost.com/docs/api#batch-object">EasyPost batch</a>.
11+
/// Class representing an <a href="https://docs.easypost.com/docs/batches#batch-object">EasyPost batch</a>.
1212
/// </summary>
1313
public class Batch : EasyPostObject, Parameters.IBatchParameter
1414
{

EasyPost/Models/API/BatchShipment.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace EasyPost.Models.API
55
{
66
/// <summary>
7-
/// Class representing an <a href="https://www.easypost.com/docs/api#batch-shipment-object">EasyPost batch shipment</a>.
7+
/// Class representing an <a href="https://docs.easypost.com/docs/batches#batchshipment-object">EasyPost batch shipment</a>.
88
/// </summary>
99
public class BatchShipment : EasyPostObject
1010
{

EasyPost/Models/API/Beta/PaymentRefund.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API.Beta
66
{
77
/// <summary>
8-
/// Class representing an EasyPost <see cref="Models.API.ReferralCustomer"/> <a href="https://www.easypost.com/docs/api#refund-a-referral-user">payment refund</a>.
8+
/// Class representing an EasyPost <see cref="Models.API.ReferralCustomer"/> <a href="https://docs.easypost.com/docs/users/referral-customers#refund-a-referralcustomer">payment refund</a>.
99
/// </summary>
1010
public class PaymentRefund : EasyPostObject
1111
{

EasyPost/Models/API/Beta/StatelessRate.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API.Beta
66
{
77
/// <summary>
8-
/// Class representing an EasyPost <a href="https://www.easypost.com/docs/api#retrieve-rates-for-a-shipment">stateless rate</a>.
8+
/// Class representing an EasyPost <a href="https://docs.easypost.com/docs/shipments/rates#retrieve-rates-for-a-shipment">stateless rate</a>.
99
/// </summary>
1010
public class StatelessRate : EphemeralEasyPostObject
1111
{

EasyPost/Models/API/Brand.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace EasyPost.Models.API
55
{
66
/// <summary>
7-
/// Class representing an <a href="https://www.easypost.com/docs/api#child-user-object">EasyPost brand</a>.
7+
/// Class representing an <a href="https://docs.easypost.com/docs/users/brand#brand-object">EasyPost brand</a>.
88
/// </summary>
99
public class Brand : EasyPostObject
1010
{

EasyPost/Models/API/CarrierAccount.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace EasyPost.Models.API
77
{
88
#pragma warning disable CA1724 // Naming conflicts with Parameters.CarrierAccount
99
/// <summary>
10-
/// Class representing an <a href="https://www.easypost.com/docs/api#carrier-account-object">EasyPost carrier account</a>.
10+
/// Class representing an <a href="https://docs.easypost.com/docs/carrier-accounts#carrieraccount-object">EasyPost carrier account</a>.
1111
/// </summary>
1212
public class CarrierAccount : EasyPostObject, Parameters.ICarrierAccountParameter
1313
{

EasyPost/Models/API/CarrierDetail.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an EasyPost <see cref="Tracker"/>'s <a href="https://www.easypost.com/docs/api#carrier-detail-object">carrier details</a>.
8+
/// Class representing an EasyPost <see cref="Tracker"/>'s <a href="https://docs.easypost.com/docs/trackers#carrierdetail-object">carrier details</a>.
99
/// </summary>
1010
public class CarrierDetail : EasyPostObject
1111
{

EasyPost/Models/API/CarrierFields.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an EasyPost <see cref="CarrierAccount"/>'s <a href="https://www.easypost.com/docs/api#carrier-account-fields-object">credentials</a>.
8+
/// Class representing an EasyPost <see cref="CarrierAccount"/>'s <a href="https://docs.easypost.com/docs/carrier-accounts#fields-object">credentials</a>.
99
/// </summary>
1010
public class CarrierFields : EasyPostObject
1111
{

EasyPost/Models/API/CarrierMetadata.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace EasyPost.Models.API
77
{
88
#pragma warning disable CA1724 // Naming conflicts with Parameters.Beta.CarrierMetadata
99
/// <summary>
10-
/// Class representing an <a href="https://www.easypost.com/docs/api#carriermetadata-object">EasyPost carrier metadata summary</a>.
10+
/// Class representing an <a href="https://docs.easypost.com/docs/carrier-metadata#carriermetadata-object">EasyPost carrier metadata summary</a>.
1111
/// </summary>
1212
public class CarrierMetadata : EphemeralEasyPostObject
1313
{

EasyPost/Models/API/CarrierType.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#carriertype-object">EasyPost carrier type</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/carrier-types#carriertype-object">EasyPost carrier type</a>.
99
/// </summary>
1010
public class CarrierType : EasyPostObject
1111
{

EasyPost/Models/API/CustomsInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace EasyPost.Models.API
66
{
77
#pragma warning disable CA1724 // Naming conflicts with Parameters.CustomInfo
88
/// <summary>
9-
/// Class representing an <a href="https://www.easypost.com/docs/api#customs-info-object">EasyPost customs info object</a>.
9+
/// Class representing an <a href="https://docs.easypost.com/docs/customs-infos#customsinfo-object">EasyPost customs info object</a>.
1010
/// </summary>
1111
public class CustomsInfo : EasyPostObject, Parameters.ICustomsInfoParameter
1212
{

EasyPost/Models/API/CustomsItem.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace EasyPost.Models.API
55
{
66
#pragma warning disable CA1724 // Naming conflicts with Parameters.CustomsItem
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#customs-item-object">EasyPost customs item</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/customs-items#customsitems-object">EasyPost customs item</a>.
99
/// </summary>
1010
public class CustomsItem : EasyPostObject, Parameters.ICustomsItemParameter
1111
{

EasyPost/Models/API/EndShipper.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1724 // Naming conflicts with Parameters.EndShipper
1010
/// <summary>
11-
/// Class representing an <a href="https://www.easypost.com/docs/api#endshipper-object">EasyPost EndShipper</a>.
11+
/// Class representing an <a href="https://docs.easypost.com/docs/endshippers#endshipper-object">EasyPost EndShipper</a>.
1212
/// </summary>
1313
public class EndShipper : EasyPostObject, Parameters.IEndShipperParameter
1414
{

EasyPost/Models/API/Error.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1716
1010
/// <summary>
11-
/// Represents an <a href="https://www.easypost.com/docs/api#error-object">error returned by the EasyPost API</a>.
11+
/// Represents an <a href="https://docs.easypost.com/docs/errors#error-object">error returned by the EasyPost API</a>.
1212
/// These are typically informational about why a request failed (server-side validation issues, missing data, etc.).
1313
/// This is different than the EasyPostError class, which represents exceptions in the EasyPost library,
1414
/// such as bad HTTP status codes or local validation issues.

EasyPost/Models/API/Event.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace EasyPost.Models.API
99
#pragma warning disable CA1716
1010
#pragma warning disable CA1724 // Naming conflicts with Parameters.Event
1111
/// <summary>
12-
/// Class representing an <a href="https://www.easypost.com/docs/api#event-object">EasyPost event</a>.
12+
/// Class representing an <a href="https://docs.easypost.com/docs/events#event-object">EasyPost event</a>.
1313
/// </summary>
1414
public class Event : EasyPostObject
1515
{
@@ -23,7 +23,7 @@ public class Event : EasyPostObject
2323

2424
/// <summary>
2525
/// The result type and event name.
26-
/// See https://www.easypost.com/docs/api#possible-event-types for a list of possible values.
26+
/// See https://docs.easypost.com/docs/events#possible-event-types for a list of possible values.
2727
/// </summary>
2828
[JsonProperty("description")]
2929
public string? Description { get; set; }

EasyPost/Models/API/Fee.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace EasyPost.Models.API
55
{
66
/// <summary>
7-
/// Class representing an <a href="https://www.easypost.com/docs/api#fee-object">EasyPost fee</a>.
7+
/// Class representing an <a href="https://docs.easypost.com/docs/fees#fee-object">EasyPost fee</a>.
88
/// </summary>
99
public class Fee : EasyPostObject
1010
{

EasyPost/Models/API/Form.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace EasyPost.Models.API
55
{
66
/// <summary>
7-
/// Class representing an <a href="https://www.easypost.com/docs/api#form-object">EasyPost form</a>.
7+
/// Class representing an <a href="https://docs.easypost.com/docs/shipments/forms#form-object">EasyPost form</a>.
88
/// </summary>
99
public class Form : EasyPostObject
1010
{

EasyPost/Models/API/Insurance.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1724 // Naming conflicts with Parameters.Insurance
1010
/// <summary>
11-
/// Class representing an <a href="https://www.easypost.com/docs/api#insurance-object">EasyPost insurance object</a>.
11+
/// Class representing an <a href="https://docs.easypost.com/docs/insurance#insurance-object">EasyPost insurance object</a>.
1212
/// </summary>
1313
public class Insurance : EasyPostObject, Parameters.IInsuranceParameter
1414
{

EasyPost/Models/API/Message.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace EasyPost.Models.API
55
{
66
/// <summary>
7-
/// Class representing an EasyPost <see cref="Shipment"/> or <see cref="Pickup"/> <a href="https://www.easypost.com/docs/api#message-object">message</a>.
7+
/// Class representing an EasyPost <see cref="Shipment"/> or <see cref="Pickup"/> <a href="https://docs.easypost.com/docs/shipments/messages#message-object">message</a>.
88
/// </summary>
99
public class Message : EasyPostObject
1010
{

EasyPost/Models/API/Options.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace EasyPost.Models.API
88
{
99
/// <summary>
10-
/// Class representing an <a href="https://www.easypost.com/docs/api#options-object">EasyPost options set</a>.
10+
/// Class representing an <a href="https://docs.easypost.com/docs/shipments/options#options-object">EasyPost options set</a>.
1111
/// </summary>
1212
public class Options : EasyPostObject
1313
{

EasyPost/Models/API/Order.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace EasyPost.Models.API
77
{
88
#pragma warning disable CA1724 // Naming conflicts with Parameters.Order
99
/// <summary>
10-
/// Class representing an <a href="https://www.easypost.com/docs/api#order-object">EasyPost order</a>.
10+
/// Class representing an <a href="https://docs.easypost.com/docs/orders#order-object">EasyPost order</a>.
1111
/// </summary>
1212
public class Order : EasyPostObject, Parameters.IOrderParameter
1313
{

EasyPost/Models/API/Parcel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace EasyPost.Models.API
55
{
66
#pragma warning disable CA1724 // Naming conflicts with Parameters.Parcel
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#parcel-object">EasyPost parcel</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/parcels#parcel-object">EasyPost parcel</a>.
99
/// </summary>
1010
public class Parcel : EasyPostObject, Parameters.IParcelParameter
1111
{

EasyPost/Models/API/Payload.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#payload-object">EasyPost event payload</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/events/payloads#payload-object">EasyPost event payload</a>.
99
/// </summary>
1010
public class Payload : EasyPostObject
1111
{

EasyPost/Models/API/PaymentMethodsSummary.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace EasyPost.Models.API
55
{
66
/// <summary>
7-
/// Represents a <a href="https://www.easypost.com/docs/api#retrieve-payment-methods">summary of the primary and secondary payment methods on the user's account</a>.
7+
/// Represents a <a href="https://docs.easypost.com/docs/users/billing#retrieve-payment-methods">summary of the primary and secondary payment methods on the user's account</a>.
88
/// </summary>
99
public class PaymentMethodsSummary : EasyPostObject
1010
{

EasyPost/Models/API/Pickup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace EasyPost.Models.API
99
{
1010
#pragma warning disable CA1724 // Naming conflicts with Parameters.Pickup
1111
/// <summary>
12-
/// Class representing an <a href="https://www.easypost.com/docs/api#pickup-object">EasyPost pickup</a>.
12+
/// Class representing an <a href="https://docs.easypost.com/docs/pickups#pickup-object">EasyPost pickup</a>.
1313
/// </summary>
1414
public class Pickup : EasyPostObject, Parameters.IPickupParameter
1515
{

EasyPost/Models/API/PickupRate.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace EasyPost.Models.API
44
{
55
/// <summary>
6-
/// Class representing an <a href="https://www.easypost.com/docs/api#pickup-rate-object">EasyPost pickup rate</a>.
6+
/// Class representing an <a href="https://docs.easypost.com/docs/pickups#pickuprate-object">EasyPost pickup rate</a>.
77
/// </summary>
88
public class PickupRate : Rate
99
{

EasyPost/Models/API/PostageLabel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#postage-label-object">EasyPost postage label</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/shipments#postage-label-object">EasyPost postage label</a>.
99
/// </summary>
1010
public class PostageLabel : EasyPostObject
1111
{

EasyPost/Models/API/Rate.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace EasyPost.Models.API
66
{
77
#pragma warning disable CA1724 // Naming conflicts with Parameters.Beta.Rate
88
/// <summary>
9-
/// Class representing an <a href="https://www.easypost.com/docs/api#rate-object">EasyPost rate</a>.
9+
/// Class representing an <a href="https://docs.easypost.com/docs/shipments/rates#rate-object">EasyPost rate</a>.
1010
/// </summary>
1111
public class Rate : EasyPostObject
1212
{

EasyPost/Models/API/RateWithEstimatedDeliveryDate.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace EasyPost.Models.API
55
{
66
/// <summary>
7-
/// Class representing a <see cref="Rate"/> with an <a href="https://www.easypost.com/docs/api#retrieve-estimated-delivery-date-and-total-transit-days-across-all-rates-for-a-shipment">estimated delivery date</a>.
7+
/// Class representing a <see cref="Rate"/> with an <a href="https://docs.easypost.com/docs/shipments/shipping-smartrate#shipping-smartrate-1">estimated delivery date</a>.
88
/// </summary>
99
public class RateWithEstimatedDeliveryDate
1010
{

EasyPost/Models/API/ReferralCustomer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1724 // Naming conflicts with Parameters.ReferralCustomer
1010
/// <summary>
11-
/// Class representing an <a href="https://www.easypost.com/docs/api#referral-customers">EasyPost referral customer</a>.
11+
/// Class representing an <a href="https://docs.easypost.com/docs/users/referral-customers">EasyPost referral customer</a>.
1212
/// </summary>
1313
public class ReferralCustomer : EasyPostObject, Parameters.IReferralCustomerParameter
1414
{

EasyPost/Models/API/Refund.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1724 // Naming conflicts with Parameters.Refund
1010
/// <summary>
11-
/// Class representing an <a href="https://www.easypost.com/docs/api#refund-object">EasyPost refund</a>.
11+
/// Class representing an <a href="https://docs.easypost.com/docs/refunds#refund-object">EasyPost refund</a>.
1212
/// </summary>
1313
public class Refund : EasyPostObject, Parameters.IRefundParameter
1414
{

EasyPost/Models/API/Report.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace EasyPost.Models.API
99
{
1010
#pragma warning disable CA1724 // Naming conflicts with Parameters.Report
1111
/// <summary>
12-
/// Class representing an <a href="https://www.easypost.com/docs/api#report-object">EasyPost report</a>.
12+
/// Class representing an <a href="https://docs.easypost.com/docs/reports#report-object">EasyPost report</a>.
1313
/// </summary>
1414
public class Report : EasyPostObject, Parameters.IReportParameter
1515
{

EasyPost/Models/API/ScanForm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace EasyPost.Models.API
88
{
99
#pragma warning disable CA1724 // Naming conflicts with Parameters.ScanForm
1010
/// <summary>
11-
/// Class representing an <a href="https://www.easypost.com/docs/api#scan-form-object">EasyPost scan form</a>.
11+
/// Class representing an <a href="https://docs.easypost.com/docs/scan-form#scanform-object">EasyPost scan form</a>.
1212
/// </summary>
1313
public class ScanForm : EasyPostObject, Parameters.IScanFormParameter
1414
{

EasyPost/Models/API/Shipment.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace EasyPost.Models.API
99
{
1010
#pragma warning disable CA1724 // Naming conflicts with Parameters.Shipment
1111
/// <summary>
12-
/// Class representing an <a href="https://www.easypost.com/docs/api#shipment-object">EasyPost shipment</a>.
12+
/// Class representing an <a href="https://docs.easypost.com/docs/shipments#shipment-object">EasyPost shipment</a>.
1313
/// </summary>
1414
public class Shipment : EasyPostObject, Parameters.IShipmentParameter
1515
{

EasyPost/Models/API/SmartRate.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#smartrate">EasyPost SmartRate</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/smartrate">EasyPost SmartRate</a>.
99
/// </summary>
1010
public class SmartRate : EasyPostObject
1111
{

EasyPost/Models/API/TaxIdentifier.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace EasyPost.Models.API
55
{
66
#pragma warning disable CA1724 // Naming conflicts with Parameters.TaxIdentifier
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#taxidentifier-object">EasyPost tax identifier</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/shipments/tax-identifiers#taxidentifier-object">EasyPost tax identifier</a>.
99
/// </summary>
1010
public class TaxIdentifier : EasyPostObject, Parameters.ITaxIdentifierParameter
1111
{

EasyPost/Models/API/TimeInTransit.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace EasyPost.Models.API
66
{
77
/// <summary>
8-
/// Class representing an <a href="https://www.easypost.com/docs/api#time%20in%20transit-object">EasyPost time in transit summary</a>.
8+
/// Class representing an <a href="https://docs.easypost.com/docs/shipments/shipping-smartrate#time-in-transit-object">EasyPost time in transit summary</a>.
99
/// </summary>
1010
public class TimeInTransit : EphemeralEasyPostObject
1111
{

0 commit comments

Comments
 (0)