Type guard to check if a value is an ExecutionResultV6.
The value to check
True if the value matches the ExecutionResultV6 structure
if (isExecutionResultV6(result)) { console.log(result.validUntil);} Copy
if (isExecutionResultV6(result)) { console.log(result.validUntil);}
Type guard to check if a value is an ExecutionResultV6.