We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following definition
"reaction-rollup": { "title": "Reaction Rollup", "type": "object", "properties": { "url": { "type": "string", "format": "uri" }, "total_count": { "type": "integer" }, "+1": { "type": "integer" }, "-1": { "type": "integer" }, "laugh": { "type": "integer" } },
generates the C# property name Plus1 as expected, but _1 for the -1. I would expect it to become Minus1.
Also, the parameter names for the method are causing compilation errors - they should follow the Property name generation.
public ReactionRollup(int @+1, int @1, int @laugh, int @total_count, System.Uri @url) { this.Url = @url; this.Total_count = @total_count; this.Plus1 = @+1; this._1 = @1; this.Laugh = @laugh; }
For the property names generation, I think it can be solve din the CSharpPropertyNameGenerator. Not sure about the parameter names though.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following definition
generates the C# property name Plus1 as expected, but _1 for the -1. I would expect it to become Minus1.
Also, the parameter names for the method are causing compilation errors - they should follow the Property name generation.
For the property names generation, I think it can be solve din the CSharpPropertyNameGenerator. Not sure about the parameter names though.
The text was updated successfully, but these errors were encountered: