So What I assume we're going to take as input is
cost_per_mile: float !required
no_of_drop_off_locations: int !required
distance_between_locations: array(float) !required
extra_person_count: int
extra_person_price_overide: float
What this will look like
{
cost_per_mile: 1.0
no_of_drop_off_locations: 3
distance_between_locations: [ 55, 13, 22],
extra_person_count: 1
extra_person_price_overide: 15
}
So What I assume we're going to take as input is
What this will look like