Netsutie PHP Toolkit
CurrencyRate.php
Go to the documentation of this file.
1 <?php
8 class CurrencyRate extends Record {
9 
18  public $baseCurrency;
19 
29 
38  public $exchangeRate;
39 
49 
58  public $internalId;
59 
60 
61 
62  static $paramtypesmap = array(
63 
64  "baseCurrency" => "RecordRef",
65 
66  "transactionCurrency" => "RecordRef",
67 
68  "exchangeRate" => "float",
69 
70  "effectiveDate" => "dateTime",
71 
72  "internalId" => "string",
73 
74  );
75 
76 }
static $paramtypesmap
Definition: Record.php:8