item element

Type: itemModel
Namespace: http://filecatalyst.com/model
XML Schema: model.xsd

Item model class

Example XML

<?xml version="1.0" encoding="UTF-8"?> <item xmlns="http://filecatalyst.com/model" description="..." operand="..."> <prices xmlns="" minimumCost="..." name="..."> <price amount="..." /> <price amount="..."> <!--...--> </price> <!--...more "price" elements...--> </prices> <prices xmlns="" minimumCost="..." name="..."> <!--...--> </prices> <!--...more "prices" elements...--> </item>

Example JSON

{ "description" : "...", "operand" : "IMPRESSION_PER_PAGE_ACTION", "prices" : [ { "minimumCost" : ..., "name" : "...", "price" : [ { "amount" : ... }, ... ] }, ... ] }