-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathOutboundFaxStructure.java
More file actions
224 lines (173 loc) · 4.83 KB
/
OutboundFaxStructure.java
File metadata and controls
224 lines (173 loc) · 4.83 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package net.interfax.rest.client.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class OutboundFaxStructure {
private String id;
private String uri;
private int status;
private String userId;
private int pagesSent;
private String completionTime;
private String remoteCSID;
private String duration;
private String priority;
private String units;
private String costPerUnit;
private String attemptsMade;
private String pageSize;
private String pageOrientation;
private String pageResolution;
private String rendering;
private String pageHeader;
private String submitTime;
private String subject;
private String destinationFax;
private String replyEmail;
private String contact;
private int pagesSubmitted;
private int attemptsToPerform;
public String getId() {
return id;
}
public void setId(final String id) {
this.id = id;
}
public String getUri() {
return uri;
}
public void setUri(final String uri) {
this.uri = uri;
}
public int getStatus() {
return status;
}
public void setStatus(final int status) {
this.status = status;
}
public String getUserId() {
return userId;
}
public void setUserId(final String userId) {
this.userId = userId;
}
public int getPagesSent() {
return pagesSent;
}
public void setPagesSent(final int pagesSent) {
this.pagesSent = pagesSent;
}
public String getCompletionTime() {
return completionTime;
}
public void setCompletionTime(final String completionTime) {
this.completionTime = completionTime;
}
public String getRemoteCSID() {
return remoteCSID;
}
public void setRemoteCSID(final String remoteCSID) {
this.remoteCSID = remoteCSID;
}
public String getDuration() {
return duration;
}
public void setDuration(final String duration) {
this.duration = duration;
}
public String getPriority() {
return priority;
}
public void setPriority(final String priority) {
this.priority = priority;
}
public String getUnits() {
return units;
}
public void setUnits(final String units) {
this.units = units;
}
public String getCostPerUnit() {
return costPerUnit;
}
public void setCostPerUnit(final String costPerUnit) {
this.costPerUnit = costPerUnit;
}
public String getAttemptsMade() {
return attemptsMade;
}
public void setAttemptsMade(final String attemptsMade) {
this.attemptsMade = attemptsMade;
}
public String getPageSize() {
return pageSize;
}
public void setPageSize(final String pageSize) {
this.pageSize = pageSize;
}
public String getPageOrientation() {
return pageOrientation;
}
public void setPageOrientation(final String pageOrientation) {
this.pageOrientation = pageOrientation;
}
public String getPageResolution() {
return pageResolution;
}
public void setPageResolution(final String pageResolution) {
this.pageResolution = pageResolution;
}
public String getRendering() {
return rendering;
}
public void setRendering(final String rendering) {
this.rendering = rendering;
}
public String getPageHeader() {
return pageHeader;
}
public void setPageHeader(final String pageHeader) {
this.pageHeader = pageHeader;
}
public String getSubmitTime() {
return submitTime;
}
public void setSubmitTime(final String submitTime) {
this.submitTime = submitTime;
}
public String getSubject() {
return subject;
}
public void setSubject(final String subject) {
this.subject = subject;
}
public String getDestinationFax() {
return destinationFax;
}
public void setDestinationFax(final String destinationFax) {
this.destinationFax = destinationFax;
}
public String getReplyEmail() {
return replyEmail;
}
public void setReplyEmail(final String replyEmail) {
this.replyEmail = replyEmail;
}
public int getPagesSubmitted() {
return pagesSubmitted;
}
public void setPagesSubmitted(final int pagesSubmitted) {
this.pagesSubmitted = pagesSubmitted;
}
public int getAttemptsToPerform() {
return attemptsToPerform;
}
public void setAttemptsToPerform(final int attemptsToPerform) {
this.attemptsToPerform = attemptsToPerform;
}
public String getContact() {
return contact;
}
public void setContact(final String contact) {
this.contact = contact;
}
}