Netsutie PHP Toolkit
State.php
Go to the documentation of this file.
1 <?php
8 class State extends Record {
9 
18  public $country;
19 
28  public $fullName;
29 
38  public $shortname;
39 
48  public $internalId;
49 
50 
51 
52  static $paramtypesmap = array(
53 
54  "country" => "Country",
55 
56  "fullName" => "string",
57 
58  "shortname" => "string",
59 
60  "internalId" => "string",
61 
62  );
63 
64 }
Definition: State.php:8
$internalId
Definition: State.php:48
$shortname
Definition: State.php:38
$fullName
Definition: State.php:28
static $paramtypesmap
Definition: State.php:52
$country
Definition: State.php:18
Definition: Record.php:8