Netsutie PHP Toolkit
CashRefund.php
Go to the documentation of this file.
1 <?php
8 class CashRefund extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $entity;
49 
58  public $vatRegNum;
59 
68  public $tranDate;
69 
78  public $tranId;
79 
88  public $source;
89 
98  public $createdFrom;
99 
109 
118  public $department;
119 
128  public $class;
129 
138  public $location;
139 
148  public $leadSource;
149 
158  public $subsidiary;
159 
168  public $salesRep;
169 
178  public $partner;
179 
188  public $contribPct;
189 
198  public $otherRefNum;
199 
208  public $memo;
209 
219 
228  public $refundCheck;
229 
238  public $toPrint2;
239 
249 
259 
269 
279 
288  public $account;
289 
298  public $currency;
299 
309 
319 
328  public $promoCode;
329 
339 
349 
358  public $isTaxable;
359 
368  public $taxItem;
369 
378  public $taxRate;
379 
388  public $toBePrinted;
389 
398  public $toBeEmailed;
399 
408  public $email;
409 
418  public $toBeFaxed;
419 
428  public $fax;
429 
438  public $messageSel;
439 
448  public $message;
449 
459 
469 
478  public $shipMethod;
479 
489 
499 
509 
519 
529 
539 
549 
559 
568  public $salesGroup;
569 
579 
589 
599 
609 
619 
629 
638  public $creditCard;
639 
648  public $chargeIt;
649 
658  public $ccNumber;
659 
669 
678  public $ccName;
679 
688  public $ccStreet;
689 
698  public $ccZipCode;
699 
708  public $ccApproved;
709 
719 
729 
738  public $pnRefNum;
739 
748  public $validFrom;
749 
759 
768  public $subTotal;
769 
779 
789 
799 
808  public $taxTotal;
809 
818  public $tax2Total;
819 
829 
839 
849 
858  public $total;
859 
869 
878  public $status;
879 
888  public $job;
889 
898  public $giftCert;
899 
909 
919 
929 
939 
949 
959 
969 
978  public $itemList;
979 
989 
999 
1009 
1018  public $internalId;
1019 
1028  public $externalId;
1029 
1030 
1031 
1032  static $paramtypesmap = array(
1033 
1034  "createdDate" => "dateTime",
1035 
1036  "lastModifiedDate" => "dateTime",
1037 
1038  "customForm" => "RecordRef",
1039 
1040  "entity" => "RecordRef",
1041 
1042  "vatRegNum" => "string",
1043 
1044  "tranDate" => "dateTime",
1045 
1046  "tranId" => "string",
1047 
1048  "source" => "string",
1049 
1050  "createdFrom" => "RecordRef",
1051 
1052  "postingPeriod" => "RecordRef",
1053 
1054  "department" => "RecordRef",
1055 
1056  "class" => "RecordRef",
1057 
1058  "location" => "RecordRef",
1059 
1060  "leadSource" => "RecordRef",
1061 
1062  "subsidiary" => "RecordRef",
1063 
1064  "salesRep" => "RecordRef",
1065 
1066  "partner" => "RecordRef",
1067 
1068  "contribPct" => "string",
1069 
1070  "otherRefNum" => "string",
1071 
1072  "memo" => "string",
1073 
1074  "salesEffectiveDate" => "dateTime",
1075 
1076  "refundCheck" => "boolean",
1077 
1078  "toPrint2" => "boolean",
1079 
1080  "excludeCommission" => "boolean",
1081 
1082  "totalCostEstimate" => "float",
1083 
1084  "estGrossProfit" => "float",
1085 
1086  "estGrossProfitPercent" => "float",
1087 
1088  "account" => "RecordRef",
1089 
1090  "currency" => "RecordRef",
1091 
1092  "exchangeRate" => "float",
1093 
1094  "currencyName" => "string",
1095 
1096  "promoCode" => "RecordRef",
1097 
1098  "discountItem" => "RecordRef",
1099 
1100  "discountRate" => "string",
1101 
1102  "isTaxable" => "boolean",
1103 
1104  "taxItem" => "RecordRef",
1105 
1106  "taxRate" => "float",
1107 
1108  "toBePrinted" => "boolean",
1109 
1110  "toBeEmailed" => "boolean",
1111 
1112  "email" => "string",
1113 
1114  "toBeFaxed" => "boolean",
1115 
1116  "fax" => "string",
1117 
1118  "messageSel" => "RecordRef",
1119 
1120  "message" => "string",
1121 
1122  "billingAddress" => "Address",
1123 
1124  "billAddressList" => "RecordRef",
1125 
1126  "shipMethod" => "RecordRef",
1127 
1128  "shippingTaxCode" => "RecordRef",
1129 
1130  "shippingTax1Rate" => "float",
1131 
1132  "shippingTax2Rate" => "string",
1133 
1134  "shippingCost" => "float",
1135 
1136  "handlingTaxCode" => "RecordRef",
1137 
1138  "handlingTax1Rate" => "float",
1139 
1140  "handlingTax2Rate" => "string",
1141 
1142  "handlingCost" => "float",
1143 
1144  "salesGroup" => "RecordRef",
1145 
1146  "syncSalesTeams" => "boolean",
1147 
1148  "paymentMethod" => "RecordRef",
1149 
1150  "revenueStatus" => "RevenueStatus",
1151 
1152  "recognizedRevenue" => "float",
1153 
1154  "deferredRevenue" => "float",
1155 
1156  "revRecOnRevCommitment" => "boolean",
1157 
1158  "creditCard" => "RecordRef",
1159 
1160  "chargeIt" => "boolean",
1161 
1162  "ccNumber" => "string",
1163 
1164  "ccExpireDate" => "dateTime",
1165 
1166  "ccName" => "string",
1167 
1168  "ccStreet" => "string",
1169 
1170  "ccZipCode" => "string",
1171 
1172  "ccApproved" => "boolean",
1173 
1174  "creditCardProcessor" => "RecordRef",
1175 
1176  "debitCardIssueNo" => "string",
1177 
1178  "pnRefNum" => "string",
1179 
1180  "validFrom" => "dateTime",
1181 
1182  "payPalTranId" => "string",
1183 
1184  "subTotal" => "float",
1185 
1186  "ccIsPurchaseCardBin" => "boolean",
1187 
1188  "discountTotal" => "float",
1189 
1190  "ccProcessAsPurchaseCard" => "boolean",
1191 
1192  "taxTotal" => "float",
1193 
1194  "tax2Total" => "float",
1195 
1196  "altShippingCost" => "float",
1197 
1198  "payPalStatus" => "string",
1199 
1200  "altHandlingCost" => "float",
1201 
1202  "total" => "float",
1203 
1204  "payPalAuthId" => "string",
1205 
1206  "status" => "string",
1207 
1208  "job" => "RecordRef",
1209 
1210  "giftCert" => "RecordRef",
1211 
1212  "giftCertTotal" => "float",
1213 
1214  "giftCertApplied" => "float",
1215 
1216  "giftCertAvailable" => "float",
1217 
1218  "tranIsVsoeBundle" => "boolean",
1219 
1220  "payPalProcess" => "boolean",
1221 
1222  "vsoeAutoCalc" => "boolean",
1223 
1224  "syncPartnerTeams" => "boolean",
1225 
1226  "itemList" => "CashRefundItemList",
1227 
1228  "salesTeamList" => "CashRefundSalesTeamList",
1229 
1230  "partnersList" => "CashRefundPartnersList",
1231 
1232  "customFieldList" => "CustomFieldList",
1233 
1234  "internalId" => "string",
1235 
1236  "externalId" => "string",
1237 
1238  );
1239 
1240 }
$revRecOnRevCommitment
Definition: CashRefund.php:628
$ccProcessAsPurchaseCard
Definition: CashRefund.php:798
static $paramtypesmap
$estGrossProfitPercent
Definition: CashRefund.php:278
Definition: Record.php:8