We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should be able to fetch a specific value from the result payload. This is either the result field or a method.
{ "callContent": { "fetchString1": { "class": "com.adobe.campaign.tests.bridge.testdata.one.MimeMessageMethods", "method": "createMessage", "args": [ "mre" ] } } }
We get a lot of values:
{ "callDurations": { "fetchString1": 15 }, "returnValues": { "fetchString1": { "messageNumber": 0, "size": -1, "subject": "a subject by me mre", "hashCode": 370140205, "isExpunged": false, "contentType": "text/plain", "content": "a content by yours truely mre", "lineCount": -1 } } }
We should be able to extract / filter the result to a certain depth
Example: if we want to use the subject in a different call, and there is no getter, and it may be a bit large.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should be able to fetch a specific value from the result payload. This is either the result field or a method.
Currently
Call
Result
We get a lot of values:
Expected
We should be able to extract / filter the result to a certain depth
Rationale:
Example: if we want to use the subject in a different call, and there is no getter, and it may be a bit large.
The text was updated successfully, but these errors were encountered: