field element

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

Field model class

Example XML

<?xml version="1.0" encoding="UTF-8"?> <field xmlns="http://filecatalyst.com/model" description="..." displayFormat="..." header="..." helpButtonText="..." name="..." taxAmount="..." operand="..." showOnJobSummary="..." showOnReport="..." fieldType="..." href="..."> <items xmlns="" priceMultiplierField="..." priceConditionField="..."> <item description="..." operand="..."> <prices minimumCost="..." name="..."> <price amount="..." /> <price amount="..."> <!--...--> </price> <!--...more "price" elements...--> </prices> <prices minimumCost="..." name="..."> <!--...--> </prices> <!--...more "prices" elements...--> </item> <item description="..." operand="..."> <!--...--> </item> <!--...more "item" elements...--> </items> <discountLevels xmlns=""> <discountLevel amount="..." /> <discountLevel amount="..."> <!--...--> </discountLevel> <!--...more "discountLevel" elements...--> </discountLevels> </field>

Example JSON

{ "description" : "...", "displayFormat" : "...", "header" : "...", "helpButtonText" : "...", "name" : "...", "taxAmount" : ..., "operand" : "IMPRESSION_PER_PAGE_ACTION", "showOnJobSummary" : false, "showOnReport" : false, "fieldType" : "TEXT_FIELD", "href" : "...", "items" : { "priceMultiplierField" : "...", "priceConditionField" : "...", "item" : [ { "description" : "...", "operand" : "IMPRESSION_PER_PAGE_ACTION", "prices" : [ { "minimumCost" : ..., "name" : "...", "price" : [ { "amount" : ... }, ... ] }, ... ] }, ... ] }, "discountLevels" : { "discountLevel" : [ { "amount" : ... }, ... ] } }