Netsutie PHP Toolkit
Opportunity.php
Go to the documentation of this file.
1 <?php
8 class Opportunity extends Record {
9 
18  public $customForm;
19 
28  public $currency;
29 
39 
48  public $entity;
49 
58  public $job;
59 
68  public $title;
69 
78  public $tranId;
79 
88  public $source;
89 
98  public $salesRep;
99 
108  public $contribPct;
109 
118  public $partner;
119 
128  public $salesGroup;
129 
139 
148  public $leadSource;
149 
159 
168  public $probability;
169 
178  public $tranDate;
179 
189 
198  public $daysOpen;
199 
209 
219 
229 
239 
248  public $rangeLow;
249 
258  public $rangeHigh;
259 
269 
279 
289 
299 
308  public $actionItem;
309 
319 
328  public $memo;
329 
338  public $taxTotal;
339 
349 
358  public $tax2Total;
359 
369 
379 
389 
399 
409 
419 
429 
439 
449 
459 
469 
478  public $class;
479 
488  public $closeDate;
489 
498  public $createdDate;
499 
509 
518  public $department;
519 
528  public $location;
529 
538  public $subsidiary;
539 
548  public $status;
549 
558  public $vatRegNum;
559 
569 
579 
589 
598  public $itemList;
599 
609 
619 
628  public $internalId;
629 
638  public $externalId;
639 
640 
641 
642  static $paramtypesmap = array(
643 
644  "customForm" => "RecordRef",
645 
646  "currency" => "RecordRef",
647 
648  "estimatedBudget" => "float",
649 
650  "entity" => "RecordRef",
651 
652  "job" => "RecordRef",
653 
654  "title" => "string",
655 
656  "tranId" => "string",
657 
658  "source" => "string",
659 
660  "salesRep" => "RecordRef",
661 
662  "contribPct" => "string",
663 
664  "partner" => "RecordRef",
665 
666  "salesGroup" => "RecordRef",
667 
668  "syncSalesTeams" => "boolean",
669 
670  "leadSource" => "RecordRef",
671 
672  "entityStatus" => "RecordRef",
673 
674  "probability" => "float",
675 
676  "tranDate" => "dateTime",
677 
678  "expectedCloseDate" => "dateTime",
679 
680  "daysOpen" => "integer",
681 
682  "forecastType" => "RecordRef",
683 
684  "currencyName" => "string",
685 
686  "exchangeRate" => "float",
687 
688  "projectedTotal" => "float",
689 
690  "rangeLow" => "float",
691 
692  "rangeHigh" => "float",
693 
694  "projAltSalesAmt" => "float",
695 
696  "altSalesRangeLow" => "float",
697 
698  "altSalesRangeHigh" => "float",
699 
700  "weightedTotal" => "float",
701 
702  "actionItem" => "string",
703 
704  "winLossReason" => "RecordRef",
705 
706  "memo" => "string",
707 
708  "taxTotal" => "float",
709 
710  "isBudgetApproved" => "boolean",
711 
712  "tax2Total" => "float",
713 
714  "salesReadiness" => "RecordRef",
715 
716  "totalCostEstimate" => "float",
717 
718  "buyingTimeFrame" => "RecordRef",
719 
720  "estGrossProfit" => "float",
721 
722  "buyingReason" => "RecordRef",
723 
724  "estGrossProfitPercent" => "float",
725 
726  "billingAddress" => "Address",
727 
728  "billAddressList" => "RecordRef",
729 
730  "shippingAddress" => "Address",
731 
732  "shipIsResidential" => "boolean",
733 
734  "shipAddressList" => "RecordRef",
735 
736  "class" => "RecordRef",
737 
738  "closeDate" => "dateTime",
739 
740  "createdDate" => "dateTime",
741 
742  "lastModifiedDate" => "dateTime",
743 
744  "department" => "RecordRef",
745 
746  "location" => "RecordRef",
747 
748  "subsidiary" => "RecordRef",
749 
750  "status" => "string",
751 
752  "vatRegNum" => "string",
753 
754  "syncPartnerTeams" => "boolean",
755 
756  "salesTeamList" => "OpportunitySalesTeamList",
757 
758  "partnersList" => "OpportunityPartnersList",
759 
760  "itemList" => "OpportunityItemList",
761 
762  "competitorsList" => "OpportunityCompetitorsList",
763 
764  "customFieldList" => "CustomFieldList",
765 
766  "internalId" => "string",
767 
768  "externalId" => "string",
769 
770  );
771 
772 }
static $paramtypesmap
Definition: Record.php:8