-
Notifications
You must be signed in to change notification settings - Fork 1
/
accounting.go
54 lines (50 loc) · 1.92 KB
/
accounting.go
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
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
package gosdk
type Accounting struct {
Accounts *PanoraAccounts
Addresses *Addresses
Attachments *Attachments
Balancesheets *Balancesheets
Cashflowstatements *Cashflowstatements
Companyinfos *Companyinfos
Contacts *PanoraAccountingContacts
Creditnotes *Creditnotes
Expenses *Expenses
Incomestatements *Incomestatements
Invoices *Invoices
Items *Items
Journalentries *Journalentries
Payments *Payments
Phonenumbers *Phonenumbers
Purchaseorders *Purchaseorders
Taxrates *Taxrates
Trackingcategories *Trackingcategories
Transactions *Transactions
Vendorcredits *Vendorcredits
sdkConfiguration sdkConfiguration
}
func newAccounting(sdkConfig sdkConfiguration) *Accounting {
return &Accounting{
sdkConfiguration: sdkConfig,
Accounts: newPanoraAccounts(sdkConfig),
Addresses: newAddresses(sdkConfig),
Attachments: newAttachments(sdkConfig),
Balancesheets: newBalancesheets(sdkConfig),
Cashflowstatements: newCashflowstatements(sdkConfig),
Companyinfos: newCompanyinfos(sdkConfig),
Contacts: newPanoraAccountingContacts(sdkConfig),
Creditnotes: newCreditnotes(sdkConfig),
Expenses: newExpenses(sdkConfig),
Incomestatements: newIncomestatements(sdkConfig),
Invoices: newInvoices(sdkConfig),
Items: newItems(sdkConfig),
Journalentries: newJournalentries(sdkConfig),
Payments: newPayments(sdkConfig),
Phonenumbers: newPhonenumbers(sdkConfig),
Purchaseorders: newPurchaseorders(sdkConfig),
Taxrates: newTaxrates(sdkConfig),
Trackingcategories: newTrackingcategories(sdkConfig),
Transactions: newTransactions(sdkConfig),
Vendorcredits: newVendorcredits(sdkConfig),
}
}