-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathRecurringPaymentPlan.java
More file actions
executable file
·176 lines (136 loc) · 3.69 KB
/
RecurringPaymentPlan.java
File metadata and controls
executable file
·176 lines (136 loc) · 3.69 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
//
// 9/17/2015 1:32:18 PM
//
package SecureNetRestApiSDK.Api.Models;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class RecurringPaymentPlan
{
private String cycleType = new String();
public String getCycleType() {
return cycleType;
}
public void setCycleType(String value) {
cycleType = value;
}
private int dayOfTheMonth;
public int getDayOfTheMonth() {
return dayOfTheMonth;
}
public void setDayOfTheMonth(int value) {
dayOfTheMonth = value;
}
private int dayOfTheWeek;
public int getDayOfTheWeek() {
return dayOfTheWeek;
}
public void setDayOfTheWeek(int value) {
dayOfTheWeek = value;
}
private int month;
public int getMonth() {
return month;
}
public void setMonth(int value) {
month = value;
}
private int frequency;
public int getFrequency() {
return frequency;
}
public void setFrequency(int value) {
frequency = value;
}
private Date endDate = new Date();
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date value) {
endDate = value;
}
private boolean active;
public boolean getActive() {
return active;
}
public void setActive(boolean value) {
active = value;
}
private String notes = new String();
public String getNotes() {
return notes;
}
public void setNotes(String value) {
notes = value;
}
private int planId;
public int getPlanId() {
return planId;
}
public void setPlanId(int value) {
planId = value;
}
private double amount;
public double getAmount() {
return amount;
}
public void setAmount(double value) {
amount = value;
}
private Date startDate = new Date();
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date value) {
startDate = value;
}
private Date nextPaymentDate = new Date();
public Date getNextPaymentDate() {
return nextPaymentDate;
}
public void setNextPaymentDate(Date value) {
nextPaymentDate = value;
}
private int maxRetries;
public int getMaxRetries() {
return maxRetries;
}
public void setMaxRetries(int value) {
maxRetries = value;
}
private String primaryPaymentMethodId = new String();
public String getPrimaryPaymentMethodId() {
return primaryPaymentMethodId;
}
public void setPrimaryPaymentMethodId(String value) {
primaryPaymentMethodId = value;
}
private String secondaryPaymentMethodId = new String();
public String getSecondaryPaymentMethodId() {
return secondaryPaymentMethodId;
}
public void setSecondaryPaymentMethodId(String value) {
secondaryPaymentMethodId = value;
}
private List<UserDefinedField> userDefinedFields = new ArrayList<UserDefinedField>();
public List<UserDefinedField> getUserDefinedFields() {
return userDefinedFields;
}
public void setUserDefinedFields(List<UserDefinedField> value) {
userDefinedFields = value;
}
private String softDescriptor = new String();
public String getSoftDescriptor() {
return softDescriptor;
}
public void setSoftDescriptor(String value) {
softDescriptor = value;
}
private String dynamicMCC = new String();
public String getDynamicMCC() {
return dynamicMCC;
}
public void setDynamicMCC(String value) {
dynamicMCC = value;
}
}