Temp
[
{
"temp": {
"foo": "bar"
},
"response": {
"temp": {
"foo": "baz",
"hello": "world"
}
}
},
{
"temp": {
"param1": "bar-{{temp.foo}}", // will be "bar-baz"
"param2": "hello, {{temp.hello}}" // will be "hello, world"
},
"response": {
"temp": {} // will have the following properties:
// temp.foo == "baz"
// temp.hello == "world"
// temp.param1 == "bar-baz"
// temp.param2 == "hello, world"
}
}
]Last updated

