/** * Metric metrics model */ export type MetricsSamplingDTO = { /** * Sampling value */ amount?: number; /** * Timestamp of the sampling */ timestamp?: string; };