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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v7.10.0 (2026-07-24)

- Adds missing `Eccn`, `Manufacturer`, and `PrintedCommodityIdentifier` properties to the `CustomsItem` API model

## v7.9.0 (2026-07-01)

- Adds `PaymentMode` to carrier account create params
Expand Down
2 changes: 1 addition & 1 deletion EasyPost.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>EasyPost-Official</id>
<title>EasyPost (Official)</title>
<version>7.9.0</version>
<version>7.10.0</version>
<authors>EasyPost</authors>
<owners>EasyPost</owners>
<projectUrl>https://www.easypost.com</projectUrl>
Expand Down
18 changes: 18 additions & 0 deletions EasyPost/Models/API/CustomsItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ public class CustomsItem : EasyPostObject, Parameters.ICustomsItemParameter
[JsonProperty("currency")]
public string? Currency { get; set; }

/// <summary>
/// Export Control Classification Number (ECCN) for the item.
/// </summary>
[JsonProperty("eccn")]
public string? Eccn { get; set; }

/// <summary>
/// The description of the item being shipped.
/// </summary>
Expand All @@ -37,12 +43,24 @@ public class CustomsItem : EasyPostObject, Parameters.ICustomsItemParameter
[JsonProperty("hs_tariff_number")]
public string? HsTariffNumber { get; set; }

/// <summary>
/// Manufacturer of the item.
/// </summary>
[JsonProperty("manufacturer")]
public string? Manufacturer { get; set; }

/// <summary>
/// The two-letter ISO 3166 country code where the item is being shipped from.
/// </summary>
[JsonProperty("origin_country")]
public string? OriginCountry { get; set; }

/// <summary>
/// Commodity identifier for the item.
/// </summary>
[JsonProperty("printed_commodity_identifier")]
public string? PrintedCommodityIdentifier { get; set; }

/// <summary>
/// The quantity of the item being shipped.
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions EasyPost/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

// Version information for an assembly must follow semantic versioning
// When releasing a release candidate, append a 4th digit being the number of the release candidate
[assembly: AssemblyVersion("7.9.0")]
[assembly: AssemblyFileVersion("7.9.0")]
[assembly: AssemblyInformationalVersion("7.9.0")]
[assembly: AssemblyVersion("7.10.0")]
[assembly: AssemblyFileVersion("7.10.0")]
[assembly: AssemblyInformationalVersion("7.10.0")]
Loading