-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathAdditionalParameters21.go
61 lines (44 loc) · 2.74 KB
/
AdditionalParameters21.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
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
package iso20022
// Specifies additional parameters to the message or transaction.
type AdditionalParameters21 struct {
// Specifies partial settlement information.
PartialSettlement *PartialSettlement2Code `xml:"PrtlSttlm,omitempty"`
// Identification of the confirmation previously sent to confirm the partial settlement of a transaction.
PreviousPartialConfirmationIdentification *Max35Text `xml:"PrvsPrtlConfId,omitempty"`
// Unambiguous identification of the transaction as known by the account owner (or the instructing party managing the account).
AccountOwnerTransactionIdentification *Max35Text `xml:"AcctOwnrTxId,omitempty"`
// Unambiguous identification of the transaction as known by the account servicer.
AccountServicerTransactionIdentification *Max35Text `xml:"AcctSvcrTxId,omitempty"`
// Collective reference identifying a set of messages.
PoolIdentification *Max35Text `xml:"PoolId,omitempty"`
// Identification assigned by the account servicer to unambiguously identify a corporate action event.
CorporateActionEventIdentification *Max35Text `xml:"CorpActnEvtId,omitempty"`
// Identification of a transaction assigned by a market infrastructure other than a central securities depository, for example, Target2-Securities.
MarketInfrastructureTransactionIdentification *Max35Text `xml:"MktInfrstrctrTxId,omitempty"`
// Identification of the transaction assigned by the processor of the instruction other than the account owner the account servicer and the market infrastructure.
ProcessorTransactionIdentification *Max35Text `xml:"PrcrTxId,omitempty"`
}
func (a *AdditionalParameters21) SetPartialSettlement(value string) {
a.PartialSettlement = (*PartialSettlement2Code)(&value)
}
func (a *AdditionalParameters21) SetPreviousPartialConfirmationIdentification(value string) {
a.PreviousPartialConfirmationIdentification = (*Max35Text)(&value)
}
func (a *AdditionalParameters21) SetAccountOwnerTransactionIdentification(value string) {
a.AccountOwnerTransactionIdentification = (*Max35Text)(&value)
}
func (a *AdditionalParameters21) SetAccountServicerTransactionIdentification(value string) {
a.AccountServicerTransactionIdentification = (*Max35Text)(&value)
}
func (a *AdditionalParameters21) SetPoolIdentification(value string) {
a.PoolIdentification = (*Max35Text)(&value)
}
func (a *AdditionalParameters21) SetCorporateActionEventIdentification(value string) {
a.CorporateActionEventIdentification = (*Max35Text)(&value)
}
func (a *AdditionalParameters21) SetMarketInfrastructureTransactionIdentification(value string) {
a.MarketInfrastructureTransactionIdentification = (*Max35Text)(&value)
}
func (a *AdditionalParameters21) SetProcessorTransactionIdentification(value string) {
a.ProcessorTransactionIdentification = (*Max35Text)(&value)
}