Netsutie PHP Toolkit
DownloadItem.php
Go to the documentation of this file.
1 <?php
8 class DownloadItem extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
49 
59 
69 
78  public $onSpecial;
79 
88  public $itemId;
89 
98  public $upcCode;
99 
108  public $displayName;
109 
118  public $parent;
119 
128  public $isOnline;
129 
139 
149 
158  public $isInactive;
159 
169 
179 
188  public $department;
189 
199 
208  public $class;
209 
218  public $location;
219 
229 
239 
249 
259 
268  public $isTaxable;
269 
279 
288  public $taxSchedule;
289 
299 
309 
319 
329 
339 
349 
359 
369 
378  public $vsoePrice;
379 
389 
399 
409 
419 
428  public $deferRevRec;
429 
439 
449 
459 
469 
479 
489 
499 
508  public $pageTitle;
509 
518  public $metaTagHtml;
519 
529 
539 
549 
559 
569 
579 
589 
599 
609 
619 
629 
639 
649 
659 
669 
679 
689 
698  public $internalId;
699 
708  public $externalId;
709 
710 
711 
712  static $paramtypesmap = array(
713 
714  "createdDate" => "dateTime",
715 
716  "lastModifiedDate" => "dateTime",
717 
718  "customForm" => "RecordRef",
719 
720  "salesDescription" => "string",
721 
722  "quantityPricingSchedule" => "RecordRef",
723 
724  "deferredRevenueAccount" => "RecordRef",
725 
726  "onSpecial" => "boolean",
727 
728  "itemId" => "string",
729 
730  "upcCode" => "string",
731 
732  "displayName" => "string",
733 
734  "parent" => "RecordRef",
735 
736  "isOnline" => "boolean",
737 
738  "isGcoCompliant" => "boolean",
739 
740  "offerSupport" => "boolean",
741 
742  "isInactive" => "boolean",
743 
744  "availableToPartners" => "boolean",
745 
746  "subsidiaryList" => "RecordRefList",
747 
748  "department" => "RecordRef",
749 
750  "includeChildren" => "boolean",
751 
752  "class" => "RecordRef",
753 
754  "location" => "RecordRef",
755 
756  "incomeAccount" => "RecordRef",
757 
758  "numOfAllowedDownloads" => "integer",
759 
760  "daysBeforeExpiration" => "integer",
761 
762  "immediateDownload" => "boolean",
763 
764  "isTaxable" => "boolean",
765 
766  "issueProduct" => "RecordRef",
767 
768  "taxSchedule" => "RecordRef",
769 
770  "costEstimateType" => "ItemCostEstimateType",
771 
772  "costEstimate" => "float",
773 
774  "billingSchedule" => "RecordRef",
775 
776  "isFulfillable" => "boolean",
777 
778  "useMarginalRates" => "boolean",
779 
780  "overallQuantityPricingType" => "ItemOverallQuantityPricingType",
781 
782  "pricingGroup" => "RecordRef",
783 
784  "revRecSchedule" => "RecordRef",
785 
786  "vsoePrice" => "float",
787 
788  "vsoeSopGroup" => "VsoeSopGroup",
789 
790  "vsoeDeferral" => "VsoeDeferral",
791 
792  "vsoePermitDiscount" => "VsoePermitDiscount",
793 
794  "vsoeDelivered" => "boolean",
795 
796  "deferRevRec" => "boolean",
797 
798  "storeDisplayName" => "string",
799 
800  "storeDisplayThumbnail" => "RecordRef",
801 
802  "storeDisplayImage" => "RecordRef",
803 
804  "featuredDescription" => "string",
805 
806  "storeDescription" => "string",
807 
808  "storeDetailedDescription" => "string",
809 
810  "storeItemTemplate" => "RecordRef",
811 
812  "pageTitle" => "string",
813 
814  "metaTagHtml" => "string",
815 
816  "excludeFromSitemap" => "boolean",
817 
818  "sitemapPriority" => "SitemapPriority",
819 
820  "searchKeywords" => "string",
821 
822  "isDonationItem" => "boolean",
823 
824  "showDefaultDonationAmount" => "boolean",
825 
826  "maxDonationAmount" => "float",
827 
828  "dontShowPrice" => "boolean",
829 
830  "noPriceMessage" => "string",
831 
832  "outOfStockMessage" => "string",
833 
834  "outOfStockBehavior" => "ItemOutOfStockBehavior",
835 
836  "relatedItemsDescription" => "string",
837 
838  "specialsDescription" => "string",
839 
840  "pricingMatrix" => "PricingMatrix",
841 
842  "accountingBookDetailList" => "ItemAccountingBookDetailList",
843 
844  "siteCategoryList" => "SiteCategoryList",
845 
846  "presentationItemList" => "PresentationItemList",
847 
848  "customFieldList" => "CustomFieldList",
849 
850  "internalId" => "string",
851 
852  "externalId" => "string",
853 
854  );
855 
856 }
static $paramtypesmap
Definition: Record.php:8