Netsutie PHP Toolkit
SupportCase.php
Go to the documentation of this file.
1 <?php
8 class SupportCase extends Record {
9 
19 
29 
38  public $endDate;
39 
49 
59 
69 
79 
88  public $emailForm;
89 
99 
109 
118  public $customForm;
119 
128  public $title;
129 
138  public $caseNumber;
139 
148  public $startDate;
149 
158  public $createdDate;
159 
169 
179 
188  public $company;
189 
198  public $profile;
199 
208  public $subsidiary;
209 
218  public $contact;
219 
228  public $email;
229 
238  public $phone;
239 
248  public $product;
249 
258  public $module;
259 
268  public $item;
269 
279 
289 
298  public $issue;
299 
308  public $status;
309 
318  public $isInactive;
319 
328  public $priority;
329 
338  public $origin;
339 
348  public $category;
349 
358  public $assigned;
359 
368  public $helpDesk;
369 
379 
389 
399 
409 
419 
428  public $internalId;
429 
438  public $externalId;
439 
440 
441 
442  static $paramtypesmap = array(
443 
444  "escalationMessage" => "string",
445 
446  "lastReopenedDate" => "dateTime",
447 
448  "endDate" => "dateTime",
449 
450  "incomingMessage" => "string",
451 
452  "insertSolution" => "RecordRef",
453 
454  "outgoingMessage" => "string",
455 
456  "searchSolution" => "string",
457 
458  "emailForm" => "boolean",
459 
460  "newSolutionFromMsg" => "string",
461 
462  "internalOnly" => "boolean",
463 
464  "customForm" => "RecordRef",
465 
466  "title" => "string",
467 
468  "caseNumber" => "string",
469 
470  "startDate" => "dateTime",
471 
472  "createdDate" => "dateTime",
473 
474  "lastModifiedDate" => "dateTime",
475 
476  "lastMessageDate" => "dateTime",
477 
478  "company" => "RecordRef",
479 
480  "profile" => "RecordRef",
481 
482  "subsidiary" => "RecordRef",
483 
484  "contact" => "RecordRef",
485 
486  "email" => "string",
487 
488  "phone" => "string",
489 
490  "product" => "RecordRef",
491 
492  "module" => "RecordRef",
493 
494  "item" => "RecordRef",
495 
496  "serialNumber" => "RecordRef",
497 
498  "inboundEmail" => "string",
499 
500  "issue" => "RecordRef",
501 
502  "status" => "RecordRef",
503 
504  "isInactive" => "boolean",
505 
506  "priority" => "RecordRef",
507 
508  "origin" => "RecordRef",
509 
510  "category" => "RecordRef",
511 
512  "assigned" => "RecordRef",
513 
514  "helpDesk" => "boolean",
515 
516  "emailEmployeesList" => "EmailEmployeesList",
517 
518  "escalateToList" => "SupportCaseEscalateToList",
519 
520  "timeItemList" => "SupportCaseTimeItemList",
521 
522  "solutionsList" => "SupportCaseSolutionsList",
523 
524  "customFieldList" => "CustomFieldList",
525 
526  "internalId" => "string",
527 
528  "externalId" => "string",
529 
530  );
531 
532 }
static $paramtypesmap
Definition: Record.php:8