package com.sjriley.zappit.vo;
import com.google.gson.annotations.SerializedName;
public class CreateAccountRequest
{
private String code;
private String name;
private String email;
private String password;
private String confirmpassword;
private String dobd;
private String dobm;
private String doby;
private String gender;
private String postcode;
private String promo;
@SerializedName ("long")
private double longitude;
private double lat;
public CreateAccountRequest(String code, String name, String email,
String password, String confirmpassword, String dobd, String dobm,
String doby, String gender, String postcode, String promo,
double longitude, double lat)
{
super();
this.code = code;
this.name = name;
this.email = email;
this.password = password;
this.confirmpassword = confirmpassword;
this.dobd = dobd;
this.dobm = dobm;
this.doby = doby;
this.gender = gender;
this.postcode = postcode;
this.promo = promo;
this.longitude = longitude;
this.lat = lat;
}
}