diff --git a/EasyPost/Models/API/Options.cs b/EasyPost/Models/API/Options.cs index 7f958afe..2fb96389 100644 --- a/EasyPost/Models/API/Options.cs +++ b/EasyPost/Models/API/Options.cs @@ -4,6 +4,8 @@ using EasyPost.Utilities.Internal.Extensions; using Newtonsoft.Json; +#pragma warning disable CS1591 + namespace EasyPost.Models.API { /// diff --git a/EasyPost/Models/API/Pickup.cs b/EasyPost/Models/API/Pickup.cs index ef786db5..dc63c56f 100644 --- a/EasyPost/Models/API/Pickup.cs +++ b/EasyPost/Models/API/Pickup.cs @@ -66,6 +66,9 @@ public class Pickup : EasyPostObject, Parameters.IPickupParameter [JsonProperty("min_datetime")] public DateTime? MinDatetime { get; set; } + /// + /// The name of the person to pick up the package. + /// [JsonProperty("name")] public string? Name { get; set; } diff --git a/EasyPost/Models/API/PostageLabel.cs b/EasyPost/Models/API/PostageLabel.cs index 350cf6cf..6da599fb 100644 --- a/EasyPost/Models/API/PostageLabel.cs +++ b/EasyPost/Models/API/PostageLabel.cs @@ -2,6 +2,8 @@ using EasyPost._base; using Newtonsoft.Json; +#pragma warning disable CS1591 + namespace EasyPost.Models.API { /// diff --git a/EasyPost/Models/API/ReferralCustomer.cs b/EasyPost/Models/API/ReferralCustomer.cs index 5f5cdd61..b89c7b46 100644 --- a/EasyPost/Models/API/ReferralCustomer.cs +++ b/EasyPost/Models/API/ReferralCustomer.cs @@ -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 diff --git a/EasyPost/Models/API/User.cs b/EasyPost/Models/API/User.cs index 94793dea..8c9a6574 100644 --- a/EasyPost/Models/API/User.cs +++ b/EasyPost/Models/API/User.cs @@ -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 diff --git a/EasyPost/Parameters/CarrierAccount/CreateOauth.cs b/EasyPost/Parameters/CarrierAccount/CreateOauth.cs index eab95166..e0715fd4 100644 --- a/EasyPost/Parameters/CarrierAccount/CreateOauth.cs +++ b/EasyPost/Parameters/CarrierAccount/CreateOauth.cs @@ -3,6 +3,8 @@ using EasyPost.Utilities.Internal.Attributes; using EasyPost.Utilities.Internal.Extensions; +#pragma warning disable CS0618 + namespace EasyPost.Parameters.CarrierAccount { /// diff --git a/EasyPost/Parameters/Luma/Buy.cs b/EasyPost/Parameters/Luma/Buy.cs index c99cc0b3..0cff2c5b 100644 --- a/EasyPost/Parameters/Luma/Buy.cs +++ b/EasyPost/Parameters/Luma/Buy.cs @@ -3,7 +3,7 @@ namespace EasyPost.Parameters.Luma { /// - /// Parameters for API calls. + /// Parameters for API calls. /// public class Buy : BaseParameters { diff --git a/EasyPost/Parameters/Luma/CreateAndBuy.cs b/EasyPost/Parameters/Luma/CreateAndBuy.cs index aa549ee2..c0d4112f 100644 --- a/EasyPost/Parameters/Luma/CreateAndBuy.cs +++ b/EasyPost/Parameters/Luma/CreateAndBuy.cs @@ -5,7 +5,7 @@ namespace EasyPost.Parameters.Luma { /// - /// Parameters for API calls. + /// Parameters for API calls. /// [ExcludeFromCodeCoverage] public class CreateAndBuy : BaseParameters diff --git a/EasyPost/Parameters/User/AllChildren.cs b/EasyPost/Parameters/User/AllChildren.cs index 338ce8d2..302edf62 100644 --- a/EasyPost/Parameters/User/AllChildren.cs +++ b/EasyPost/Parameters/User/AllChildren.cs @@ -14,7 +14,7 @@ public class AllChildren : BaseAllParameters #region Request Parameters /// - /// Only records created after the given ID will be included. May not be used with . + /// Only records created after the given ID will be included. /// [TopLevelRequestParameter(Necessity.Optional, "after_id")] public string? AfterId { get; set; }