File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,11 @@ $response = $api->paymentCondition()->getAll();
183183$response = $api->postingCategory()->getAll();
184184```
185185
186+ ### Print Layouts Endpoint
187+ ``` php
188+ $response = $api->printLayout()->getAll();
189+ ```
190+
186191### Profile Endpoint
187192``` php
188193$response = $api->profile()->get();
Original file line number Diff line number Diff line change 2424use Sysix \LexOffice \Clients \Payment ;
2525use Sysix \LexOffice \Clients \PaymentCondition ;
2626use Sysix \LexOffice \Clients \PostingCategory ;
27+ use Sysix \LexOffice \Clients \PrintLayout ;
2728use Sysix \LexOffice \Clients \Profile ;
2829use Sysix \LexOffice \Clients \Quotation ;
2930use Sysix \LexOffice \Clients \RecurringTemplate ;
@@ -149,6 +150,11 @@ public function postingCategory(): PostingCategory
149150 return new PostingCategory ($ this );
150151 }
151152
153+ public function printLayout (): PrintLayout
154+ {
155+ return new PrintLayout ($ this );
156+ }
157+
152158 public function profile (): Profile
153159 {
154160 return new Profile ($ this );
Original file line number Diff line number Diff line change 1919use Sysix \LexOffice \Clients \Payment ;
2020use Sysix \LexOffice \Clients \PaymentCondition ;
2121use Sysix \LexOffice \Clients \PostingCategory ;
22+ use Sysix \LexOffice \Clients \PrintLayout ;
2223use Sysix \LexOffice \Clients \Profile ;
2324use Sysix \LexOffice \Clients \Quotation ;
2425use Sysix \LexOffice \Clients \RecurringTemplate ;
@@ -52,6 +53,7 @@ public function testClients(): void
5253 $ this ->assertInstanceOf (Payment::class, $ stub ->payment ());
5354 $ this ->assertInstanceOf (PaymentCondition::class, $ stub ->paymentCondition ());
5455 $ this ->assertInstanceOf (PostingCategory::class, $ stub ->postingCategory ());
56+ $ this ->assertInstanceOf (PrintLayout::class, $ stub ->printLayout ());
5557 $ this ->assertInstanceOf (Profile::class, $ stub ->profile ());
5658 $ this ->assertInstanceOf (Quotation::class, $ stub ->quotation ());
5759 $ this ->assertInstanceOf (RecurringTemplate::class, $ stub ->recurringTemplate ());
You can’t perform that action at this time.
0 commit comments