Subversion Repositories SmartDukaan

Rev

Rev 35837 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35837 Rev 35844
Line 93... Line 93...
93
 
93
 
94
	public void setGcm_regid(String gcm_regid) {
94
	public void setGcm_regid(String gcm_regid) {
95
		this.gcm_regid = gcm_regid;
95
		this.gcm_regid = gcm_regid;
96
	}
96
	}
97
 
97
 
98
	
-
 
99
 
-
 
100
	public int getFailurecount() {
98
	public int getFailurecount() {
101
		return failurecount;
99
		return failurecount;
102
	}
100
	}
103
 
101
 
104
	public void setFailurecount(int failurecount) {
102
	public void setFailurecount(int failurecount) {
Line 111... Line 109...
111
 
109
 
112
	public void setNotification_type(String notification_type) {
110
	public void setNotification_type(String notification_type) {
113
		this.notification_type = notification_type;
111
		this.notification_type = notification_type;
114
	}
112
	}
115
 
113
 
-
 
114
 
-
 
115
	@Override
-
 
116
	public String toString() {
-
 
117
		return "AddDevicesRequest{" +
-
 
118
				"user_id=" + user_id +
-
 
119
				", versioncode='" + versioncode + '\'' +
-
 
120
				", versionname='" + versionname + '\'' +
-
 
121
				", osversion='" + osversion + '\'' +
-
 
122
				", imeinumber='" + imeinumber + '\'' +
-
 
123
				", androidid='" + androidid + '\'' +
-
 
124
				", manufacturer='" + manufacturer + '\'' +
-
 
125
				", model='" + model + '\'' +
-
 
126
				", brand='" + brand + '\'' +
-
 
127
				", gcm_regid='" + gcm_regid + '\'' +
-
 
128
				", failurecount=" + failurecount +
-
 
129
				", notification_type='" + notification_type + '\'' +
-
 
130
				'}';
-
 
131
	}
116
}
132
}