-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathATMService4.go
33 lines (24 loc) · 973 Bytes
/
ATMService4.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
// Service provided by the ATM inside the session.
type ATMService4 struct {
// Unique identification of the 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"`
// Codification of the type of service for the host.
HostServiceCode *Max35Text `xml:"HstSvcCd,omitempty"`
// Describes the type of withdrawal selected by the customer.
ServiceType *ATMServiceType5Code `xml:"SvcTp"`
}
func (a *ATMService4) SetServiceReference(value string) {
a.ServiceReference = (*Max35Text)(&value)
}
func (a *ATMService4) SetATMServiceCode(value string) {
a.ATMServiceCode = (*Max35Text)(&value)
}
func (a *ATMService4) SetHostServiceCode(value string) {
a.HostServiceCode = (*Max35Text)(&value)
}
func (a *ATMService4) SetServiceType(value string) {
a.ServiceType = (*ATMServiceType5Code)(&value)
}