Skip to content

Commit

Permalink
[BUGFIX] re #19075 - Hubspot - Disconnect company does not syncronize…
Browse files Browse the repository at this point in the history
… hubspot data (#38)

add IsReadonly to property NumberOfAssociatedContacts
  • Loading branch information
annasandberg authored Sep 23, 2021
1 parent 2102a9a commit 55e3b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HubSpot/Deals/Deal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Deal : IHubSpotDealEntity
[CustomProperty("createdate")]
public DateTimeOffset Created { get; set; }

[CustomProperty("num_associated_contacts")]
[CustomProperty("num_associated_contacts", IsReadOnly = true)]
public long NumberOfAssociatedContacts { get; set; }

public IReadOnlyList<long> AssociatedCompanyIds { get; set; } = Array.Empty<long>();
Expand Down

0 comments on commit 55e3b3c

Please sign in to comment.