-
Notifications
You must be signed in to change notification settings - Fork 200
/
BulkGLClassification.php
62 lines (58 loc) · 2.79 KB
/
BulkGLClassification.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
57
58
59
60
61
62
<?php
namespace Picqer\Financials\Exact;
/**
* Class BulkGLClassification.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=BulkFinancialGLClassifications
*
* @property string $ID Primary key
* @property bool $Abstract Abstract elements are only used in presentation linkbases to group other elements. They are not supposed to be used in instance documents
* @property string $Balance Only used for amount concepts: in that case either 'debit' or 'credit'
* @property string $Code The Code is unique
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $Description Description of the element. Note that this description is only used for division-specific taxonomies (or reporting schemes).
* @property int $Division Division is optional. For taxonomies of Taxonomies.Type = 0 (general taxonomies), the Division is empty. For division specific taxonomies it is mandatory
* @property bool $IsTupleSubElement Obsolete
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $Name The Name is unique in the namespace
* @property bool $Nillable Determines whether usage of the element is mandatory in an instance document
* @property string $Parent Parent element for reporting schemes. In a reporting scheme, an element can have only one parent. This column is only used for reporting schemes. Note that in a real taxonomy, elements can have multiple parents.
* @property string $PeriodType Only used for item concepts: either 'instant' or 'duration'. 'instant' is used for balance types of concepts, 'duration' is used for P&L types of concepts
* @property string $SubstitutionGroup Mostly import sutstitutiongroup is xbrli:tuple, which makes the element a tuple concept. The default substitutiongroup for item concepts is xbrli:item
* @property string $TaxonomyNamespace Namespace of the element
* @property string $TaxonomyNamespaceDescription Description of TaxonomyNamespace
* @property string $Type Type of the element
*/
class BulkGLClassification extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Abstract',
'Balance',
'Code',
'Created',
'Creator',
'CreatorFullName',
'Description',
'Division',
'IsTupleSubElement',
'Modified',
'Modifier',
'ModifierFullName',
'Name',
'Nillable',
'Parent',
'PeriodType',
'SubstitutionGroup',
'TaxonomyNamespace',
'TaxonomyNamespaceDescription',
'Type',
];
protected $url = 'bulk/Financial/GLClassifications';
}