You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not issue, I think it good idea if you can add https://app.quicktype.io to the Readme, it parse JSON and generate the Class, it useful for known Json and save times writing the class.
Short how to:
open the website
paste your json
set Output features to Just Types or other
set Other options if needed* (detect boolean/int to false), ex: {"IwantAsString" : "12345"} or this parser will throw error because the parser try to convert "12345" (with quote) to long. But you can also fix the parser on Line 163 by prepend the line json = json.Trim('"');
This is not issue, I think it good idea if you can add https://app.quicktype.io to the Readme, it parse JSON and generate the Class, it useful for known Json and save times writing the class.
Short how to:
Output features
toJust Types
or otherOther
options if needed* (detect boolean/int to false), ex:{"IwantAsString" : "12345"}
or this parser will throw error because the parser try to convert"12345"
(with quote) to long. But you can also fix the parser on Line 163 by prepend the linejson = json.Trim('"');
Example how it can be very useful
Json code
Generated class
Access it
The text was updated successfully, but these errors were encountered: