Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33585 ranu 1
package com.spice.profitmandi.dao.model;
2
 
3
import com.spice.profitmandi.dao.enumuration.auth.CollectionRemark;
4
 
5
import java.util.Objects;
6
 
7
public class ClickToCallRequestModel {
8
 
9
    private String accountSid;
10
    private int agentGroup;
11
    private String agentNumber;
12
    private int callMode;
13
    private int callPriority;
14
    private int campaignId;
15
    private int customDtmf;
16
    private int customDtmfFlag;
17
    private String from;
18
    private String liveEvent;
19
    private int liveEventFlag;
20
    private int mediaFileFlag;
21
    private String mediaFileId;
22
    private int nameFileFlag;
23
    private String nameFileId;
24
    private String optionalField;
25
    private String pilotNumber;
26
    private int recordingFlag;
27
    private String scheduleDateTime;
28
    private String sessionId;
29
    private int smeId;
30
    private int status;
31
    private int timeLimit;
32
    private String countryCode;
33
    private String to;
34
 
35
    public String getAccountSid() {
36
        return accountSid;
37
    }
38
 
39
    public void setAccountSid(String accountSid) {
40
        this.accountSid = accountSid;
41
    }
42
 
43
    public int getAgentGroup() {
44
        return agentGroup;
45
    }
46
 
47
    public void setAgentGroup(int agentGroup) {
48
        this.agentGroup = agentGroup;
49
    }
50
 
51
    public String getAgentNumber() {
52
        return agentNumber;
53
    }
54
 
55
    public void setAgentNumber(String agentNumber) {
56
        this.agentNumber = agentNumber;
57
    }
58
 
59
    public int getCallMode() {
60
        return callMode;
61
    }
62
 
63
    public void setCallMode(int callMode) {
64
        this.callMode = callMode;
65
    }
66
 
67
    public int getCallPriority() {
68
        return callPriority;
69
    }
70
 
71
    public void setCallPriority(int callPriority) {
72
        this.callPriority = callPriority;
73
    }
74
 
75
    public int getCampaignId() {
76
        return campaignId;
77
    }
78
 
79
    public void setCampaignId(int campaignId) {
80
        this.campaignId = campaignId;
81
    }
82
 
83
    public int getCustomDtmf() {
84
        return customDtmf;
85
    }
86
 
87
    public void setCustomDtmf(int customDtmf) {
88
        this.customDtmf = customDtmf;
89
    }
90
 
91
    public int getCustomDtmfFlag() {
92
        return customDtmfFlag;
93
    }
94
 
95
    public void setCustomDtmfFlag(int customDtmfFlag) {
96
        this.customDtmfFlag = customDtmfFlag;
97
    }
98
 
99
    public String getFrom() {
100
        return from;
101
    }
102
 
103
    public void setFrom(String from) {
104
        this.from = from;
105
    }
106
 
107
    public String getLiveEvent() {
108
        return liveEvent;
109
    }
110
 
111
    public void setLiveEvent(String liveEvent) {
112
        this.liveEvent = liveEvent;
113
    }
114
 
115
    public int getLiveEventFlag() {
116
        return liveEventFlag;
117
    }
118
 
119
    public void setLiveEventFlag(int liveEventFlag) {
120
        this.liveEventFlag = liveEventFlag;
121
    }
122
 
123
    public int getMediaFileFlag() {
124
        return mediaFileFlag;
125
    }
126
 
127
    public void setMediaFileFlag(int mediaFileFlag) {
128
        this.mediaFileFlag = mediaFileFlag;
129
    }
130
 
131
    public String getMediaFileId() {
132
        return mediaFileId;
133
    }
134
 
135
    public void setMediaFileId(String mediaFileId) {
136
        this.mediaFileId = mediaFileId;
137
    }
138
 
139
    public int getNameFileFlag() {
140
        return nameFileFlag;
141
    }
142
 
143
    public void setNameFileFlag(int nameFileFlag) {
144
        this.nameFileFlag = nameFileFlag;
145
    }
146
 
147
    public String getNameFileId() {
148
        return nameFileId;
149
    }
150
 
151
    public void setNameFileId(String nameFileId) {
152
        this.nameFileId = nameFileId;
153
    }
154
 
155
    public String getOptionalField() {
156
        return optionalField;
157
    }
158
 
159
    public void setOptionalField(String optionalField) {
160
        this.optionalField = optionalField;
161
    }
162
 
163
    public String getPilotNumber() {
164
        return pilotNumber;
165
    }
166
 
167
    public void setPilotNumber(String pilotNumber) {
168
        this.pilotNumber = pilotNumber;
169
    }
170
 
171
    public int getRecordingFlag() {
172
        return recordingFlag;
173
    }
174
 
175
    public void setRecordingFlag(int recordingFlag) {
176
        this.recordingFlag = recordingFlag;
177
    }
178
 
179
    public String getScheduleDateTime() {
180
        return scheduleDateTime;
181
    }
182
 
183
    public void setScheduleDateTime(String scheduleDateTime) {
184
        this.scheduleDateTime = scheduleDateTime;
185
    }
186
 
187
    public String getSessionId() {
188
        return sessionId;
189
    }
190
 
191
    public void setSessionId(String sessionId) {
192
        this.sessionId = sessionId;
193
    }
194
 
195
    public int getSmeId() {
196
        return smeId;
197
    }
198
 
199
    public void setSmeId(int smeId) {
200
        this.smeId = smeId;
201
    }
202
 
203
    public int getStatus() {
204
        return status;
205
    }
206
 
207
    public void setStatus(int status) {
208
        this.status = status;
209
    }
210
 
211
    public int getTimeLimit() {
212
        return timeLimit;
213
    }
214
 
215
    public void setTimeLimit(int timeLimit) {
216
        this.timeLimit = timeLimit;
217
    }
218
 
219
    public String getCountryCode() {
220
        return countryCode;
221
    }
222
 
223
    public void setCountryCode(String countryCode) {
224
        this.countryCode = countryCode;
225
    }
226
 
227
    public String getTo() {
228
        return to;
229
    }
230
 
231
    public void setTo(String to) {
232
        this.to = to;
233
    }
234
 
235
    @Override
236
    public boolean equals(Object o) {
237
        if (this == o) return true;
238
        if (o == null || getClass() != o.getClass()) return false;
239
        ClickToCallRequestModel that = (ClickToCallRequestModel) o;
240
        return agentGroup == that.agentGroup && callMode == that.callMode && callPriority == that.callPriority && campaignId == that.campaignId && customDtmf == that.customDtmf && customDtmfFlag == that.customDtmfFlag && liveEventFlag == that.liveEventFlag && mediaFileFlag == that.mediaFileFlag && nameFileFlag == that.nameFileFlag && recordingFlag == that.recordingFlag && smeId == that.smeId && status == that.status && timeLimit == that.timeLimit && Objects.equals(accountSid, that.accountSid) && Objects.equals(agentNumber, that.agentNumber) && Objects.equals(from, that.from) && Objects.equals(liveEvent, that.liveEvent) && Objects.equals(mediaFileId, that.mediaFileId) && Objects.equals(nameFileId, that.nameFileId) && Objects.equals(optionalField, that.optionalField) && Objects.equals(pilotNumber, that.pilotNumber) && Objects.equals(scheduleDateTime, that.scheduleDateTime) && Objects.equals(sessionId, that.sessionId) && Objects.equals(countryCode, that.countryCode) && Objects.equals(to, that.to);
241
    }
242
 
243
    @Override
244
    public int hashCode() {
245
        return Objects.hash(accountSid, agentGroup, agentNumber, callMode, callPriority, campaignId, customDtmf, customDtmfFlag, from, liveEvent, liveEventFlag, mediaFileFlag, mediaFileId, nameFileFlag, nameFileId, optionalField, pilotNumber, recordingFlag, scheduleDateTime, sessionId, smeId, status, timeLimit, countryCode, to);
246
    }
247
 
248
    @Override
249
    public String toString() {
250
        return "ClickToCallRequestModel{" +
251
                "accountSid='" + accountSid + '\'' +
252
                ", agentGroup=" + agentGroup +
253
                ", agentNumber='" + agentNumber + '\'' +
254
                ", callMode=" + callMode +
255
                ", callPriority=" + callPriority +
256
                ", campaignId=" + campaignId +
257
                ", customDtmf=" + customDtmf +
258
                ", customDtmfFlag=" + customDtmfFlag +
259
                ", from='" + from + '\'' +
260
                ", liveEvent='" + liveEvent + '\'' +
261
                ", liveEventFlag=" + liveEventFlag +
262
                ", mediaFileFlag=" + mediaFileFlag +
263
                ", mediaFileId='" + mediaFileId + '\'' +
264
                ", nameFileFlag=" + nameFileFlag +
265
                ", nameFileId='" + nameFileId + '\'' +
266
                ", optionalField='" + optionalField + '\'' +
267
                ", pilotNumber='" + pilotNumber + '\'' +
268
                ", recordingFlag=" + recordingFlag +
269
                ", scheduleDateTime='" + scheduleDateTime + '\'' +
270
                ", sessionId='" + sessionId + '\'' +
271
                ", smeId=" + smeId +
272
                ", status=" + status +
273
                ", timeLimit=" + timeLimit +
274
                ", countryCode='" + countryCode + '\'' +
275
                ", to='" + to + '\'' +
276
                '}';
277
    }
278
}