Customer Portal

Bool to string conversion

Comments 1

  • Avatar
    dpavlis
    0
    Comment actions Permalink
    You may use something like this:

    $out.0.isClient = $in.0.isClient ? "True" : "False" ;

    or

    $out.0.isClient = iif($in.0.isClient,"True","False");

Please sign in to leave a comment.