What is the correct syntax to use in handlebars to return a boolean value, which can then be interpreted by NetSuite to tick a checkbox?
For example, in a flow which creates a NetSuite Sales Order, should the following work to tick a checkbox?
{{#if $.payment_method}} {{#compare $.payment_method "==" "Credit Card"}} "true" {{else}} {{/compare}} {{/if}}
... as it does not appear to be evaluated as `true` by NetSuite when the condition is met.
I have also tried `true` without quotes. Also just the letter `T`, both with and without quotes - all without success