Fix:
In the "JsonTypes" directory, modify the following files:
User.cs
Original
[JsonProperty("id")]
public int Id { get; set; }
Change to
[JsonProperty("id")]
public long Id { get; set; }
Hashtag.cs
Original
[JsonProperty("indices")]
public List Indices { get; set; }
Change to
[JsonProperty("indices")]
public List Indices { get; set; }
Fix:
In the "JsonTypes" directory, modify the following files:
User.cs
Original
[JsonProperty("id")]
public int Id { get; set; }
Change to
[JsonProperty("id")]
public long Id { get; set; }
Hashtag.cs
Original
[JsonProperty("indices")]
public List Indices { get; set; }
Change to
[JsonProperty("indices")]
public List Indices { get; set; }