Hello,
according binance swagger documentation
https://binance.github.io/binance-api-swagger/spot_api.yaml
there is an object AggTrade. This object has pproperties, which are only letters. Concretelly there are this letters: a, p, q, f, l, T, m and M. Specially last two are problem for me. I would like to use openapi-generator-maven-plugin, to generate java classes directly from yaml. Problem is in generated method names. In java are getters and setters generated with name getM()/setM for both properties (m,M). Is it possible to correct the api to not use only letters, but whole names for property names?
Thanks