Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Jan 2, 2024
1 parent c875eac commit 6c9fbf6
Show file tree
Hide file tree
Showing 53 changed files with 2,396 additions and 3,097 deletions.
21 changes: 11 additions & 10 deletions src/ApiException.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions src/Billingo.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,47 +22,47 @@ class Billingo
/**
* The bank account service instance.
*/
protected BankAccountApi $bankAccounts;
protected ?BankAccountApi $bankAccounts = null;

/**
* The currencies service instance.
*/
protected CurrencyApi $currencies;
protected ?CurrencyApi $currencies = null;

/**
* The document service instance.
*/
protected DocumentApi $documents;
protected ?DocumentApi $documents = null;

/**
* The document export service instance.
*/
protected DocumentExportApi $documentExports;
protected ?DocumentExportApi $documentExports = null;

/**
* The organization service instance.
*/
protected OrganizationApi $organizations;
protected ?OrganizationApi $organizations = null;

/**
* The partner service instance.
*/
protected PartnerApi $partners;
protected ?PartnerApi $partners = null;

/**
* The product service instance.
*/
protected ProductApi $products;
protected ?ProductApi $products = null;

/**
* The spending service instance.
*/
protected SpendingApi $spendings;
protected ?SpendingApi $spendings = null;

/**
* The util service instance.
*/
protected UtilApi $utils;
protected ?UtilApi $utils = null;

/**
* Create a new Billingo client.
Expand Down
Loading

0 comments on commit 6c9fbf6

Please sign in to comment.