/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { PerformerTariffConstraintUniversal } from './performerTariffConstraint'; /** * The tariff determines the cost and time limits of the shift. */ export interface PerformerTariffUniversal { [key: string]: any | any; /** * Price for using the shift, monetary unit. */ cost_per_shift?: number; /** * List of components of the tariff. */ constraints?: Array; /** * Max sum of penalties for performer or transport using this shift, monetary unit. If not specified or null, the performer can violate without restrictions. */ max_penalty_cost?: number | null; }