From dd1ddaa6361622f628b7e4e9aae2c102add05f2d Mon Sep 17 00:00:00 2001 From: IUnknownPtr <6797885+IUnknownPtr@users.noreply.github.com> Date: Tue, 18 Feb 2025 12:46:35 +0200 Subject: [PATCH] Adjust TrackingCategories property type --- .../Accounting/Types/GeneralLedgerTransactionLine.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Merge.Client/Accounting/Types/GeneralLedgerTransactionLine.cs b/src/Merge.Client/Accounting/Types/GeneralLedgerTransactionLine.cs index ab9e1827..7941267f 100644 --- a/src/Merge.Client/Accounting/Types/GeneralLedgerTransactionLine.cs +++ b/src/Merge.Client/Accounting/Types/GeneralLedgerTransactionLine.cs @@ -681,7 +681,7 @@ public record GeneralLedgerTransactionLine public string? Description { get; set; } [JsonPropertyName("tracking_categories")] - public IEnumerable? TrackingCategories { get; set; } + public IEnumerable>? TrackingCategories { get; set; } [JsonPropertyName("debit_amount")] public required string DebitAmount { get; set; } @@ -699,7 +699,7 @@ public record GeneralLedgerTransactionLine public required string ForeignCreditAmount { get; set; } /// - /// Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). + /// Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/accounting/supported-features/). /// [JsonPropertyName("remote_was_deleted")] public bool? RemoteWasDeleted { get; set; }