1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
// Package client provides a high level API for HBCI-Requests
//
// The main types of this package are the Config and the Client itself. The
//
// Config provides general information about the account to use. It should be
// sufficient to provide a config with BankID (i.e. 'Bankleitzahl, BLZ),
// AccountID (i.e. Kontonummer) and the PIN. The fields URL and HBCIVersion
// are optional fields for users with deeper knowledge about the bank institute
// and its HBCI endpoints. If one of these is not provided it will be looked up
// from the bankinfo package.
//
// Client provides a convenient way of issuing certain requests to the HBCI
// server. All low level APIs are queried from the Client and it returns only
// types from the domain package.
package client
|