-
Notifications
You must be signed in to change notification settings - Fork 0
/
IATEntryDetailRecord.cs
57 lines (39 loc) · 1.73 KB
/
IATEntryDetailRecord.cs
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
using Newtonsoft.Json;
namespace NACHAParser
{
public class IATEntryDetailRecord
{
#region Properties
[JsonProperty("iatEntDetailId")]
public string IatEntDetailId { get; set; } = string.Empty;
[JsonProperty("recType")]
public RecordType RecType { get; set; }
[JsonProperty("transcode")]
public TransactionCode TransCode { get; set; }
[JsonProperty("GoReceivingDFIId")]
public string GoReceivingDFIId { get; set; } = string.Empty;
[JsonProperty("checkDigit")]
public string CheckDigit { get; set; } = string.Empty;
[JsonProperty("AddendaRecordsNum")]
public string AddendaRecordsNum { get; set; } = string.Empty;
[JsonProperty("reserved1")]
public string Reserved1 { get; set; } = string.Empty;
[JsonProperty("amt")]
public string Amt { get; set; } = string.Empty;
[JsonProperty("ForeignDfiNum")]
public string ForeignDfiNum { get; set; } = string.Empty;
[JsonProperty("reserved2")]
public string Reserved2 { get; set; } = string.Empty;
[JsonProperty("GatewayOFACIndicator")]
public string GatewayOFACIndicator { get; set; } = string.Empty;
[JsonProperty("secondaryOFACIndicator")]
public string SecondaryOFACIndicator { get; set; } = string.Empty;
[JsonProperty("addendaRecordIndicator")]
public AddendaRecordIndicator AddendaRecordIndicator { get; set; }
[JsonProperty("traceNum")]
public string TraceNum { get; set; } = string.Empty;
[JsonProperty("IATaddendaRecords")]
public List<IATAddendaRecord> IATAddendaRecords { get; set; } = new List<IATAddendaRecord>();
#endregion
}
}