Netsutie PHP Toolkit
SalesRole.php
Go to the documentation of this file.
1 <?php
8 class SalesRole extends Record {
9 
18  public $name;
19 
28  public $description;
29 
38  public $isSalesRep;
39 
48  public $isInactive;
49 
58  public $internalId;
59 
68  public $externalId;
69 
70 
71 
72  static $paramtypesmap = array(
73 
74  "name" => "string",
75 
76  "description" => "string",
77 
78  "isSalesRep" => "boolean",
79 
80  "isInactive" => "boolean",
81 
82  "internalId" => "string",
83 
84  "externalId" => "string",
85 
86  );
87 
88 }
static $paramtypesmap
Definition: SalesRole.php:72
Definition: Record.php:8