forked from moov-io/wire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverPayment.go
More file actions
23 lines (21 loc) · 732 Bytes
/
coverPayment.go
File metadata and controls
23 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2020 The Moov Authors
// Use of this source code is governed by an Apache License
// license that can be found in the LICENSE file.
package wire
// CoverPayment is cover payment data
type CoverPayment struct {
// SwiftFieldTag
SwiftFieldTag string `json:"swiftFieldTag,omitempty"`
// SwiftLineOne
SwiftLineOne string `json:"swiftLineOne,omitempty"`
// SwiftLineTwo
SwiftLineTwo string `json:"swiftLineTwo,omitempty"`
// SwiftLineThree
SwiftLineThree string `json:"swiftLineThree,omitempty"`
// SwiftLineFour
SwiftLineFour string `json:"swiftLineFour,omitempty"`
// SwiftLineFive
SwiftLineFive string `json:"swiftLineFive,omitempty"`
// SwiftLineSix
SwiftLineSix string `json:"swiftLineSix,omitempty"`
}