Skip to content

Commit

Permalink
chore: nullable meta.company_id & meta.user_id
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRouyer committed Apr 27, 2021
1 parent 2207f3a commit 249f5aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pipedrive.net/Models/Common/Webhooks/Meta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ public class Meta
public long Id { get; set; }

[JsonProperty("company_id")]
public long CompanyId { get; set; }
public long? CompanyId { get; set; }

[JsonProperty("user_id")]
public long UserId { get; set; }
public long? UserId { get; set; }

[JsonProperty("host")]
public string Host { get; set; }
Expand Down

0 comments on commit 249f5aa

Please sign in to comment.