com.targomo.client.api.pojo.TransitTravelTimeValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for easy usage of Targomo web services.
The newest version!
package com.targomo.client.api.pojo;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.targomo.client.api.json.TransitTravelTimeValueDeserializer;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@Builder
@JsonDeserialize(using=TransitTravelTimeValueDeserializer.class)
public class TransitTravelTimeValue {
@Getter @Setter
private long departure;
@Getter @Setter
private long arrival;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy