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 generator stores an attribute mapping for serialization:
DataDog/datadog-api-client-typescript/packages/datadog-api-client-v1/models/Dashboard.ts - attributeTypeMap
this mapping is generated from the OpenAPI spec with following conversions for TypeScript interfaces DataDog/datadog-api-client-typescript/.generator/src/generator/formatter.py - attribute_name
When using the generated TS and converting directly to JSON string, the object won't match the API spec.
A hack is to "decamelize" (or "snake_case") the keys, but this doesn't guarantee correct results
The text was updated successfully, but these errors were encountered:
see this workaround
https://github.com/GoodNotes/cdk-datadog-resources/blob/80f752b4f4e976a49a978d5c5b6d40b450d49116/src/dashboards/datadog-dashboard.ts#L22-L28
Sorry, something went wrong.
No branches or pull requests
the generator stores an attribute mapping for serialization:
DataDog/datadog-api-client-typescript/packages/datadog-api-client-v1/models/Dashboard.ts - attributeTypeMap
this mapping is generated from the OpenAPI spec with following conversions for TypeScript interfaces
DataDog/datadog-api-client-typescript/.generator/src/generator/formatter.py - attribute_name
When using the generated TS and converting directly to JSON string, the object won't match the API spec.
A hack is to "decamelize" (or "snake_case") the keys, but this doesn't guarantee correct results
The text was updated successfully, but these errors were encountered: