Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions EasyPost/Models/API/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
using EasyPost.Utilities.Internal.Extensions;
using Newtonsoft.Json;

#pragma warning disable CS1591

namespace EasyPost.Models.API
{
/// <summary>
Expand Down
3 changes: 3 additions & 0 deletions EasyPost/Models/API/Pickup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ public class Pickup : EasyPostObject, Parameters.IPickupParameter
[JsonProperty("min_datetime")]
public DateTime? MinDatetime { get; set; }

/// <summary>
/// The name of the person to pick up the package.
/// </summary>
[JsonProperty("name")]
public string? Name { get; set; }

Expand Down
2 changes: 2 additions & 0 deletions EasyPost/Models/API/PostageLabel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
using EasyPost._base;
using Newtonsoft.Json;

#pragma warning disable CS1591

namespace EasyPost.Models.API
{
/// <summary>
Expand Down
2 changes: 2 additions & 0 deletions EasyPost/Models/API/ReferralCustomer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
using EasyPost.Models.Shared;
using Newtonsoft.Json;

#pragma warning disable CS1591

namespace EasyPost.Models.API
{
#pragma warning disable CA1724 // Naming conflicts with Parameters.ReferralCustomer
Expand Down
2 changes: 2 additions & 0 deletions EasyPost/Models/API/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
using EasyPost._base;
using Newtonsoft.Json;

#pragma warning disable CS1591

namespace EasyPost.Models.API
{
#pragma warning disable CA1724 // Naming conflicts with Parameters.User
Expand Down
2 changes: 2 additions & 0 deletions EasyPost/Parameters/CarrierAccount/CreateOauth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
using EasyPost.Utilities.Internal.Attributes;
using EasyPost.Utilities.Internal.Extensions;

#pragma warning disable CS0618

namespace EasyPost.Parameters.CarrierAccount
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion EasyPost/Parameters/Luma/Buy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace EasyPost.Parameters.Luma
{
/// <summary>
/// <a href="https://docs.easypost.com/docs/luma#standard-buy">Parameters</a> for <see cref="EasyPost.Services.ShipmentService.BuyLuma(Buy, System.Threading.CancellationToken)"/> API calls.
/// <a href="https://docs.easypost.com/docs/luma#standard-buy">Parameters</a> for <see cref="EasyPost.Services.ShipmentService.BuyLuma(string, Buy, System.Threading.CancellationToken)"/> API calls.
/// </summary>
public class Buy : BaseParameters<Models.API.Shipment>
{
Expand Down
2 changes: 1 addition & 1 deletion EasyPost/Parameters/Luma/CreateAndBuy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace EasyPost.Parameters.Luma
{
/// <summary>
/// <a href="https://docs.easypost.com/docs/luma#one-call-buy">Parameters</a> for <see cref="EasyPost.Services.ShipmentService.CreateAndBuyLuma(Buy, System.Threading.CancellationToken)"/> API calls.
/// <a href="https://docs.easypost.com/docs/luma#one-call-buy">Parameters</a> for <see cref="EasyPost.Services.ShipmentService.CreateAndBuyLuma(CreateAndBuy, System.Threading.CancellationToken)"/> API calls.
/// </summary>
[ExcludeFromCodeCoverage]
public class CreateAndBuy : BaseParameters<Models.API.Shipment>
Expand Down
2 changes: 1 addition & 1 deletion EasyPost/Parameters/User/AllChildren.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class AllChildren : BaseAllParameters<Models.API.User>
#region Request Parameters

/// <summary>
/// Only records created after the given ID will be included. May not be used with <see cref="BeforeId"/>.
/// Only records created after the given ID will be included.
/// </summary>
[TopLevelRequestParameter(Necessity.Optional, "after_id")]
public string? AfterId { get; set; }
Expand Down
Loading