prices element
Type: | pricesModel |
Namespace: | http://filecatalyst.com/model |
XML Schema: | model.xsd |
Prices model class
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<prices xmlns="http://filecatalyst.com/model" minimumCost="..." name="...">
<price xmlns="" amount="..." />
<price xmlns="" amount="...">
<!--...-->
</price>
<!--...more "price" elements...-->
</prices>
Example JSON
{
"minimumCost" : ...,
"name" : "...",
"price" : [ {
"amount" : ...
}, ... ]
}