-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIATBatchHeaderRecord.cs
70 lines (47 loc) · 2.19 KB
/
IATBatchHeaderRecord.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
58
59
60
61
62
63
64
65
66
67
68
69
70
using Newtonsoft.Json;
namespace NACHAParser
{
public class IATBatchHeaderRecord
{
#region Properties
[JsonProperty("iatBchHeaderId")]
public string IatBchHeaderId { get; set; } = string.Empty;
[JsonProperty("recType")]
public RecordType RecType { get; set; }
[JsonProperty("serviceClassCode")]
public ServiceClassCode ServiceClassCode { get; set; }
[JsonProperty("iatIndicator")]
public string IatIndicator { get; set; } = string.Empty;
[JsonProperty("foreignExchangeIndicator")]
public string ForeignExchangeIndicator { get; set; } = string.Empty;
[JsonProperty("foreignRefIndicator")]
public string ForeignRefIndicator { get; set; } = string.Empty;
[JsonProperty("foreignRef")]
public int ForeignRef { get; set; }
[JsonProperty("isoDestionationCountryCode")]
public int IsoDestionationCountryCode { get; set; }
[JsonProperty("originatingDFIId")]
public string OriginatingDFIId { get; set; } = string.Empty;
[JsonProperty("originatorId")]
public string OriginatorId { get; set; } = string.Empty;
[JsonProperty("SECCode")]
public string SECCode { get; set; } = string.Empty;
[JsonProperty("coEntryDescription")]
public string CoEntryDescription { get; set; } = string.Empty;
[JsonProperty("isoOriginatingCurrencyCode")]
public string IsoOriginatingCurrencyCode { get; set; } = string.Empty;
[JsonProperty("isoDestionationCurrencyCode")]
public string IsoDestionationCurrencyCode { get; set; } = string.Empty;
[JsonProperty("effectiveDate")]
public string EffectiveDate { get; set; } = string.Empty;
[JsonProperty("SettlementDate")]
public string SettlementDate { get; set; } = string.Empty;
[JsonProperty("originatorStatusCode")]
public string OriginatorStatusCode { get; set; } = string.Empty;
[JsonProperty("goIdOriginatingDfiId")]
public string GoIdOriginatingDfiId { get; set; } = string.Empty;
[JsonProperty("bchNum")]
public string BchNum { get; set; } = string.Empty;
#endregion
}
}