-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from holtkamp/patch-ledger-account-booking
Add LedgerAccountBooking Entity
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/Picqer/Financials/Moneybird/Entities/LedgerAccountBooking.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php namespace Picqer\Financials\Moneybird\Entities; | ||
|
||
use Picqer\Financials\Moneybird\Actions\FindAll; | ||
use Picqer\Financials\Moneybird\Actions\FindOne; | ||
use Picqer\Financials\Moneybird\Actions\Removable; | ||
use Picqer\Financials\Moneybird\Actions\Storable; | ||
use Picqer\Financials\Moneybird\Model; | ||
|
||
/** | ||
* Class LedgerAccountBooking | ||
* @package Picqer\Financials\Moneybird\Entities | ||
* | ||
* @property string $id | ||
* @property string $administration_id | ||
* @property string $ledger_account_id | ||
* @property string $description | ||
* @property string $price | ||
* @property string $created_at | ||
* @property string $updated_at | ||
*/ | ||
class LedgerAccountBooking extends Model { | ||
|
||
/** | ||
* @var array | ||
*/ | ||
protected $fillable = [ | ||
'id', | ||
'administration_id', | ||
'ledger_account_id', | ||
'description', | ||
'price', | ||
'created_at', | ||
'updated_at', | ||
]; | ||
|
||
} |