All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sinofool.wechat.mp.msg.IncomingLocationEventMessage Maven / Gradle / Ivy

The newest version!
package net.sinofool.wechat.mp.msg;

public class IncomingLocationEventMessage extends EventMessage {

    private String event;
    private double latitude;
    private double longitude;
    private double precision;

    @Override
    public String getEvent() {
        return event;
    }

    public void setEvent(String event) {
        this.event = event;
    }

    public double getLatitude() {
        return latitude;
    }

    public void setLatitude(double latitude) {
        this.latitude = latitude;
    }

    public double getLongitude() {
        return longitude;
    }

    public void setLongitude(double longitude) {
        this.longitude = longitude;
    }

    public double getPrecision() {
        return precision;
    }

    public void setPrecision(double precision) {
        this.precision = precision;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy