Netsutie PHP Toolkit
PriceLevel.php
Go to the documentation of this file.
1 <?php
8 class PriceLevel extends Record {
9 
18  public $name;
19 
28  public $discountpct;
29 
39 
48  public $isOnline;
49 
58  public $isInactive;
59 
68  public $internalId;
69 
78  public $externalId;
79 
80 
81 
82  static $paramtypesmap = array(
83 
84  "name" => "string",
85 
86  "discountpct" => "float",
87 
88  "updateExistingPrices" => "boolean",
89 
90  "isOnline" => "boolean",
91 
92  "isInactive" => "boolean",
93 
94  "internalId" => "string",
95 
96  "externalId" => "string",
97 
98  );
99 
100 }
$updateExistingPrices
Definition: PriceLevel.php:38
static $paramtypesmap
Definition: PriceLevel.php:82
Definition: Record.php:8