Skip to content

Commit b21d856

Browse files
committed
fix: orgId can be null on webhook person
1 parent af87663 commit b21d856

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Pipedrive.net/Models/Response/WebhookPerson.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class WebhookPerson : IEntityWithCustomFields
1717
public long OwnerId { get; set; }
1818

1919
[JsonProperty("org_id")]
20-
public long OrgId { get; set; }
20+
public long? OrgId { get; set; }
2121

2222
[JsonProperty("name")]
2323
public string Name { get; set; }

0 commit comments

Comments
 (0)