Fees
This resource allows you to retrieve information about parking lot fees.
The Fee model
Properties
-
- Name
id
- Type
- int
- Description
-
The unique identifier for the parking lot fee
-
- Name
cost_per_unit
- Type
- int
- Description
-
The cost per unit of the fee, for example 1000 for 10.00.
-
- Name
unit
- Type
- int
- Description
-
Enum value for the unit of the fee. Possible values:1 = hour, 2 = day, 3 = week, 4 = month
-
- Name
start_time
- Type
- string
- Description
-
The start time of the fee in the format HH:MM:SS
-
- Name
end_time
- Type
- string
- Description
-
The end time of the fee in the format HH:MM:SS
-
- Name
type_of_day
- Type
- string
- Description
-
The weekday for the fee. Possible values: 1 = weekday, 2 = saturday, 3 = sunday.
-
- Name
round
- Type
- boolean
- Description
-
Tells if the fee should be rounded up to the nearest unit or not.
JSON Resource
{
"id": 1500,
"cost_per_unit": 6537,
"unit": 3,
"start_time": "20:37:39",
"end_time": "09:35:59",
"type_of_day": 2,
"round": true
}