import { ISharedVehiclesPricingPlanOutput } from "../../schema-definitions/definitions/PricingPlans"; import { ISharedVehiclesPricingOutput } from "../../schema-definitions/definitions/Pricings"; import { ISharedVehiclesRentalAppOutput } from "../../schema-definitions/definitions/RentalApps"; import { ISharedVehicleStatusOutput } from "../../schema-definitions/definitions/VehicleStatus"; import { ISharedVehicleTypeOutput } from "../../schema-definitions/definitions/VehicleTypes"; import { ISharedVehiclesGeofencingZoneOutput } from "../../schema-definitions"; export interface ILimeTransformationResult { bikeStatus: ISharedVehicleStatusOutput[]; vehicleTypes: ISharedVehicleTypeOutput[]; pricingPlans: ISharedVehiclesPricingPlanOutput[]; pricing: ISharedVehiclesPricingOutput[]; geofencingZones: ISharedVehiclesGeofencingZoneOutput[]; rentalApps: ISharedVehiclesRentalAppOutput[]; }