Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class StudentModel {
- private String id;
- @SerializedName("student_name")
- @Expose
- private String student_name;
- @SerializedName("student_address")
- @Expose
- private String student_address;
- @SerializedName("student_email")
- @Expose
- private String student_email;
- @SerializedName("student_phone")
- @Expose
- private String student_phone;
- @SerializedName("dept_code")
- @Expose
- private String dept_code;
- @SerializedName("batch_id")
- @Expose
- private String batch_id;
- @SerializedName("student_id")
- @Expose
- private String student_id;
- @SerializedName("password")
- @Expose
- private String password;
- private String status;
- private String unique_id;
- private String old_password;
- private String new_password;
- @Override
- public String toString() {
- return "Name: "+student_name+"\nAddress: "+student_address+"\nEmail: "+student_email+
- "\nPhone: "+student_phone+"\nDept. Code: "+dept_code+"\nBatch: "+batch_id+
- "\nStudent Id: "+student_id+"\nPassword: "+password;
- } //and getter-setter methods }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement