Skip to content

Commit

Permalink
Merge pull request #81 from bboney/package-label-download
Browse files Browse the repository at this point in the history
Add LabelDownload to Package objects in Result for CreateLabelFromShipmentDetails and CreateLabelFromRate.
  • Loading branch information
semarj authored Apr 22, 2024
2 parents 9a3e512 + 904390a commit 4a178a6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,9 @@ Added error mapping for NoRatesReturned
### Changed

Added support for requesting retail rates

## 1.1.8

### Changed

Added support LabelDownload to Package on CreateLabelFromShipment and CreateLabelFromRate
7 changes: 6 additions & 1 deletion ShipEngine/Models/Dto/CreateLabelFromRate/Result.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,5 +229,10 @@ public class Package
/// Package sequence
/// </summary>
public int? Sequence { get; set; }

/// <summary>
/// Reference to the various downloadable file formats for the generated label
/// </summary>
public Download? LabelDownload { get; set; }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -232,5 +232,10 @@ public class LabelPackage
/// Package sequence
/// </summary>
public int? Sequence { get; set; }

/// <summary>
/// Reference to the various downloadable file formats for the generated label
/// </summary>
public Download? LabelDownload { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion ShipEngine/ShipEngine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PackageId>ShipEngine</PackageId>
<PackageTags>sdk;rest;api;shipping;rates;label;tracking;cost;address;validation;normalization;fedex;ups;usps;</PackageTags>

<Version>1.1.7</Version>
<Version>1.1.8</Version>
<Authors>ShipEngine</Authors>
<Company>ShipEngine</Company>
<Summary>The official ShipEngine C# SDK for .NET</Summary>
Expand Down

0 comments on commit 4a178a6

Please sign in to comment.