Skip to content

Instantly share code, notes, and snippets.

@HammadNasir
Created October 28, 2017 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HammadNasir/a196bcdc6dccbf69657fca528443e680 to your computer and use it in GitHub Desktop.
Save HammadNasir/a196bcdc6dccbf69657fca528443e680 to your computer and use it in GitHub Desktop.
public class Profile {
public Profile() {
}
@SerializedName("imageUrl")
@Expose
private ArrayList<String> imageUrl;
@SerializedName("pDescription")
@Expose
private String pDescription;
@SerializedName("pDuration")
@Expose
private String pDuration;
@SerializedName("pPrice")
@Expose
private String pPrice;
@SerializedName("pAt")
@Expose
private String pAt;
@SerializedName("pName")
@Expose
private String pName;
@SerializedName("pImage")
@Expose
private String pImage;
@SerializedName("pID")
@Expose
private String pID;
@SerializedName("lID")
@Expose
private String lID;
@SerializedName("phone_number")
@Expose
private String phoneNumber;
@SerializedName("negativeTimeStamp")
@Expose
private Long negativeTimeStamp;
public Profile(ArrayList<String> pImageUrl, String pDescription, String pDuration, String pPrice, String pAt, String pName, String pImage, String pID, String lID, String phoneNumber, Long negativeTimeStamp) {
this.imageUrl = pImageUrl;
this.pDescription = pDescription;
this.pDuration = pDuration;
this.pPrice = pPrice;
this.pAt = pAt;
this.pName = pName;
this.pImage = pImage;
this.pID = pID;
this.lID = lID;
this.phoneNumber = phoneNumber;
this.negativeTimeStamp = negativeTimeStamp;
}
public String getPDescription() {
return pDescription;
}
public void setPDescription(String pDescription) {
this.pDescription = pDescription;
}
public ArrayList<String> getImageUrl() {
return imageUrl;
}
public void setImageUrl(ArrayList<String> imageUrl) {
this.imageUrl = imageUrl;
}
public String getPDuration() {
return pDuration;
}
public void setPDuration(String pDuration) {
this.pDuration = pDuration;
}
public String getPPrice() {
return pPrice;
}
public void setPPrice(String pPrice) {
this.pPrice = pPrice;
}
public String getPAt() {
return pAt;
}
public void setPAt(String pAt) {
this.pAt = pAt;
}
public String getPName() {
return pName;
}
public void setPName(String pName) {
this.pName = pName;
}
public String getPImage() {
return pImage;
}
public void setPImage(String pImage) {
this.pImage = pImage;
}
public String getPID() {
return pID;
}
public void setPID(String pID) {
this.pID = pID;
}
public String getLID() {
return lID;
}
public void setLID(String lID) {
this.lID = lID;
}
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public Long getNegativeTimeStamp() {
return negativeTimeStamp;
}
public void setNegativeTimeStamp(Long negativeTimeStamp) {
this.negativeTimeStamp = negativeTimeStamp;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment