TOuhrouche

Results 5 comments of TOuhrouche

Thanks for the awesome library. This is a major issue for us unfortunately. 6.0.0 are supposed to work with .netcore 3.1 apps but they actually don't for Azure Functions :(...

I join others and thank you a million for the awesome library. The issue at hand here applies to `PublishedAt` property of the product as well. Not setting this field...

Been thinking about this for a while as well. Wouldn't it make sense to expose a serialization strategy to be implemented as a contract resolver? This way, the library wouldn't...

Here is our utility to extract error messages from Xero Exceptions: ``` private IEnumerable GetErrors(ApiException apiException) { if (apiException.ErrorContent == null) return new List(){"Xero failed with no specific error code"};...

@pellet `ErrorResponse` is an object we use to deserialize the dynamic content. ``` public class ErrorResponse { public Element[] Elements { get; set; } } public class Element { public...