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
{{ message }}
This repository was archived by the owner on Dec 25, 2024. It is now read-only.
Is your feature request related to a problem? Please describe.
I want to set the content type as application/x-pem-file in a request but an exception is raised: NotImplementedError('Serialization has not yet been implemented for application/x-pem-file').
No serialization is needed, this is just a text file.
Describe the solution you'd like
Add an option in the endpoint functions to disable serialization when calling a endpoint. Something like skip_serialization=True.
Describe alternatives you've considered
Doing the request manually using ApiClient.rest_client.request(), this is kinda against the idea of an API code generator.
Is your feature request related to a problem? Please describe.
I want to set the content type as
application/x-pem-filein a request but an exception is raised:NotImplementedError('Serialization has not yet been implemented for application/x-pem-file').No serialization is needed, this is just a text file.
Describe the solution you'd like
Add an option in the endpoint functions to disable serialization when calling a endpoint. Something like
skip_serialization=True.Describe alternatives you've considered
Doing the request manually using ApiClient.rest_client.request(), this is kinda against the idea of an API code generator.