C# Class DineroPortableClientSDK.Accounts.DineroAccounts

Inheritance: DineroLibaryBase
Mostra file Open project: DineroRegnskab/dinero-csharp-sdk

Public Methods

Method Description
DepositAccountsGetListAsync ( string fields = "Name,AccountNumber" ) : Task

Gets a list of all the deposit accounts for the organization.

EntryAccountsGetList ( string categoryFilter = null, string fields = "Name,AccountNumber,VatCode,Category" ) : AccountCollection

Gets a list of all the entry accounts for the organization.

EntryAccountsGetListAsync ( string categoryFilter = null, string fields = "Name,AccountNumber,VatCode,Category" ) : Task

Gets a list of all the entry accounts for the organization.

Private Methods

Method Description
DineroAccounts ( Dinero dinero ) : System.Collections.Generic

Method Details

DepositAccountsGetListAsync() public method

Gets a list of all the deposit accounts for the organization.
public DepositAccountsGetListAsync ( string fields = "Name,AccountNumber" ) : Task
fields string A comma separated list of fields to include in the response. /// Possible values are Name, AccountNumber. Notice that it's not case sensitive, the property name will be returned the way you request it. /// If left empty it defaults to AccountNumber and Name.
return Task

EntryAccountsGetList() public method

Gets a list of all the entry accounts for the organization.
public EntryAccountsGetList ( string categoryFilter = null, string fields = "Name,AccountNumber,VatCode,Category" ) : AccountCollection
categoryFilter string /// Filters the accounts, so only accounts with the selected category are returned. /// Possible categories: Turnover, Variable Expenses, Salary, Sales Expenses, Property Expenses, Administration Expenses, /// Travel Expenses, Depreciation, Interest Income, Interest Expenses, Property, Turnover Assets, Financial Assets, Receivables, /// Liquid Assets, Equity, Long Term Debt, Short Term Debt, Vat Due, Salary Due, Analysis, Not Set, Tax, Charge, IntangibleProperty ///
fields string A comma separated list of fields to include in the response. /// Possible values are Name, AccountNumber, VatCode and Category. Notice that it's not case sensitive, the property name will be returned the way you request it. /// If left empty it defaults to AccountNumber and Name.
return AccountCollection

EntryAccountsGetListAsync() public method

Gets a list of all the entry accounts for the organization.
public EntryAccountsGetListAsync ( string categoryFilter = null, string fields = "Name,AccountNumber,VatCode,Category" ) : Task
categoryFilter string /// Filters the accounts, so only accounts with the selected category are returned. /// Possible categories: Turnover, Variable Expenses, Salary, Sales Expenses, Property Expenses, Administration Expenses, /// Travel Expenses, Depreciation, Interest Income, Interest Expenses, Property, Turnover Assets, Financial Assets, Receivables, /// Liquid Assets, Equity, Long Term Debt, Short Term Debt, Vat Due, Salary Due, Analysis, Not Set, Tax, Charge, IntangibleProperty ///
fields string A comma separated list of fields to include in the response. /// Possible values are Name, AccountNumber, VatCode and Category. Notice that it's not case sensitive, the property name will be returned the way you request it. /// If left empty it defaults to AccountNumber and Name.
return Task