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

global.maplink.toll.schema.result.TollCalculationResult Maven / Gradle / Ivy

package global.maplink.toll.schema.result;

import lombok.*;

import java.math.BigDecimal;
import java.util.List;

@Data
@AllArgsConstructor
@NoArgsConstructor(force = true)
@Builder
public class TollCalculationResult {
    @Singular
    private final List legs;
    private final BigDecimal totalCost;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy