Skip to content

Commit 249f5aa

Browse files
committed
chore: nullable meta.company_id & meta.user_id
1 parent 2207f3a commit 249f5aa

File tree

1 file changed

+2
-2
lines changed
  • src/Pipedrive.net/Models/Common/Webhooks

1 file changed

+2
-2
lines changed

src/Pipedrive.net/Models/Common/Webhooks/Meta.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ public class Meta
2222
public long Id { get; set; }
2323

2424
[JsonProperty("company_id")]
25-
public long CompanyId { get; set; }
25+
public long? CompanyId { get; set; }
2626

2727
[JsonProperty("user_id")]
28-
public long UserId { get; set; }
28+
public long? UserId { get; set; }
2929

3030
[JsonProperty("host")]
3131
public string Host { get; set; }

0 commit comments

Comments
 (0)