/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { TimeUnitEnum } from './TimeUnitEnum'; /** * * @export * @interface Duration */ export interface Duration { /** * Numeric value of the duration * @type {number} * @memberof Duration */ amount: number; /** * * @type {TimeUnitEnum} * @memberof Duration */ unit: TimeUnitEnum; } export declare function DurationFromJSON(json: any): Duration; export declare function DurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Duration; export declare function DurationToJSON(value?: Duration | null): any;