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