Hi I'm trying to generate a client for an OpenAPI spec with the following enum:
"auto_accident_significant_injury": {
"enum": ["YES", "NO", "N\\A"],
"type": "string",
"description": "",
"title": "Auto accident significant injury"
},
It's generating the following invalid Go code:
PatientAutoAccidentInsuranceAutoAccidentSignificantInjuryNA PatientAutoAccidentInsuranceAutoAccidentSignificantInjury = "N\A"
I believe the correct code would be
PatientAutoAccidentInsuranceAutoAccidentSignificantInjuryNA PatientAutoAccidentInsuranceAutoAccidentSignificantInjury = "N\\A"