formfields element

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

Form fields model class

Example XML

<?xml version="1.0" encoding="UTF-8"?> <formfields xmlns="http://filecatalyst.com/model" href="..."> <field xmlns="" description="..." displayFormat="..." header="..." helpButtonText="..." name="..." taxAmount="..." operand="..." showOnJobSummary="..." showOnReport="..." fieldType="..." href="..."> <items 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> <discountLevel amount="..." /> <discountLevel amount="..."> <!--...--> </discountLevel> <!--...more "discountLevel" elements...--> </discountLevels> </field> <field xmlns="" description="..." displayFormat="..." header="..." helpButtonText="..." name="..." taxAmount="..." operand="..." showOnJobSummary="..." showOnReport="..." fieldType="..." href="..."> <!--...--> </field> <!--...more "field" elements...--> </formfields>

Example JSON

{ "href" : "...", "field" : [ { "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" : ... }, ... ] } }, ... ] }