package com.sjriley.zappit.vo; import com.google.gson.annotations.SerializedName; public class CodeCheckRequest { private String code; private String userid; private String barcode; @SerializedName ("long") private double longitude; private double lat; public CodeCheckRequest(String code, String userid, String barcode, double latitude, double longitude) { super(); this.code = code; this.userid = userid; this.barcode = barcode; this.longitude = longitude; this.lat = latitude; } }