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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
package segment
import (
"github.com/mitch000001/go-hbci"
"github.com/mitch000001/go-hbci/domain"
"github.com/mitch000001/go-hbci/element"
)
const productName = "5A624F86A785F4024DD914404"
const productVersion = hbci.Version
func NewDialogEndSegment(dialogId string) *DialogEndSegment {
d := &DialogEndSegment{
DialogID: element.NewIdentification(dialogId),
}
d.ClientSegment = NewBasicSegment(3, d)
return d
}
type DialogEndSegment struct {
ClientSegment
DialogID *element.IdentificationDataElement
}
func (d *DialogEndSegment) Version() int { return 1 }
func (d *DialogEndSegment) ID() string { return "HKEND" }
func (d *DialogEndSegment) referencedId() string { return "" }
func (d *DialogEndSegment) sender() string { return senderUser }
func (d *DialogEndSegment) elements() []element.DataElement {
return []element.DataElement{
d.DialogID,
}
}
const ProcessingPreparationID = "HKVVB"
func NewProcessingPreparationSegmentV2(bdpVersion int, udpVersion int, language domain.Language) *ProcessingPreparationSegmentV2 {
p := &ProcessingPreparationSegmentV2{
BPDVersion: element.NewNumber(bdpVersion, 3),
UPDVersion: element.NewNumber(udpVersion, 3),
DialogLanguage: element.NewNumber(int(language), 3),
ProductName: element.NewAlphaNumeric(productName, 25),
ProductVersion: element.NewAlphaNumeric(productVersion, 5),
}
p.ClientSegment = NewBasicSegment(4, p)
return p
}
func NewProcessingPreparationSegmentV3(bdpVersion int, udpVersion int, language domain.Language) *ProcessingPreparationSegmentV3 {
p := &ProcessingPreparationSegmentV3{
BPDVersion: element.NewNumber(bdpVersion, 3),
UPDVersion: element.NewNumber(udpVersion, 3),
DialogLanguage: element.NewNumber(int(language), 3),
ProductName: element.NewAlphaNumeric(productName, 25),
ProductVersion: element.NewAlphaNumeric(productVersion, 5),
}
p.ClientSegment = NewBasicSegment(4, p)
return p
}
type ProcessingPreparationSegmentV2 struct {
ClientSegment
BPDVersion *element.NumberDataElement
UPDVersion *element.NumberDataElement
// 0 for undefined
// Sprachkennzeichen | Bedeutung | Sprachencode ISO 639 | ISO 8859 Subset | ISO 8859- Codeset
// --------------------------------------------------------------------------------------------
// 1 | Deutsch | de (German)  | Deutsch   | 1 (Latin 1)
// 2 | Englisch | en (English) | Englisch | 1 (Latin 1)
// 3 | Französisch | fr (French) | Französisch  | 1 (Latin 1)
DialogLanguage *element.NumberDataElement
ProductName *element.AlphaNumericDataElement
ProductVersion *element.AlphaNumericDataElement
}
func (p *ProcessingPreparationSegmentV2) Version() int { return 2 }
func (p *ProcessingPreparationSegmentV2) ID() string { return ProcessingPreparationID }
func (p *ProcessingPreparationSegmentV2) referencedId() string { return "" }
func (p *ProcessingPreparationSegmentV2) sender() string { return senderUser }
func (p *ProcessingPreparationSegmentV2) elements() []element.DataElement {
return []element.DataElement{
p.BPDVersion,
p.UPDVersion,
p.DialogLanguage,
p.ProductName,
p.ProductVersion,
}
}
type ProcessingPreparationSegmentV3 struct {
ClientSegment
BPDVersion *element.NumberDataElement
UPDVersion *element.NumberDataElement
// 0 for Standard = Institute language
// Sprachkennzeichen | Bedeutung | Sprachencode ISO 639 | ISO 8859 Subset | ISO 8859- Codeset
// --------------------------------------------------------------------------------------------
// 1 | Deutsch | de (German)  | Deutsch   | 1 (Latin 1)
// 2 | Englisch | en (English) | Englisch | 1 (Latin 1)
// 3 | Französisch | fr (French) | Französisch  | 1 (Latin 1)
DialogLanguage *element.NumberDataElement
ProductName *element.AlphaNumericDataElement
ProductVersion *element.AlphaNumericDataElement
}
func (p *ProcessingPreparationSegmentV3) Version() int { return 3 }
func (p *ProcessingPreparationSegmentV3) ID() string { return ProcessingPreparationID }
func (p *ProcessingPreparationSegmentV3) referencedId() string { return "" }
func (p *ProcessingPreparationSegmentV3) sender() string { return senderUser }
func (p *ProcessingPreparationSegmentV3) elements() []element.DataElement {
return []element.DataElement{
p.BPDVersion,
p.UPDVersion,
p.DialogLanguage,
p.ProductName,
p.ProductVersion,
}
}
|