UNPKG

@veeroute/lss-studio-angular

Version:

OpenAPI client for @veeroute/lss-studio-angular

29 lines (28 loc) 864 B
/** * VRt.Studio [ST] * * The version of the OpenAPI document: 7.18.2755 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { PerformerTariffConstraintStudio } from './performerTariffConstraint'; /** * The tariff determines the cost and time limits of the shift. */ export interface PerformerTariffStudio { [key: string]: any | any; /** * Price for using the shift, monetary unit. */ cost_per_shift?: number; /** * List of components of the tariff. */ constraints?: Array<PerformerTariffConstraintStudio>; /** * 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; }