Advertisement
hasancse1991

Untitled

Apr 28th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.87 KB | None | 0 0
  1. @SerializedName("user_name")
  2.     @Expose
  3.     private String userName;
  4.     @SerializedName("email")
  5.     @Expose
  6.     private String email;
  7.     @SerializedName("mobile_number")
  8.     @Expose
  9.     private String mobileNumber;
  10.     @SerializedName("user_birth_date")
  11.     @Expose
  12.     private String userBirthDate;
  13.     @SerializedName("country")
  14.     @Expose
  15.     private String country;
  16.     @SerializedName("city")
  17.     @Expose
  18.     private String city;
  19.     @SerializedName("area")
  20.     @Expose
  21.     private String area;
  22.     @SerializedName("patient_country")
  23.     @Expose
  24.     private CommonIdTextTypeDataModel patientCountry;
  25.     @SerializedName("patient_city")
  26.     @Expose
  27.     private CommonIdTextTypeDataModel patientCity;
  28.     @SerializedName("patient_area")
  29.     @Expose
  30.     private CommonIdTextTypeDataModel patientArea;
  31.     @SerializedName("gender")
  32.     @Expose
  33.     private String gender;
  34.     @SerializedName("address1")
  35.     @Expose
  36.     private String address1;
  37.     @SerializedName("address2")
  38.     @Expose
  39.     private String address2;
  40.     @SerializedName("user_height_feet")
  41.     @Expose
  42.     private String userHeightFeet;
  43.     @SerializedName("user_height_inch")
  44.     @Expose
  45.     private String userHeightInch;
  46.     @SerializedName("user_weight_kg")
  47.     @Expose
  48.     private String userWeightKg;
  49.     @SerializedName("user_weight_lb")
  50.     @Expose
  51.     private String userWeightLb;
  52.     @SerializedName("user_blood_group")
  53.     @Expose
  54.     private String userBloodGroup;
  55.     @SerializedName("user_medical_condition")
  56.     @Expose
  57.     private String userMedicalCondition;
  58.     @SerializedName("user_father_medical_condition")
  59.     @Expose
  60.     private String userFatherMedicalCondition;
  61.     @SerializedName("user_mother_medical_condition")
  62.     @Expose
  63.     private String userMotherMedicalCondition;
  64.     @SerializedName("timezone")
  65.     @Expose
  66.     private String timezone;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement