-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathAmendment6.go
27 lines (20 loc) · 962 Bytes
/
Amendment6.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
package iso20022
// Details of the amendment.
type Amendment6 struct {
// Contents of the related proposed Undertaking Amendment message.
UndertakingAmendmentMessage *UndertakingAmendmentMessage1 `xml:"UdrtkgAmdmntMsg"`
// Unique and unambiguous identifier assigned by the applicant to the undertaking.
ApplicantReferenceNumber *Max35Text `xml:"ApplcntRefNb,omitempty"`
// Additional information related to the notification.
AdditionalInformation []*Max2000Text `xml:"AddtlInf,omitempty"`
}
func (a *Amendment6) AddUndertakingAmendmentMessage() *UndertakingAmendmentMessage1 {
a.UndertakingAmendmentMessage = new(UndertakingAmendmentMessage1)
return a.UndertakingAmendmentMessage
}
func (a *Amendment6) SetApplicantReferenceNumber(value string) {
a.ApplicantReferenceNumber = (*Max35Text)(&value)
}
func (a *Amendment6) AddAdditionalInformation(value string) {
a.AdditionalInformation = append(a.AdditionalInformation, (*Max2000Text)(&value))
}