Jericho / CakeMail.RestClient

.NET wrapper for the CakeMail API
MIT License
9 stars 3 forks source link

Change IDs to 'long' instead of 'int' #14

Closed Jericho closed 9 years ago

Jericho commented 9 years ago

CakeMail's documentation clearly says that IDs are integers, but there are some cases where they return numerical values that do not fit in an integer. The only example I am aware of so far if the ID of the Link entity. However, to be consistent and also to future proof this library, we should change all IDs to 'long'

Jericho commented 9 years ago

UPDATE 4/9/15: I received confirmation from CakeMail that they will be changing all their IDs to MySQL BIGINT which corresponds to C# long.