package com.newinternaldsp.Entity;

import java.util.ArrayList;

public class User{
    public String id;
    public String consent;
    public String buyeruid;
    public int yob;
    public String gender;
    public ArrayList<Datum> data;
    public Ext ext;
    
    
	public User() {
		super();
	}
	public User(String id, String consent, String buyeruid, int yob, String gender, ArrayList<Datum> data, Ext ext) {
		super();
		this.id = id;
		this.consent = consent;
		this.buyeruid = buyeruid;
		this.yob = yob;
		this.gender = gender;
		this.data = data;
		this.ext = ext;
	}
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public String getConsent() {
		return consent;
	}
	public void setConsent(String consent) {
		this.consent = consent;
	}
	public String getBuyeruid() {
		return buyeruid;
	}
	public void setBuyeruid(String buyeruid) {
		this.buyeruid = buyeruid;
	}
	public int getYob() {
		return yob;
	}
	public void setYob(int yob) {
		this.yob = yob;
	}
	public String getGender() {
		return gender;
	}
	public void setGender(String gender) {
		this.gender = gender;
	}
	public ArrayList<Datum> getData() {
		return data;
	}
	public void setData(ArrayList<Datum> data) {
		this.data = data;
	}
	public Ext getExt() {
		return ext;
	}
	public void setExt(Ext ext) {
		this.ext = ext;
	}
    
    
}
