File: doc.go

package info (click to toggle)
golang-github-mitch000001-go-hbci 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,468 kB
  • sloc: java: 1,092; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 768 bytes parent folder | download | duplicates (2)
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