Skip to content

Commit

Permalink
fix: orgId can be null on webhook person
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRouyer committed Oct 24, 2019
1 parent af87663 commit b21d856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pipedrive.net/Models/Response/WebhookPerson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class WebhookPerson : IEntityWithCustomFields
public long OwnerId { get; set; }

[JsonProperty("org_id")]
public long OrgId { get; set; }
public long? OrgId { get; set; }

[JsonProperty("name")]
public string Name { get; set; }
Expand Down

0 comments on commit b21d856

Please sign in to comment.