com.targomo.client.api.quality.criterion.MobilityCriterionDefinition 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.quality.criterion;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.SuperBuilder;
import lombok.extern.jackson.Jacksonized;
@Getter
@EqualsAndHashCode(callSuper = true)
@Jacksonized
@SuperBuilder(toBuilder = true)
@ToString(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class MobilityCriterionDefinition extends CriterionDefinition {
@Setter
private String mobilityServiceUrl;
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 Integer radius;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy