10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import { IsDateString, IsObject } from 'class-validator';
|
|
|
|
export class IngestEdgeValuesDto {
|
|
@IsDateString()
|
|
timestamp!: string;
|
|
|
|
@IsObject()
|
|
values!: Record<string, number | null>;
|
|
}
|