forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProfitLossOverview.php
56 lines (51 loc) · 1.93 KB
/
ProfitLossOverview.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace Picqer\Financials\Exact;
/**
* Class ProfitLossOverview
*
* @package Picqer\Financials\Exact
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=ReadFinancialProfitLossOverview
*
* @property Int32 $CurrentYear Current year, Primary key
* @property Double $CostsCurrentPeriod Costs in current period
* @property Double $CostsCurrentYear Costs in current year
* @property Double $CostsPreviousYear Costs in previous year
* @property Double $CostsPreviousYearPeriod Costs in period of previous year
* @property String $CurrencyCode Currency Code
* @property Int32 $CurrentPeriod Current period
* @property Int32 $PreviousYear Previous year
* @property Int32 $PreviousYearPeriod Period in previous year
* @property Double $ResultCurrentPeriod Results of current period
* @property Double $ResultCurrentYear
* @property Double $ResultPreviousYear
* @property Double $ResultPreviousYearPeriod Results of period in previous year
* @property Double $RevenueCurrentPeriod Revenue in current period
* @property Double $RevenueCurrentYear Revenue in current year
* @property Double $RevenuePreviousYear Revenue in previous year
* @property Double $RevenuePreviousYearPeriod Revenue in period of previous year
*/
class ProfitLossOverview extends Model
{
use Query\Findable;
protected $primaryKey = 'CurrentYear';
protected $fillable = [
'CostsCurrentPeriod',
'CostsCurrentYear',
'CostsPreviousYear',
'CostsPreviousYearPeriod',
'CurrencyCode',
'CurrentYear',
'CurrentPeriod',
'PreviousYear',
'PreviousYearPeriod',
'ResultCurrentPeriod',
'ResultCurrentYear',
'ResultPreviousYear',
'ResultPreviousYearPeriod',
'RevenueCurrentPeriod',
'RevenueCurrentYear',
'RevenuePreviousYear',
'RevenuePreviousPeriod',
];
protected $url = 'read/financial/ProfitLossOverview';
}