Netsutie PHP Toolkit
NoteSearchRowBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $author;
19 
28  public $direction;
29 
38  public $externalId;
39 
48  public $internalId;
49 
58  public $note;
59 
68  public $noteDate;
69 
78  public $noteType;
79 
88  public $title;
89 
99 
100 
101 
102  static $paramtypesmap = array(
103 
104  "author" => "SearchColumnSelectField[]",
105 
106  "direction" => "SearchColumnStringField[]",
107 
108  "externalId" => "SearchColumnSelectField[]",
109 
110  "internalId" => "SearchColumnSelectField[]",
111 
112  "note" => "SearchColumnStringField[]",
113 
114  "noteDate" => "SearchColumnDateField[]",
115 
116  "noteType" => "SearchColumnStringField[]",
117 
118  "title" => "SearchColumnStringField[]",
119 
120  "customFieldList" => "SearchColumnCustomFieldList",
121 
122  );
123 
124 }