Skip to content

Commit

Permalink
fix: BasketPackageItem.Duration returns an int? not a string?
Browse files Browse the repository at this point in the history
  • Loading branch information
Antaris committed Feb 16, 2024
1 parent cc58356 commit 645b7b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/TrybeSDK/Api/Shop/Basket/BasketPackageItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class BasketPackageItem : Model<BasketPackageItem>
/// </summary>
/// <value>The duration of this item.</value>
[JsonPropertyName("duration")]
public string? Duration { get; set; }
public int? Duration { get; set; }

/// <summary>
/// The date and time that the item is reserved until.
Expand Down

0 comments on commit 645b7b9

Please sign in to comment.