Skip to content

Commit

Permalink
Merge pull request #441 from vdhicts/master
Browse files Browse the repository at this point in the history
Add subscription line type entity
  • Loading branch information
stephangroen authored Dec 9, 2020
2 parents 9fa6f6b + 7a98b46 commit b4cc4e4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/Picqer/Financials/Exact/SubscriptionLineType.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

namespace Picqer\Financials\Exact;

/**
* Class SubscriptionLineType.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=SubscriptionSubscriptionLineTypes
*
* @property string $ID Primary key
* @property string $Description Description
*/
class SubscriptionLineType extends Model
{
use Query\Findable;
use Persistance\Storable;

protected $fillable = [
'ID',
'Description',
];

protected $url = 'subscription/SubscriptionLineTypes';
}

0 comments on commit b4cc4e4

Please sign in to comment.