format the code so its less crappy looking

This commit is contained in:
Tommy Parnell
2015-09-05 12:32:14 -04:00
parent de595043ed
commit 6cb1d99da6
56 changed files with 5617 additions and 5968 deletions

View File

@@ -13,6 +13,7 @@ namespace Untappd.Net.UnitTests.Authentication
{ {
var t = new AuthenticatedUntappdCredentials(null); var t = new AuthenticatedUntappdCredentials(null);
} }
[Test] [Test]
public void ExpectValid() public void ExpectValid()
{ {

View File

@@ -12,53 +12,49 @@ namespace Untappd.Net.UnitTests.Authentication
[ExpectedException(typeof(ArgumentNullException))] [ExpectedException(typeof(ArgumentNullException))]
public void TestRedirectUserToException1() public void TestRedirectUserToException1()
{ {
AuthenticationHelper.RedirectUserTo(null, "url"); AuthenticationHelper.RedirectUserTo(null, "url");
} }
[Test] [Test]
[ExpectedException(typeof(ArgumentNullException))] [ExpectedException(typeof(ArgumentNullException))]
public void TestRedirectUserToException2() public void TestRedirectUserToException2()
{ {
AuthenticationHelper.RedirectUserTo(new UnAuthenticatedUntappdCredentials("d", "d"), string.Empty); AuthenticationHelper.RedirectUserTo(new UnAuthenticatedUntappdCredentials("d", "d"), string.Empty);
} }
[Test] [Test]
[ExpectedException(typeof(ArgumentNullException))] [ExpectedException(typeof(ArgumentNullException))]
public void TestTokenUrlException1() public void TestTokenUrlException1()
{ {
AuthenticationHelper.TokenUrl(null, "some", "code"); AuthenticationHelper.TokenUrl(null, "some", "code");
} }
[Test] [Test]
[ExpectedException(typeof(ArgumentNullException))] [ExpectedException(typeof(ArgumentNullException))]
public void TestTokenUrlException2() public void TestTokenUrlException2()
{ {
AuthenticationHelper.TokenUrl(new UnAuthenticatedUntappdCredentials("d", "d"), string.Empty, "code"); AuthenticationHelper.TokenUrl(new UnAuthenticatedUntappdCredentials("d", "d"), string.Empty, "code");
} }
[Test] [Test]
[ExpectedException(typeof(ArgumentNullException))] [ExpectedException(typeof(ArgumentNullException))]
public void TestTokenUrlException3() public void TestTokenUrlException3()
{ {
AuthenticationHelper.TokenUrl(new UnAuthenticatedUntappdCredentials("d", "d"), "ds", string.Empty); AuthenticationHelper.TokenUrl(new UnAuthenticatedUntappdCredentials("d", "d"), "ds", string.Empty);
} }
[Test] [Test]
public void TestTokenUrl() public void TestTokenUrl()
{ {
var s = AuthenticationHelper.TokenUrl(new UnAuthenticatedUntappdCredentials("d", "d"), "ds", "code"); var s = AuthenticationHelper.TokenUrl(new UnAuthenticatedUntappdCredentials("d", "d"), "ds", "code");
Assert.AreEqual(s, Constants.OAuthTokenEndPoint + "/?client_id=d&client_secret=d&response_type=code&redirect_url=ds&code=code"); Assert.AreEqual(s, Constants.OAuthTokenEndPoint + "/?client_id=d&client_secret=d&response_type=code&redirect_url=ds&code=code");
} }
[Test] [Test]
public void TestRedirectUrl() public void TestRedirectUrl()
{ {
var s = AuthenticationHelper.RedirectUserTo(new UnAuthenticatedUntappdCredentials("d", "d"), "ds"); var s = AuthenticationHelper.RedirectUserTo(new UnAuthenticatedUntappdCredentials("d", "d"), "ds");
Assert.AreEqual(s, Constants.BaseRequestString + "/?client_id=d&response_type=code&redirect_url=ds"); Assert.AreEqual(s, Constants.BaseRequestString + "/?client_id=d&response_type=code&redirect_url=ds");
} }
} }
} }

View File

@@ -13,6 +13,7 @@ namespace Untappd.Net.UnitTests.Authentication
{ {
var t = new UnAuthenticatedUntappdCredentials(string.Empty, "t"); var t = new UnAuthenticatedUntappdCredentials(string.Empty, "t");
} }
[Test] [Test]
[ExpectedException(typeof(ArgumentNullException))] [ExpectedException(typeof(ArgumentNullException))]
public void ExpectClientSecretException() public void ExpectClientSecretException()

View File

@@ -1,5 +1,6 @@
using NUnit.Framework; using NUnit.Framework;
using Untappd.Net.Exception; using Untappd.Net.Exception;
namespace Untappd.Net.UnitTests.Exception namespace Untappd.Net.UnitTests.Exception
{ {
[TestFixture] [TestFixture]
@@ -11,19 +12,19 @@ namespace Untappd.Net.UnitTests.Exception
{ {
throw new BaseUntappdException(); throw new BaseUntappdException();
} }
[ExpectedException(typeof(BaseUntappdException), ExpectedMessage = "messageHere")] [ExpectedException(typeof(BaseUntappdException), ExpectedMessage = "messageHere")]
[Test] [Test]
public void TestStandardExceptionWithMessage() public void TestStandardExceptionWithMessage()
{ {
throw new BaseUntappdException("messageHere"); throw new BaseUntappdException("messageHere");
} }
[ExpectedException(typeof(BaseUntappdException), ExpectedMessage = "messageHere")] [ExpectedException(typeof(BaseUntappdException), ExpectedMessage = "messageHere")]
[Test] [Test]
public void TestStandardExceptionWithInner() public void TestStandardExceptionWithInner()
{ {
throw new BaseUntappdException("messageHere", new System.Exception("innerException!")); throw new BaseUntappdException("messageHere", new System.Exception("innerException!"));
} }
} }
} }

View File

@@ -12,6 +12,5 @@ namespace Untappd.Net.UnitTests.Exception
{ {
throw new EndpointConfigurationException(); throw new EndpointConfigurationException();
} }
} }
} }

View File

@@ -1,9 +1,8 @@
using System; using System;
using NUnit.Framework;
using Untappd.Net.Exception;
using Moq; using Moq;
using NUnit.Framework;
using RestSharp; using RestSharp;
using Untappd.Net.Exception;
namespace Untappd.Net.UnitTests.Exception namespace Untappd.Net.UnitTests.Exception
{ {
@@ -16,17 +15,16 @@ namespace Untappd.Net.UnitTests.Exception
var mockRequest = new Mock<IRestRequest>(); var mockRequest = new Mock<IRestRequest>();
var mockResponse = new Mock<IRestResponse>(); var mockResponse = new Mock<IRestResponse>();
Assert.Throws<ArgumentNullException>(()=>{ Assert.Throws<ArgumentNullException>(() =>
{
var t = new HttpErrorException(mockRequest.Object, null); var t = new HttpErrorException(mockRequest.Object, null);
Console.WriteLine(t); Console.WriteLine(t);
}); });
Assert.Throws<ArgumentNullException>(()=>{ Assert.Throws<ArgumentNullException>(() =>
{
var t = new HttpErrorException(null, mockResponse.Object); var t = new HttpErrorException(null, mockResponse.Object);
Console.WriteLine(t); Console.WriteLine(t);
}); });
} }
} }
} }

View File

@@ -6,10 +6,10 @@ using Moq;
using NUnit.Framework; using NUnit.Framework;
using RestSharp; using RestSharp;
using Untappd.Net.Authentication; using Untappd.Net.Authentication;
using Untappd.Net.Exception;
using Untappd.Net.Request; using Untappd.Net.Request;
using Untappd.Net.Responses.Actions; using Untappd.Net.Responses.Actions;
using Untappd.Net.Responses.BeerInfo; using Untappd.Net.Responses.BeerInfo;
using Untappd.Net.Exception;
namespace Untappd.Net.UnitTests.Request namespace Untappd.Net.UnitTests.Request
{ {
@@ -94,6 +94,7 @@ namespace Untappd.Net.UnitTests.Request
Assert.IsTrue(constructorTest.Client != null); Assert.IsTrue(constructorTest.Client != null);
Assert.IsTrue(constructorTest.Request != null); Assert.IsTrue(constructorTest.Request != null);
} }
[Test] [Test]
public void ConfirmConfigureGetRequestClearsParams() public void ConfirmConfigureGetRequestClearsParams()
{ {

View File

@@ -52,10 +52,6 @@ namespace Untappd.Net.UnitTests.Responses.Actions
checkin.Rating = 2; checkin.Rating = 2;
Assert.IsTrue(checkin.BodyParameters.ContainsKey("rating")); Assert.IsTrue(checkin.BodyParameters.ContainsKey("rating"));
Assert.AreEqual(checkin.BodyParameters["rating"], 2); Assert.AreEqual(checkin.BodyParameters["rating"], 2);
}
}
} }
} }

View File

@@ -35,7 +35,6 @@ namespace Untappd.Net.UnitTests.Responses.Actions
Assert.IsNotNullOrEmpty(removeWish.EndPoint); Assert.IsNotNullOrEmpty(removeWish.EndPoint);
Assert.AreEqual(removeWish.BodyParameters["bid"], 1); Assert.AreEqual(removeWish.BodyParameters["bid"], 1);
var addWish = new AddToWishList(1); var addWish = new AddToWishList(1);
Assert.IsNotNullOrEmpty(addWish.RequestMethod.ToString()); Assert.IsNotNullOrEmpty(addWish.RequestMethod.ToString());
Assert.IsNotNullOrEmpty(addWish.EndPoint); Assert.IsNotNullOrEmpty(addWish.EndPoint);

View File

@@ -9,7 +9,6 @@ namespace Untappd.Net.UnitTests.Responses
[TestFixture] [TestFixture]
public class TestResponseEndpoints public class TestResponseEndpoints
{ {
/// <summary> /// <summary>
/// Run through all the endpoints to make sure they all atleast do not error out. /// Run through all the endpoints to make sure they all atleast do not error out.
/// This is so we can get a high code coverage, while also covering new types that get added. /// This is so we can get a high code coverage, while also covering new types that get added.
@@ -17,17 +16,16 @@ namespace Untappd.Net.UnitTests.Responses
[Test] [Test]
public void RunAllEndpoints() public void RunAllEndpoints()
{ {
var objects = Assembly.GetAssembly(typeof(IRequest)).GetTypes().Where(myType => var objects = Assembly.GetAssembly(typeof(IRequest)).GetTypes().Where(myType =>
myType.IsClass myType.IsClass
&& !myType.IsAbstract && !myType.IsAbstract
&& myType.GetInterface("IRequest") != null).Select(type => (IRequest)Activator.CreateInstance(type)).ToList(); && myType.GetInterface("IRequest") != null).Select(type => (IRequest)Activator.CreateInstance(type)).ToList();
objects.ForEach(a => Assert.IsNotNullOrEmpty(a.EndPoint("t"))); objects.ForEach(a => Assert.IsNotNullOrEmpty(a.EndPoint("t")));
} }
[Test] [Test]
public void RunAllEndpointsWithEmptyString() public void RunAllEndpointsWithEmptyString()
{ {
var objects = Assembly.GetAssembly(typeof(IRequest)).GetTypes().Where(myType => var objects = Assembly.GetAssembly(typeof(IRequest)).GetTypes().Where(myType =>
myType.IsClass myType.IsClass
&& !myType.IsAbstract && !myType.IsAbstract

View File

@@ -1,5 +1,4 @@
namespace Untappd.Net.Authentication
namespace Untappd.Net.Authentication
{ {
public interface IUnAuthenticatedUntappdCredentials : IUntappdCredentials public interface IUnAuthenticatedUntappdCredentials : IUntappdCredentials
{ {

View File

@@ -12,7 +12,6 @@ namespace Untappd.Net.Exception
public EndpointConfigurationException() public EndpointConfigurationException()
: base("Invalid endpoint configured") : base("Invalid endpoint configured")
{ {
} }
} }
} }

View File

@@ -16,6 +16,7 @@ namespace Untappd.Net.Exception
} }
private readonly string _message; private readonly string _message;
public HttpErrorException(IRestRequest request, IRestResponse response) public HttpErrorException(IRestRequest request, IRestResponse response)
{ {
if (request == null) if (request == null)

View File

@@ -1,12 +1,10 @@
using System.Reflection; // General Information about an assembly is controlled through the following
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
// associated with an assembly. // associated with an assembly.
using System; using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Untappd.Net")] [assembly: AssemblyTitle("Untappd.Net")]
[assembly: AssemblyDescription("C# Untappd Wrapper")] [assembly: AssemblyDescription("C# Untappd Wrapper")]

View File

@@ -5,6 +5,7 @@ namespace Untappd.Net.Request
public abstract class BasicRequest public abstract class BasicRequest
{ {
protected abstract string EndPointWithConfiguration { get; } protected abstract string EndPointWithConfiguration { get; }
/// <summary> /// <summary>
/// Pass in the parameter into the request...ie username, brewery, etc. /// Pass in the parameter into the request...ie username, brewery, etc.
/// </summary> /// </summary>

View File

@@ -14,6 +14,7 @@ namespace Untappd.Net.Request
internal IRestClient Client; internal IRestClient Client;
internal IRestRequest Request; internal IRestRequest Request;
public bool FailFast { get; set; } public bool FailFast { get; set; }
/// <summary> /// <summary>
/// Event to listen to when failFast is set to false /// Event to listen to when failFast is set to false
/// This allows you to capture the excpetion, before its swallowed /// This allows you to capture the excpetion, before its swallowed
@@ -65,19 +66,19 @@ namespace Untappd.Net.Request
return this; return this;
} }
TResult ExecuteRequest<TResult>() private TResult ExecuteRequest<TResult>()
where TResult : class where TResult : class
{ {
return ProcessExecution<TResult>(Client.Execute(Request)); return ProcessExecution<TResult>(Client.Execute(Request));
} }
async Task<TResult> ExecuteRequestAsync<TResult>() private async Task<TResult> ExecuteRequestAsync<TResult>()
where TResult : class where TResult : class
{ {
return ProcessExecution<TResult>(await Client.ExecuteTaskAsync(Request)); return ProcessExecution<TResult>(await Client.ExecuteTaskAsync(Request));
} }
TResult ProcessExecution<TResult>(IRestResponse response) private TResult ProcessExecution<TResult>(IRestResponse response)
where TResult : class where TResult : class
{ {
//if the return type is not 200 throw errors //if the return type is not 200 throw errors

View File

@@ -1,7 +1,6 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Untappd.Net.Authentication; using Untappd.Net.Authentication;
using Untappd.Net.Exception;
namespace Untappd.Net.Request namespace Untappd.Net.Request
{ {

View File

@@ -1,6 +1,6 @@
using System.Threading.Tasks; using System;
using System.Threading.Tasks;
using Untappd.Net.Authentication; using Untappd.Net.Authentication;
using System;
namespace Untappd.Net.Request namespace Untappd.Net.Request
{ {

View File

@@ -10,6 +10,7 @@ namespace Untappd.Net.Responses.Actions
public Method RequestMethod { get { return Method.GET; } } public Method RequestMethod { get { return Method.GET; } }
public string EndPoint { get; private set; } public string EndPoint { get; private set; }
public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } } public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } }
public AcceptFriend(string target_id) public AcceptFriend(string target_id)
{ {
if (string.IsNullOrWhiteSpace(target_id)) if (string.IsNullOrWhiteSpace(target_id))

View File

@@ -10,6 +10,7 @@ namespace Untappd.Net.Responses.Actions
public Method RequestMethod { get { return Method.POST; } } public Method RequestMethod { get { return Method.POST; } }
public string EndPoint { get; private set; } public string EndPoint { get; private set; }
public IDictionary<string, object> BodyParameters { get; private set; } public IDictionary<string, object> BodyParameters { get; private set; }
public AddComment(string checkinId, string shout) public AddComment(string checkinId, string shout)
{ {
if (string.IsNullOrWhiteSpace(checkinId)) if (string.IsNullOrWhiteSpace(checkinId))
@@ -26,7 +27,6 @@ namespace Untappd.Net.Responses.Actions
} }
EndPoint = string.Format("v4/checkin/addcomment/{0}", checkinId); EndPoint = string.Format("v4/checkin/addcomment/{0}", checkinId);
BodyParameters = new Dictionary<string, object> { { shout, shout } }; BodyParameters = new Dictionary<string, object> { { shout, shout } };
} }
} }
} }

View File

@@ -10,6 +10,7 @@ namespace Untappd.Net.Responses.Actions
public Method RequestMethod { get { return Method.GET; } } public Method RequestMethod { get { return Method.GET; } }
public string EndPoint { get; private set; } public string EndPoint { get; private set; }
public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } } public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } }
public AddFriend(string target_id) public AddFriend(string target_id)
{ {
if (string.IsNullOrWhiteSpace(target_id)) if (string.IsNullOrWhiteSpace(target_id))

View File

@@ -9,10 +9,10 @@ namespace Untappd.Net.Responses.Actions
public Method RequestMethod { get { return Method.GET; } } public Method RequestMethod { get { return Method.GET; } }
public string EndPoint { get { return "v4/user/wishlist/add"; } } public string EndPoint { get { return "v4/user/wishlist/add"; } }
public IDictionary<string, object> BodyParameters { get; private set; } public IDictionary<string, object> BodyParameters { get; private set; }
public AddToWishList(int beerId) public AddToWishList(int beerId)
{ {
BodyParameters = new Dictionary<string, object>() { { "bid", beerId } }; BodyParameters = new Dictionary<string, object>() { { "bid", beerId } };
} }
} }
} }

View File

@@ -78,7 +78,6 @@ namespace Untappd.Net.Responses.Actions
} }
} }
public CheckIn(string gmtOffset, string timezone, int bid) public CheckIn(string gmtOffset, string timezone, int bid)
{ {
if (string.IsNullOrWhiteSpace(gmtOffset)) if (string.IsNullOrWhiteSpace(gmtOffset))

View File

@@ -10,6 +10,7 @@ namespace Untappd.Net.Responses.Actions
public Method RequestMethod { get { return Method.GET; } } public Method RequestMethod { get { return Method.GET; } }
public string EndPoint { get; private set; } public string EndPoint { get; private set; }
public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } } public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } }
public RemoveFriend(string target_id) public RemoveFriend(string target_id)
{ {
if (string.IsNullOrWhiteSpace(target_id)) if (string.IsNullOrWhiteSpace(target_id))

View File

@@ -9,10 +9,10 @@ namespace Untappd.Net.Responses.Actions
public Method RequestMethod { get { return Method.GET; } } public Method RequestMethod { get { return Method.GET; } }
public string EndPoint { get { return "v4/user/wishlist/delete"; } } public string EndPoint { get { return "v4/user/wishlist/delete"; } }
public IDictionary<string, object> BodyParameters { get; private set; } public IDictionary<string, object> BodyParameters { get; private set; }
public RemoveFromWishList(int beerId) public RemoveFromWishList(int beerId)
{ {
BodyParameters = new Dictionary<string, object>() { { "bid", beerId } }; BodyParameters = new Dictionary<string, object>() { { "bid", beerId } };
} }
} }
} }

View File

@@ -10,6 +10,7 @@ namespace Untappd.Net.Responses.Actions
public Method RequestMethod { get { return Method.POST; } } public Method RequestMethod { get { return Method.POST; } }
public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } } public IDictionary<string, object> BodyParameters { get { return new Dictionary<string, object>(); } }
public string EndPoint { get; private set; } public string EndPoint { get; private set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.BeerInfo namespace Untappd.Net.Responses.BeerInfo
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Stats public class Stats
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -85,7 +78,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -98,7 +90,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -114,7 +105,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -137,7 +127,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Photo public class Photo
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -153,7 +142,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Beer2 public class Beer2
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -196,7 +184,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Contact2 public class Contact2
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -209,7 +196,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Location2 public class Location2
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -225,7 +211,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Brewery2 public class Brewery2
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -254,7 +239,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class User public class User
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -279,7 +263,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Item public class Item
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -307,7 +290,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Media public class Media
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -317,7 +299,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class User2 public class User2
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -358,7 +339,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Beer3 public class Beer3
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -401,7 +381,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Contact3 public class Contact3
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -414,7 +393,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Location3 public class Location3
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -430,7 +408,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Brewery3 public class Brewery3
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -459,7 +436,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Comments public class Comments
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -472,7 +448,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class User3 public class User3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -506,7 +481,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Item3 public class Item3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -525,7 +499,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Toasts public class Toasts
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -541,7 +514,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Photo2 public class Photo2
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -557,7 +529,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Item4 public class Item4
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -567,7 +538,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Media2 public class Media2
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -577,7 +547,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Source public class Source
{ {
[JsonProperty("app_name")] [JsonProperty("app_name")]
public string AppName { get; set; } public string AppName { get; set; }
@@ -587,7 +556,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class BadgeImage public class BadgeImage
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -600,7 +568,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Item5 public class Item5
{ {
[JsonProperty("badge_id")] [JsonProperty("badge_id")]
public int BadgeId { get; set; } public int BadgeId { get; set; }
@@ -622,7 +589,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Badges public class Badges
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -632,7 +598,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Item2 public class Item2
{ {
[JsonProperty("checkin_id")] [JsonProperty("checkin_id")]
public int CheckinId { get; set; } public int CheckinId { get; set; }
@@ -675,7 +640,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Checkins public class Checkins
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -685,7 +649,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Beer4 public class Beer4
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -713,7 +676,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Contact4 public class Contact4
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -729,7 +691,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Location4 public class Location4
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -745,7 +706,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Brewery4 public class Brewery4
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -774,7 +734,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Friends public class Friends
{ {
[JsonProperty("items")] [JsonProperty("items")]
public IList<object> Items { get; set; } public IList<object> Items { get; set; }
@@ -784,7 +743,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Item6 public class Item6
{ {
[JsonProperty("rating_score")] [JsonProperty("rating_score")]
public double RatingScore { get; set; } public double RatingScore { get; set; }
@@ -800,7 +758,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Similar public class Similar
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -810,7 +767,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Friends2 public class Friends2
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -820,7 +776,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Beer5 public class Beer5
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -842,14 +797,12 @@ namespace Untappd.Net.Responses.BeerInfo
public class Item7 public class Item7
{ {
[JsonProperty("beer")] [JsonProperty("beer")]
public Beer5 Beer { get; set; } public Beer5 Beer { get; set; }
} }
public class Vintages public class Vintages
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -859,7 +812,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -930,7 +882,6 @@ namespace Untappd.Net.Responses.BeerInfo
public class Response public class Response
{ {
[JsonProperty("beer")] [JsonProperty("beer")]
public Beer Beer { get; set; } public Beer Beer { get; set; }
} }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.BeerSearch namespace Untappd.Net.Responses.BeerSearch
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -106,7 +99,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -122,7 +114,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -138,7 +129,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -166,7 +156,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Item public class Item
{ {
[JsonProperty("checkin_count")] [JsonProperty("checkin_count")]
public int CheckinCount { get; set; } public int CheckinCount { get; set; }
@@ -185,7 +174,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Beers public class Beers
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -195,7 +183,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Homebrew public class Homebrew
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -205,7 +192,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Breweries public class Breweries
{ {
[JsonProperty("items")] [JsonProperty("items")]
public IList<object> Items { get; set; } public IList<object> Items { get; set; }
@@ -215,7 +201,6 @@ namespace Untappd.Net.Responses.BeerSearch
public class Response public class Response
{ {
[JsonProperty("message")] [JsonProperty("message")]
public string Message { get; set; } public string Message { get; set; }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.BreweryInfo namespace Untappd.Net.Responses.BreweryInfo
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class ClaimedStatus public class ClaimedStatus
{ {
[JsonProperty("is_claimed")] [JsonProperty("is_claimed")]
public bool IsClaimed { get; set; } public bool IsClaimed { get; set; }
@@ -91,7 +84,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -107,7 +99,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Location public class Location
{ {
[JsonProperty("brewery_address")] [JsonProperty("brewery_address")]
public string BreweryAddress { get; set; } public string BreweryAddress { get; set; }
@@ -126,7 +117,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Rating public class Rating
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -136,7 +126,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Stats public class Stats
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -158,7 +147,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Owners public class Owners
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -168,7 +156,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Photo public class Photo
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -184,7 +171,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -209,7 +195,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Contact2 public class Contact2
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -225,7 +210,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Location2 public class Location2
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -241,7 +225,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Brewery2 public class Brewery2
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -269,7 +252,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class User public class User
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -294,7 +276,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Item public class Item
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -322,7 +303,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Media public class Media
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -332,7 +312,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class User2 public class User2
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -372,7 +351,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Beer2 public class Beer2
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -400,7 +378,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Contact3 public class Contact3
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -416,7 +393,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Location3 public class Location3
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -432,7 +408,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Brewery3 public class Brewery3
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -460,7 +435,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Comments public class Comments
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -473,7 +447,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class User3 public class User3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -507,7 +480,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Item3 public class Item3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -526,7 +498,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Toasts public class Toasts
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -542,7 +513,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Photo2 public class Photo2
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -558,7 +528,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Item4 public class Item4
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -568,7 +537,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Media2 public class Media2
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -578,7 +546,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Source public class Source
{ {
[JsonProperty("app_name")] [JsonProperty("app_name")]
public string AppName { get; set; } public string AppName { get; set; }
@@ -588,7 +555,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class BadgeImage public class BadgeImage
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -601,7 +567,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Item5 public class Item5
{ {
[JsonProperty("badge_id")] [JsonProperty("badge_id")]
public int BadgeId { get; set; } public int BadgeId { get; set; }
@@ -623,7 +588,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Badges public class Badges
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -633,7 +597,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Item2 public class Item2
{ {
[JsonProperty("checkin_id")] [JsonProperty("checkin_id")]
public int CheckinId { get; set; } public int CheckinId { get; set; }
@@ -676,7 +639,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Checkins public class Checkins
{ {
[JsonProperty("mem")] [JsonProperty("mem")]
public bool Mem { get; set; } public bool Mem { get; set; }
@@ -689,7 +651,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Beer3 public class Beer3
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -735,7 +696,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Contact4 public class Contact4
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -751,7 +711,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Location4 public class Location4
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -767,7 +726,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Brewery4 public class Brewery4
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -795,7 +753,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Item6 public class Item6
{ {
[JsonProperty("has_had")] [JsonProperty("has_had")]
public bool HasHad { get; set; } public bool HasHad { get; set; }
@@ -814,7 +771,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class BeerList public class BeerList
{ {
[JsonProperty("is_super")] [JsonProperty("is_super")]
public bool IsSuper { get; set; } public bool IsSuper { get; set; }
@@ -836,7 +792,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -901,7 +856,6 @@ namespace Untappd.Net.Responses.BreweryInfo
public class Response public class Response
{ {
[JsonProperty("brewery")] [JsonProperty("brewery")]
public Brewery Brewery { get; set; } public Brewery Brewery { get; set; }
} }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.BrewerySearch namespace Untappd.Net.Responses.BrewerySearch
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.BrewerySearch
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.BrewerySearch
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.BrewerySearch
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.BrewerySearch
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.BrewerySearch
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -85,7 +78,6 @@ namespace Untappd.Net.Responses.BrewerySearch
public class Brewery2 public class Brewery2
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -107,14 +99,12 @@ namespace Untappd.Net.Responses.BrewerySearch
public class Item public class Item
{ {
[JsonProperty("brewery")] [JsonProperty("brewery")]
public Brewery2 Brewery { get; set; } public Brewery2 Brewery { get; set; }
} }
public class Brewery public class Brewery
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -124,7 +114,6 @@ namespace Untappd.Net.Responses.BrewerySearch
public class Response public class Response
{ {
[JsonProperty("search_type")] [JsonProperty("search_type")]
public string SearchType { get; set; } public string SearchType { get; set; }

View File

@@ -6,7 +6,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -16,7 +15,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -26,7 +24,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -39,7 +36,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -58,7 +54,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -68,7 +63,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class User public class User
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -102,7 +96,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -130,7 +123,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -146,7 +138,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -162,7 +153,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -190,7 +180,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class User2 public class User2
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -230,7 +219,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Item2 public class Item2
{ {
[JsonProperty("user")] [JsonProperty("user")]
public User2 User { get; set; } public User2 User { get; set; }
@@ -258,7 +246,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Comments public class Comments
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -271,7 +258,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class User3 public class User3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -305,7 +291,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Item3 public class Item3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -324,7 +309,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Toasts public class Toasts
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -340,7 +324,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Photo public class Photo
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -356,7 +339,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Item4 public class Item4
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -366,7 +348,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Media public class Media
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -376,7 +357,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Source public class Source
{ {
[JsonProperty("app_name")] [JsonProperty("app_name")]
public string AppName { get; set; } public string AppName { get; set; }
@@ -386,7 +366,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class BadgeImage public class BadgeImage
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -399,7 +378,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Item5 public class Item5
{ {
[JsonProperty("badge_id")] [JsonProperty("badge_id")]
public int BadgeId { get; set; } public int BadgeId { get; set; }
@@ -421,7 +399,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Badges public class Badges
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -431,7 +408,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Item public class Item
{ {
[JsonProperty("checkin_id")] [JsonProperty("checkin_id")]
public int CheckinId { get; set; } public int CheckinId { get; set; }
@@ -474,7 +450,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Checkins public class Checkins
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -484,7 +459,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Pagination public class Pagination
{ {
[JsonProperty("next_url")] [JsonProperty("next_url")]
public string NextUrl { get; set; } public string NextUrl { get; set; }
@@ -497,7 +471,6 @@ namespace Untappd.Net.Responses.Feeds.ActivityFeed
public class Response public class Response
{ {
[JsonProperty("mg")] [JsonProperty("mg")]
public bool Mg { get; set; } public bool Mg { get; set; }

View File

@@ -6,7 +6,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -16,7 +15,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -26,7 +24,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -39,7 +36,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -58,7 +54,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -68,7 +63,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Pagination public class Pagination
{ {
[JsonProperty("since_url")] [JsonProperty("since_url")]
public string SinceUrl { get; set; } public string SinceUrl { get; set; }
@@ -81,14 +75,12 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Contact public class Contact
{ {
[JsonProperty("facebook")] [JsonProperty("facebook")]
public string Facebook { get; set; } public string Facebook { get; set; }
} }
public class User public class User
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -128,7 +120,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -156,7 +147,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Contact2 public class Contact2
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -172,7 +162,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -188,7 +177,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -216,7 +204,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Item2 public class Item2
{ {
[JsonProperty("category_name")] [JsonProperty("category_name")]
public string CategoryName { get; set; } public string CategoryName { get; set; }
@@ -229,7 +216,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Categories public class Categories
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -239,7 +225,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Location2 public class Location2
{ {
[JsonProperty("venue_address")] [JsonProperty("venue_address")]
public string VenueAddress { get; set; } public string VenueAddress { get; set; }
@@ -261,7 +246,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Contact3 public class Contact3
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -271,7 +255,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Foursquare public class Foursquare
{ {
[JsonProperty("foursquare_id")] [JsonProperty("foursquare_id")]
public string FoursquareId { get; set; } public string FoursquareId { get; set; }
@@ -281,7 +264,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class VenueIcon public class VenueIcon
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -294,7 +276,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Venue public class Venue
{ {
[JsonProperty("venue_id")] [JsonProperty("venue_id")]
public int VenueId { get; set; } public int VenueId { get; set; }
@@ -328,7 +309,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Comments public class Comments
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -341,7 +321,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Toasts public class Toasts
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -357,7 +336,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Photo public class Photo
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -373,7 +351,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Item3 public class Item3
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -383,7 +360,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Media public class Media
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -393,7 +369,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Source public class Source
{ {
[JsonProperty("app_name")] [JsonProperty("app_name")]
public string AppName { get; set; } public string AppName { get; set; }
@@ -403,7 +378,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Badges public class Badges
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -413,7 +387,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Item public class Item
{ {
[JsonProperty("checkin_id")] [JsonProperty("checkin_id")]
public int CheckinId { get; set; } public int CheckinId { get; set; }
@@ -457,7 +430,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Checkins public class Checkins
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -467,7 +439,6 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed
public class Response public class Response
{ {
[JsonProperty("pagination")] [JsonProperty("pagination")]
public Pagination Pagination { get; set; } public Pagination Pagination { get; set; }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.UserBadges namespace Untappd.Net.Responses.UserBadges
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.UserBadges
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.UserBadges
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.UserBadges
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.UserBadges
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.UserBadges
public class Media public class Media
{ {
[JsonProperty("badge_image_sm")] [JsonProperty("badge_image_sm")]
public string BadgeImageSm { get; set; } public string BadgeImageSm { get; set; }
@@ -82,7 +75,6 @@ namespace Untappd.Net.Responses.UserBadges
public class BadgePackProgress public class BadgePackProgress
{ {
[JsonProperty("completed")] [JsonProperty("completed")]
public int Completed { get; set; } public int Completed { get; set; }
@@ -131,7 +123,6 @@ namespace Untappd.Net.Responses.UserBadges
public class Item public class Item
{ {
[JsonProperty("user_badge_id")] [JsonProperty("user_badge_id")]
public int UserBadgeId { get; set; } public int UserBadgeId { get; set; }
@@ -192,7 +183,6 @@ namespace Untappd.Net.Responses.UserBadges
public class Response public class Response
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.UserDistinctBeer namespace Untappd.Net.Responses.UserDistinctBeer
{ {
public sealed class ResponseTime public sealed class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -83,7 +78,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -99,7 +93,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -115,7 +108,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -143,7 +135,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class Item public class Item
{ {
[JsonProperty("first_checkin_id")] [JsonProperty("first_checkin_id")]
public int FirstCheckinId { get; set; } public int FirstCheckinId { get; set; }
@@ -177,7 +168,6 @@ namespace Untappd.Net.Responses.UserDistinctBeer
public class Beers public class Beers
{ {
[JsonProperty("sort")] [JsonProperty("sort")]
public string Sort { get; set; } public string Sort { get; set; }
@@ -195,12 +185,16 @@ namespace Untappd.Net.Responses.UserDistinctBeer
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
[JsonProperty("toasts")] [JsonProperty("toasts")]
public int Toasts { get; set; } public int Toasts { get; set; }
[JsonProperty("friends")] [JsonProperty("friends")]
public int Friends { get; set; } public int Friends { get; set; }
[JsonProperty("messages")] [JsonProperty("messages")]
public int Messages { get; set; } public int Messages { get; set; }
[JsonProperty("news")] [JsonProperty("news")]
public int news { get; set; } public int news { get; set; }
} }
@@ -209,13 +203,13 @@ namespace Untappd.Net.Responses.UserDistinctBeer
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
[JsonProperty("unread_count")] [JsonProperty("unread_count")]
public UnreadCount UnreadCount { get; set; } public UnreadCount UnreadCount { get; set; }
} }
public class Response public class Response
{ {
[JsonProperty("is_search")] [JsonProperty("is_search")]
public bool IsSearch { get; set; } public bool IsSearch { get; set; }
@@ -237,5 +231,4 @@ namespace Untappd.Net.Responses.UserDistinctBeer
[JsonProperty("response")] [JsonProperty("response")]
public Response Response { get; set; } public Response Response { get; set; }
} }
} }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.UserFriends namespace Untappd.Net.Responses.UserFriends
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.UserFriends
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.UserFriends
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.UserFriends
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.UserFriends
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.UserFriends
public class User public class User
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -100,7 +93,6 @@ namespace Untappd.Net.Responses.UserFriends
public class MutualFriends public class MutualFriends
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -110,7 +102,6 @@ namespace Untappd.Net.Responses.UserFriends
public class Item public class Item
{ {
[JsonProperty("friendship_hash")] [JsonProperty("friendship_hash")]
public string FriendshipHash { get; set; } public string FriendshipHash { get; set; }
@@ -126,7 +117,6 @@ namespace Untappd.Net.Responses.UserFriends
public class Response public class Response
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.UserInfo namespace Untappd.Net.Responses.UserInfo
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.UserInfo
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.UserInfo
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Stats public class Stats
{ {
[JsonProperty("total_badges")] [JsonProperty("total_badges")]
public int TotalBadges { get; set; } public int TotalBadges { get; set; }
@@ -94,7 +87,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -122,7 +114,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -138,7 +129,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -154,7 +144,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -182,7 +171,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item public class Item
{ {
[JsonProperty("beer")] [JsonProperty("beer")]
public Beer Beer { get; set; } public Beer Beer { get; set; }
@@ -192,7 +180,6 @@ namespace Untappd.Net.Responses.UserInfo
public class RecentBrews public class RecentBrews
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -202,7 +189,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Contact2 public class Contact2
{ {
[JsonProperty("facebook")] [JsonProperty("facebook")]
public string Facebook { get; set; } public string Facebook { get; set; }
@@ -212,7 +198,6 @@ namespace Untappd.Net.Responses.UserInfo
public class User2 public class User2
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -252,7 +237,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Beer2 public class Beer2
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -280,7 +264,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Contact3 public class Contact3
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -296,7 +279,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Location2 public class Location2
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -312,7 +294,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Brewery2 public class Brewery2
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -340,7 +321,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item3 public class Item3
{ {
[JsonProperty("category_name")] [JsonProperty("category_name")]
public string CategoryName { get; set; } public string CategoryName { get; set; }
@@ -353,7 +333,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Categories public class Categories
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -363,7 +342,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Location3 public class Location3
{ {
[JsonProperty("venue_address")] [JsonProperty("venue_address")]
public string VenueAddress { get; set; } public string VenueAddress { get; set; }
@@ -385,7 +363,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Contact4 public class Contact4
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -395,7 +372,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Foursquare public class Foursquare
{ {
[JsonProperty("foursquare_id")] [JsonProperty("foursquare_id")]
public string FoursquareId { get; set; } public string FoursquareId { get; set; }
@@ -405,7 +381,6 @@ namespace Untappd.Net.Responses.UserInfo
public class VenueIcon public class VenueIcon
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -418,7 +393,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Venue public class Venue
{ {
[JsonProperty("venue_id")] [JsonProperty("venue_id")]
public int VenueId { get; set; } public int VenueId { get; set; }
@@ -452,7 +426,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Comments public class Comments
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -465,7 +438,6 @@ namespace Untappd.Net.Responses.UserInfo
public class User3 public class User3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -499,7 +471,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item4 public class Item4
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -518,7 +489,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Toasts public class Toasts
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -534,7 +504,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Photo public class Photo
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -550,7 +519,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item5 public class Item5
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -560,7 +528,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Media public class Media
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -570,7 +537,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Source public class Source
{ {
[JsonProperty("app_name")] [JsonProperty("app_name")]
public string AppName { get; set; } public string AppName { get; set; }
@@ -580,7 +546,6 @@ namespace Untappd.Net.Responses.UserInfo
public class BadgeImage public class BadgeImage
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -593,7 +558,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item6 public class Item6
{ {
[JsonProperty("badge_id")] [JsonProperty("badge_id")]
public int BadgeId { get; set; } public int BadgeId { get; set; }
@@ -615,7 +579,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Badges public class Badges
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -625,7 +588,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item2 public class Item2
{ {
[JsonProperty("checkin_id")] [JsonProperty("checkin_id")]
public int CheckinId { get; set; } public int CheckinId { get; set; }
@@ -669,7 +631,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Checkins public class Checkins
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -679,7 +640,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Photo2 public class Photo2
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -695,7 +655,6 @@ namespace Untappd.Net.Responses.UserInfo
public class User4 public class User4
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -726,7 +685,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Beer3 public class Beer3
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -754,7 +712,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Contact5 public class Contact5
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -770,7 +727,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Location4 public class Location4
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -786,7 +742,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Brewery3 public class Brewery3
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -814,7 +769,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item8 public class Item8
{ {
[JsonProperty("category_name")] [JsonProperty("category_name")]
public string CategoryName { get; set; } public string CategoryName { get; set; }
@@ -827,7 +781,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Categories2 public class Categories2
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -837,7 +790,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Location5 public class Location5
{ {
[JsonProperty("venue_address")] [JsonProperty("venue_address")]
public string VenueAddress { get; set; } public string VenueAddress { get; set; }
@@ -859,7 +811,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Contact6 public class Contact6
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -869,7 +820,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Foursquare2 public class Foursquare2
{ {
[JsonProperty("foursquare_id")] [JsonProperty("foursquare_id")]
public string FoursquareId { get; set; } public string FoursquareId { get; set; }
@@ -879,7 +829,6 @@ namespace Untappd.Net.Responses.UserInfo
public class VenueIcon2 public class VenueIcon2
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -892,7 +841,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Venue2 public class Venue2
{ {
[JsonProperty("venue_id")] [JsonProperty("venue_id")]
public int VenueId { get; set; } public int VenueId { get; set; }
@@ -926,7 +874,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Item7 public class Item7
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -954,7 +901,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Media2 public class Media2
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -964,7 +910,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Contact7 public class Contact7
{ {
[JsonProperty("facebook")] [JsonProperty("facebook")]
public int Facebook { get; set; } public int Facebook { get; set; }
@@ -974,7 +919,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Badge public class Badge
{ {
[JsonProperty("badges_to_facebook")] [JsonProperty("badges_to_facebook")]
public int BadgesToFacebook { get; set; } public int BadgesToFacebook { get; set; }
@@ -984,7 +928,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Checkin public class Checkin
{ {
[JsonProperty("checkin_to_facebook")] [JsonProperty("checkin_to_facebook")]
public int CheckinToFacebook { get; set; } public int CheckinToFacebook { get; set; }
@@ -997,14 +940,12 @@ namespace Untappd.Net.Responses.UserInfo
public class Navigation public class Navigation
{ {
[JsonProperty("default_to_checkin")] [JsonProperty("default_to_checkin")]
public int DefaultToCheckin { get; set; } public int DefaultToCheckin { get; set; }
} }
public class Settings public class Settings
{ {
[JsonProperty("badge")] [JsonProperty("badge")]
public Badge Badge { get; set; } public Badge Badge { get; set; }
@@ -1021,7 +962,6 @@ namespace Untappd.Net.Responses.UserInfo
public class User public class User
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -1098,7 +1038,6 @@ namespace Untappd.Net.Responses.UserInfo
public class Response public class Response
{ {
[JsonProperty("user")] [JsonProperty("user")]
public User User { get; set; } public User User { get; set; }
} }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.UserWishlist namespace Untappd.Net.Responses.UserWishlist
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -115,7 +108,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -131,7 +123,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Location public class Location
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -147,7 +138,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -175,7 +165,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Item public class Item
{ {
[JsonProperty("created_at")] [JsonProperty("created_at")]
public string CreatedAt { get; set; } public string CreatedAt { get; set; }
@@ -191,7 +180,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Beers public class Beers
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -201,7 +189,6 @@ namespace Untappd.Net.Responses.UserWishlist
public class Response public class Response
{ {
[JsonProperty("sort")] [JsonProperty("sort")]
public string Sort { get; set; } public string Sort { get; set; }

View File

@@ -4,10 +4,8 @@ using Untappd.Net.Request;
namespace Untappd.Net.Responses.VenueInfo namespace Untappd.Net.Responses.VenueInfo
{ {
public class ResponseTime public class ResponseTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -17,7 +15,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class InitTime public class InitTime
{ {
[JsonProperty("time")] [JsonProperty("time")]
public double Time { get; set; } public double Time { get; set; }
@@ -27,7 +24,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Meta public class Meta
{ {
[JsonProperty("code")] [JsonProperty("code")]
public int Code { get; set; } public int Code { get; set; }
@@ -40,7 +36,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class UnreadCount public class UnreadCount
{ {
[JsonProperty("comments")] [JsonProperty("comments")]
public int Comments { get; set; } public int Comments { get; set; }
@@ -59,7 +54,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Notifications public class Notifications
{ {
[JsonProperty("type")] [JsonProperty("type")]
public string Type { get; set; } public string Type { get; set; }
@@ -69,7 +63,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item public class Item
{ {
[JsonProperty("category_name")] [JsonProperty("category_name")]
public string CategoryName { get; set; } public string CategoryName { get; set; }
@@ -82,7 +75,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Categories public class Categories
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -92,7 +84,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Stats public class Stats
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -111,7 +102,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class VenueIcon public class VenueIcon
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -124,7 +114,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Location public class Location
{ {
[JsonProperty("venue_address")] [JsonProperty("venue_address")]
public string VenueAddress { get; set; } public string VenueAddress { get; set; }
@@ -146,7 +135,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Contact public class Contact
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -156,7 +144,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Foursquare public class Foursquare
{ {
[JsonProperty("foursquare_id")] [JsonProperty("foursquare_id")]
public string FoursquareId { get; set; } public string FoursquareId { get; set; }
@@ -166,7 +153,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Photo public class Photo
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -182,7 +168,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Beer public class Beer
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -225,7 +210,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Contact2 public class Contact2
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -238,7 +222,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Location2 public class Location2
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -254,7 +237,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Brewery public class Brewery
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -283,7 +265,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class User public class User
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -308,7 +289,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item3 public class Item3
{ {
[JsonProperty("category_name")] [JsonProperty("category_name")]
public string CategoryName { get; set; } public string CategoryName { get; set; }
@@ -321,7 +301,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Categories2 public class Categories2
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -331,7 +310,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Location3 public class Location3
{ {
[JsonProperty("venue_address")] [JsonProperty("venue_address")]
public string VenueAddress { get; set; } public string VenueAddress { get; set; }
@@ -353,7 +331,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Contact3 public class Contact3
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -363,7 +340,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Foursquare2 public class Foursquare2
{ {
[JsonProperty("foursquare_id")] [JsonProperty("foursquare_id")]
public string FoursquareId { get; set; } public string FoursquareId { get; set; }
@@ -373,7 +349,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class VenueIcon2 public class VenueIcon2
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -386,7 +361,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Venue2 public class Venue2
{ {
[JsonProperty("venue_id")] [JsonProperty("venue_id")]
public int VenueId { get; set; } public int VenueId { get; set; }
@@ -421,7 +395,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item2 public class Item2
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -449,7 +422,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Media public class Media
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -459,7 +431,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class User2 public class User2
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -487,7 +458,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Beer2 public class Beer2
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -515,7 +485,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Contact4 public class Contact4
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -531,7 +500,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Location4 public class Location4
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -547,7 +515,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Brewery2 public class Brewery2
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -576,7 +543,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item5 public class Item5
{ {
[JsonProperty("category_name")] [JsonProperty("category_name")]
public string CategoryName { get; set; } public string CategoryName { get; set; }
@@ -589,7 +555,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Categories3 public class Categories3
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -599,7 +564,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Location5 public class Location5
{ {
[JsonProperty("venue_address")] [JsonProperty("venue_address")]
public string VenueAddress { get; set; } public string VenueAddress { get; set; }
@@ -621,7 +585,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Contact5 public class Contact5
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -631,7 +594,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Foursquare3 public class Foursquare3
{ {
[JsonProperty("foursquare_id")] [JsonProperty("foursquare_id")]
public string FoursquareId { get; set; } public string FoursquareId { get; set; }
@@ -641,7 +603,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class VenueIcon3 public class VenueIcon3
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -654,7 +615,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Venue3 public class Venue3
{ {
[JsonProperty("venue_id")] [JsonProperty("venue_id")]
public int VenueId { get; set; } public int VenueId { get; set; }
@@ -689,7 +649,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class User3 public class User3
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -729,7 +688,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item6 public class Item6
{ {
[JsonProperty("user")] [JsonProperty("user")]
public User3 User { get; set; } public User3 User { get; set; }
@@ -757,7 +715,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Comments public class Comments
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -770,7 +727,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class User4 public class User4
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -804,7 +760,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item7 public class Item7
{ {
[JsonProperty("uid")] [JsonProperty("uid")]
public int Uid { get; set; } public int Uid { get; set; }
@@ -823,7 +778,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Toasts public class Toasts
{ {
[JsonProperty("total_count")] [JsonProperty("total_count")]
public int TotalCount { get; set; } public int TotalCount { get; set; }
@@ -839,7 +793,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Photo2 public class Photo2
{ {
[JsonProperty("photo_img_sm")] [JsonProperty("photo_img_sm")]
public string PhotoImgSm { get; set; } public string PhotoImgSm { get; set; }
@@ -855,7 +808,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item8 public class Item8
{ {
[JsonProperty("photo_id")] [JsonProperty("photo_id")]
public int PhotoId { get; set; } public int PhotoId { get; set; }
@@ -865,7 +817,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Media2 public class Media2
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -875,7 +826,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Source public class Source
{ {
[JsonProperty("app_name")] [JsonProperty("app_name")]
public string AppName { get; set; } public string AppName { get; set; }
@@ -885,7 +835,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class BadgeImage public class BadgeImage
{ {
[JsonProperty("sm")] [JsonProperty("sm")]
public string Sm { get; set; } public string Sm { get; set; }
@@ -898,7 +847,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item9 public class Item9
{ {
[JsonProperty("badge_id")] [JsonProperty("badge_id")]
public int BadgeId { get; set; } public int BadgeId { get; set; }
@@ -920,7 +868,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Badges public class Badges
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -930,7 +877,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item4 public class Item4
{ {
[JsonProperty("checkin_id")] [JsonProperty("checkin_id")]
public int CheckinId { get; set; } public int CheckinId { get; set; }
@@ -973,7 +919,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Checkins public class Checkins
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -983,7 +928,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Beer3 public class Beer3
{ {
[JsonProperty("bid")] [JsonProperty("bid")]
public int Bid { get; set; } public int Bid { get; set; }
@@ -1032,7 +976,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Contact6 public class Contact6
{ {
[JsonProperty("twitter")] [JsonProperty("twitter")]
public string Twitter { get; set; } public string Twitter { get; set; }
@@ -1045,7 +988,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Location6 public class Location6
{ {
[JsonProperty("brewery_city")] [JsonProperty("brewery_city")]
public string BreweryCity { get; set; } public string BreweryCity { get; set; }
@@ -1061,7 +1003,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Brewery3 public class Brewery3
{ {
[JsonProperty("brewery_id")] [JsonProperty("brewery_id")]
public int BreweryId { get; set; } public int BreweryId { get; set; }
@@ -1090,7 +1031,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Friends public class Friends
{ {
[JsonProperty("count")] [JsonProperty("count")]
public int Count { get; set; } public int Count { get; set; }
@@ -1100,7 +1040,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Item10 public class Item10
{ {
[JsonProperty("created_at")] [JsonProperty("created_at")]
public string CreatedAt { get; set; } public string CreatedAt { get; set; }
@@ -1122,7 +1061,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class TopBeers public class TopBeers
{ {
[JsonProperty("offset")] [JsonProperty("offset")]
public int Offset { get; set; } public int Offset { get; set; }
@@ -1138,7 +1076,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Venue public class Venue
{ {
[JsonProperty("venue_id")] [JsonProperty("venue_id")]
public int VenueId { get; set; } public int VenueId { get; set; }
@@ -1186,7 +1123,6 @@ namespace Untappd.Net.Responses.VenueInfo
public class Response public class Response
{ {
[JsonProperty("venue")] [JsonProperty("venue")]
public Venue Venue { get; set; } public Venue Venue { get; set; }
} }

View File

@@ -16,7 +16,6 @@ namespace Untappd.Net
public override bool CanConvert(Type objectType) public override bool CanConvert(Type objectType)
{ {
return true; return true;
} }
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
@@ -29,6 +28,7 @@ namespace Untappd.Net
var instance = (T)serializer.Deserialize(reader, typeof(T)); var instance = (T)serializer.Deserialize(reader, typeof(T));
retval = instance; retval = instance;
break; break;
case JsonToken.StartArray: case JsonToken.StartArray:
reader.Read(); reader.Read();
retval = new T(); retval = new T();