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
I am this parameter in a request
{ "name" : "bundleType", "in" : "query", "description" : "Boundles's type", "required" : false, "style" : "form", "explode" : true, "schema" : { "type" : "string", "enum" : [ "GLOBAL", "PRIVATE", "PUBLIC" ] } }
the generated class is
// Request type definition export type GetBundlesByPSPT = r.IGetApiRequestType< { readonly JWT: string; readonly limit?: number; readonly "bundle-type"?: array; readonly page?: number; readonly "psp-code": string; readonly name?: string; }, "Authorization", never, r.IResponseType<200, Bundles, "X-Request-Id"> >;
I have a compile error due to the line readonly "bundle-type"?: array;
readonly "bundle-type"?: array;
readonly "bundle-type"?: Array<string>;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am this parameter in a request
the generated class is
I have a compile error due to the line
readonly "bundle-type"?: array;
How I fixed it manually
The text was updated successfully, but these errors were encountered: