items element

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

Items model class

Example XML

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

Example JSON

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