Create an Item Object
Copy
You need an Item Object to submit a query or to add an Item.
Technique
There are basically two ways to create a new Item Object; by calling the factory methods on the Item object or Innovator object or calling the Class constructor.
JavaScript
var myItem = new Item();
var myItem = this.newItem(myType,myAction);
var myInnovator = this.getInnovator();
var myItem = myInnovator.newItem(myType,myAction);
var myResult = myInnovator.newResult(resultText);
var myError = myInnovator.newError(errorMessage);