-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathATMService9.go
33 lines (24 loc) · 1.05 KB
/
ATMService9.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
package iso20022
// Withdrawal service provided by the ATM inside the session.
type ATMService9 struct {
// Unique identification of the withdrawal service provided by the ATM inside the session.
ServiceReference *Max35Text `xml:"SvcRef,omitempty"`
// Codification of the type of service for the ATM.
ATMServiceCode *Max35Text `xml:"ATMSvcCd,omitempty"`
// Describes the type of transaction selected by the customer.
ServiceType *ATMServiceType1Code `xml:"SvcTp"`
// Identification of the variant of the service.
ServiceVariantIdentification []*Max35Text `xml:"SvcVarntId,omitempty"`
}
func (a *ATMService9) SetServiceReference(value string) {
a.ServiceReference = (*Max35Text)(&value)
}
func (a *ATMService9) SetATMServiceCode(value string) {
a.ATMServiceCode = (*Max35Text)(&value)
}
func (a *ATMService9) SetServiceType(value string) {
a.ServiceType = (*ATMServiceType1Code)(&value)
}
func (a *ATMService9) AddServiceVariantIdentification(value string) {
a.ServiceVariantIdentification = append(a.ServiceVariantIdentification, (*Max35Text)(&value))
}