/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Metric metrics model */ export type MetricsSamplingDTO = { /** * Sampling value */ amount?: number; /** * Timestamp of the sampling */ timestamp?: string; };