-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathResponse.java
More file actions
executable file
·145 lines (120 loc) · 2.68 KB
/
Response.java
File metadata and controls
executable file
·145 lines (120 loc) · 2.68 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
package co.writepath;
import java.util.List;
/**
* Response container object. Different fields are set by the server depending
* on the type of query. In case of error, {@link co.writepath.Response#errorCode} and {@link co.writepath.Response#errorMessage} are set.
* Please see http://www.writepath.co/en/developers
*
*/
public class Response {
/**
* Numerical error code
*/
private int errorCode;
/**
* Error message string
*/
private String errorMessage;
/**
* Word count of a query (plain text or document)
*/
private int wordCount;
/**
* WritePath order id of job
*/
private int orderId;
/**
* Number of words used in job
*/
private int wordsUsed;
/**
* Status of the job
*/
private String status;
/**
* Due date of the job
*/
private String dueDate;
/**
* Current word balance of user
*/
private int wordsBalance;
/**
* Returned document in base64 encoding
*/
private String document;
/**
* Comment by editor
*/
private String commentFinished;
/**
* Set when querying for languages
*/
private List<String> langArray;
public int getErrorCode() {
return errorCode;
}
public void setErrorCode(int errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public int getWordCount() {
return wordCount;
}
public void setWordCount(int wordCount) {
this.wordCount = wordCount;
}
public int getOrderId() {
return orderId;
}
public void setOrderId(int orderId) {
this.orderId = orderId;
}
public int getWordsUsed() {
return wordsUsed;
}
public void setWordsUsed(int wordsUsed) {
this.wordsUsed = wordsUsed;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDueDate() {
return dueDate;
}
public void setDueDate(String dueDate) {
this.dueDate = dueDate;
}
public int getWordsBalance() {
return wordsBalance;
}
public void setWordsBalance(int wordsBalance) {
this.wordsBalance = wordsBalance;
}
public String getDocument() {
return document;
}
public void setDocument(String document) {
this.document = document;
}
public List<String> getLangArray() {
return langArray;
}
public void setLangArray(List<String> langArray) {
this.langArray = langArray;
}
public String getCommentFinished() {
return commentFinished;
}
public void setCommentFinished(String commentFinished) {
this.commentFinished = commentFinished;
}
}