From f8a9c2fef66a716468d30353fc25f5b6cc323bd5 Mon Sep 17 00:00:00 2001 From: Brian Date: Fri, 13 Apr 2018 14:57:49 -0400 Subject: [PATCH] changed Offset property type to a nullable long to match the offset property from other classes --- HubSpot.NET/Core/ListRequestOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HubSpot.NET/Core/ListRequestOptions.cs b/HubSpot.NET/Core/ListRequestOptions.cs index 8474501d..df9addc6 100644 --- a/HubSpot.NET/Core/ListRequestOptions.cs +++ b/HubSpot.NET/Core/ListRequestOptions.cs @@ -40,7 +40,7 @@ public int Limit /// The return DTO from List contains the current "offset" that you can inject into your next list call /// to continue the listing process /// - public int? Offset { get; set; } = null; + public long? Offset { get; set; } = null; public List PropertiesToInclude { get; set; } = new List(); }