ocpi-types
Version:
TypeScript DTOs and enums for OCPI 2.2.1 specification.
19 lines (18 loc) • 548 B
TypeScript
import { DayOfWeek } from '../enums/day-of-week.enum';
import { ReservationRestrictionType } from '../enums/reservation-restriction-type.enum';
export declare class TariffRestrictionsDto {
startTime?: string;
endTime?: string;
startDate?: string;
endDate?: string;
minKwh?: number;
maxKwh?: number;
minCurrent?: number;
maxCurrent?: number;
minPower?: number;
maxPower?: number;
minDuration?: number;
maxDuration?: number;
dayOfWeek?: DayOfWeek[];
reservation?: ReservationRestrictionType;
}