From 63df822861e76b63908400cc2a3338e991e149bf Mon Sep 17 00:00:00 2001 From: Eric Anastas Date: Fri, 16 Mar 2018 20:27:20 -0700 Subject: [PATCH] Changed Place.creationDate and place.ModificationDate from Int32 to Int64 as Jive is returning values larger then Int32.MaxValue --- Net.Pokeshot.JiveSdk/Models/Place.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Net.Pokeshot.JiveSdk/Models/Place.cs b/Net.Pokeshot.JiveSdk/Models/Place.cs index 67f4d33..653150b 100644 --- a/Net.Pokeshot.JiveSdk/Models/Place.cs +++ b/Net.Pokeshot.JiveSdk/Models/Place.cs @@ -35,11 +35,11 @@ public abstract class Place public class PlaceTopic { - public int creationDate { get; set; } + public Int64 creationDate { get; set; } public string displayNameLocalized { get; set; } public bool hidden { get; set; } public string id { get; set; } - public int modificationDate { get; set; } + public Int64 modificationDate { get; set; } public string name { get; set; } } } \ No newline at end of file