Skip to content

Commit f8a9c2f

Browse files
committed
changed Offset property type to a nullable long to match the offset property from other classes
1 parent 9c409b1 commit f8a9c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HubSpot.NET/Core/ListRequestOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public int Limit
4040
/// The return DTO from List contains the current "offset" that you can inject into your next list call
4141
/// to continue the listing process
4242
/// </remarks>
43-
public int? Offset { get; set; } = null;
43+
public long? Offset { get; set; } = null;
4444

4545
public List<string> PropertiesToInclude { get; set; } = new List<string>();
4646
}

0 commit comments

Comments
 (0)