From 249f5aa134cd0fabd9c45eb47dd3325ea6d334cc Mon Sep 17 00:00:00 2001 From: David Rouyer Date: Tue, 27 Apr 2021 15:55:20 +0200 Subject: [PATCH] chore: nullable meta.company_id & meta.user_id --- src/Pipedrive.net/Models/Common/Webhooks/Meta.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Pipedrive.net/Models/Common/Webhooks/Meta.cs b/src/Pipedrive.net/Models/Common/Webhooks/Meta.cs index 28fde208..7aa24710 100644 --- a/src/Pipedrive.net/Models/Common/Webhooks/Meta.cs +++ b/src/Pipedrive.net/Models/Common/Webhooks/Meta.cs @@ -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; }