Skip to content

Instantly share code, notes, and snippets.

@damoodamoo
Created March 11, 2020 10:44
Show Gist options
  • Save damoodamoo/c6ba50e7e9752b06cd2ae2c66f07a83f to your computer and use it in GitHub Desktop.
Save damoodamoo/c6ba50e7e9752b06cd2ae2c66f07a83f to your computer and use it in GitHub Desktop.
public class InvokeResponse {
public Map<String, Object> Outputs;
public ArrayList<String> Logs;
public Object ReturnValue;
public InvokeResponse(){
Outputs = new HashMap<String,Object>();
Logs = new ArrayList<String>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment