-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprogram.php
More file actions
33 lines (30 loc) · 842 Bytes
/
program.php
File metadata and controls
33 lines (30 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
//see: http://docs.corepro.io/api/Program/
class Program {
public $allowedAccountType;
public $decimalCount;
public $filledDate;
public $isInteresteEnabled;
public $isInternalToInternalTransferEnabled;
public $isRecurringContributionEnabled;
public $name;
public $perProgramDailyDepositLimit;
public $perProgramDailyWithdrawLimit;
public $perTransactionDepositLimit;
public $perTransactionWithdrawLimit;
public $perUserDailyDepositLimit;
public $perUserDailyWithdrawLimit;
public $perUserMonthlyDepositLimit;
public $perUserMonthlyWithdrawLimit;
public $regDFeeAmount;
public $regDMonthlyTransactionWithdrawCountMax;
public $timeZone;
public $verificationType;
public $website;
public function Get(){
$requestor = new Requestor();
$model = $requestor->Get("/program/get", "Program");
return $model;
}
}
?>