/**
 * Shell EVLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { TariffVOUpdatedByEnum } from './tariffVOUpdatedByEnum';
/** Tariff details for charging on this Connector */
export interface TariffVO {
    /** Tariff to start a charging session */
    startFee?: number;
    /** Tariff per minute of charging time */
    perMinute?: number;
    /** Tariff per kWh of energy consumed */
    perKWh?: number;
    /** ISO 4217 Currency Code of the local currency. */
    currency?: string;
    /** ISO8601-compliant UTC datetime of the last update of the Tariff */
    updated?: string;
    updatedBy?: TariffVOUpdatedByEnum;
    /** Tariff structure that this tariff belongs to, typically Default unless specific tariff is defined for provider */
    structure?: string;
}
export declare const tariffVOSchema: Schema<TariffVO>;
