Skip to content

Commit

Permalink
changed Offset property type to a nullable long to match the offset p…
Browse files Browse the repository at this point in the history
…roperty from other classes
  • Loading branch information
staybfutrell committed Apr 13, 2018
1 parent 9c409b1 commit f8a9c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HubSpot.NET/Core/ListRequestOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
/// </remarks>
public int? Offset { get; set; } = null;
public long? Offset { get; set; } = null;

public List<string> PropertiesToInclude { get; set; } = new List<string>();
}
Expand Down

0 comments on commit f8a9c2f

Please sign in to comment.