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

com.yodlee.api.model.transaction.Coordinates Maven / Gradle / Ivy

There is a newer version: 1.1.31
Show newest version
/**
 * Copyright (c) 2019 Yodlee, Inc. All Rights Reserved.
 *
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
package com.yodlee.api.model.transaction;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;

public class Coordinates {

	@ApiModelProperty(value = "Latitude of the merchant"//
			+ "

"// + "Applicable containers: bank,creditCard,loan
"// ) @JsonProperty("latitude") private Double latitude; @ApiModelProperty(value = "Longitude of the merchant"// + "

"// + "Applicable containers: bank,creditCard,loan
"// ) @JsonProperty("longitude") private Double longitude; /** * Latitude of the merchant
*
* Applicable containers: bank,creditCard,loan
* * @return latitude */ public Double getLatitude() { return latitude; } public void setLatitude(Double latitude) { this.latitude = latitude; } /** * Longitude of the merchant
*
* Applicable containers: bank,creditCard,loan
* * @return longitude */ public Double getLongitude() { return longitude; } public void setLongitude(Double longitude) { this.longitude = longitude; } @Override public String toString() { return "Coordinates [latitude=" + latitude + ", longitude=" + longitude + "]"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy