Skip to content

Commit

Permalink
chore: fixing nullable attributes (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
manisha1997 authored Aug 19, 2024
1 parent 65a9aa4 commit 38eeaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/twilio-node/responseModel.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class {{instanceName}} {
{{/vars}}

{{#instancePath}}
this._solution = { {{#instancePathParams}}{{paramName}}{{^vendorExtensions.x-is-parent-param}}: {{paramName}} || this.{{paramName}}{{#vendorExtensions.x-stringify}}.toString(){{/vendorExtensions.x-stringify}}{{/vendorExtensions.x-is-parent-param}}, {{/instancePathParams}} };
this._solution = { {{#instancePathParams}}{{paramName}}{{^vendorExtensions.x-is-parent-param}}: {{paramName}} || this.{{paramName}}{{#isNullable}}{{#vendorExtensions.x-stringify}}.toString(){{/vendorExtensions.x-stringify}}{{/isNullable}}{{/vendorExtensions.x-is-parent-param}}, {{/instancePathParams}} };
{{/instancePath}}
}

Expand Down

0 comments on commit 38eeaef

Please sign in to comment.