-
Notifications
You must be signed in to change notification settings - Fork 0
/
IATBatchControlRecord.cs
49 lines (33 loc) · 1.33 KB
/
IATBatchControlRecord.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
using Newtonsoft.Json;
namespace NACHAParser
{
public class IATBatchTrailer
{
#region Properties
[JsonProperty("iatBchControlId")]
public string IatBchControlId { get; set; }= string.Empty;
[JsonProperty("recType")]
public RecordType RecType { get; set; }
[JsonProperty("serviceClass")]
public ServiceClassCode ServiceClassCode { get; set; }
[JsonProperty("entAddendaCnt")]
public string EntAddendaCnt { get; set; }= string.Empty;
[JsonProperty("entHash")]
public string EntHash { get; set; }= string.Empty;
[JsonProperty("totBchDrEntAmt")]
public string TotBchDrEntAmt { get; set; }= string.Empty;
[JsonProperty("totBchCrEntAmt")]
public string TotBchCrEntAmt { get; set; }= string.Empty;
[JsonProperty("coId")]
public string CoId { get; set; }= string.Empty;
[JsonProperty("messageAuthCode")]
public string MessageAuthCode { get; set; }= string.Empty;
[JsonProperty("Reserved")]
public string Reserved { get; set; }= string.Empty;
[JsonProperty("originatingDFIId")]
public string OriginatingDFIId { get; set; }= string.Empty;
[JsonProperty("bchNum")]
public string BchNum { get; set; }= string.Empty;
#endregion
}
}