com.targomo.client.api.pojo.MobilityRequestOptions 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.
package com.targomo.client.api.pojo;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* Parameters for an edge statistics request.
*/
@Getter @AllArgsConstructor
public class MobilityRequestOptions {
private final String mobilityServiceUrl;
private final Integer radius;
private final Integer minDuration;
private final Integer maxDuration;
private final Integer hourStart;
private final Integer hourEnd;
private final Integer dayStart;
private final Integer dayEnd;
private final Integer dayOfYearStart;
private final Integer dayOfYearEnd;
private final Boolean unique;
private final Boolean exact;
private final Boolean excludeNightLocations;
private final String apiKey;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy