interface ParkingAttributesInterface {
    canExitWhileClosed: boolean;
    costType: "UNKNOWN" | COST_TYPE;
    estimatedNumberOfSpots?: SPOTS_ESTIMATE;
    hasTBR: boolean;
    lotType: LOT_TYPE[];
    numberOfSpots?: number;
    parkingType: null | PARKING_TYPE;
    paymentType: PAYMENT_TYPE[];
}

Properties

canExitWhileClosed: boolean
costType: "UNKNOWN" | COST_TYPE
estimatedNumberOfSpots?: SPOTS_ESTIMATE
hasTBR: boolean
lotType: LOT_TYPE[]
numberOfSpots?: number
parkingType: null | PARKING_TYPE
paymentType: PAYMENT_TYPE[]