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

com.ecwid.consul.v1.coordinate.model.Coord Maven / Gradle / Ivy

package com.ecwid.consul.v1.coordinate.model;

import com.google.gson.annotations.SerializedName;

import java.util.List;

/**
 * @author Vasily Vasilkov ([email protected])
 */
public class Coord {

	@SerializedName("Error")
	private Double error;
	@SerializedName("Height")
	private Double height;
	@SerializedName("Adjustment")
	private Double adjustment;
	@SerializedName("Vec")
	private List vec;

	public Double getError() {
		return error;
	}

	public void setError(Double error) {
		this.error = error;
	}

	public Double getHeight() {
		return height;
	}

	public void setHeight(Double height) {
		this.height = height;
	}

	public Double getAdjustment() {
		return adjustment;
	}

	public void setAdjustment(Double adjustment) {
		this.adjustment = adjustment;
	}

	public List getVec() {
		return vec;
	}

	public void setVec(List vec) {
		this.vec = vec;
	}

	@Override
	public String toString() {
		return "Coord{" +
				"error=" + error +
				", height=" + height +
				", adjustment=" + adjustment +
				", vec=" + vec +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy