Interface DataAPITimestampComponents

Represents the time components that make up a DataAPITimestamp

interface DataAPITimestampComponents {
    date: number;
    hours: number;
    minutes: number;
    month: number;
    nanoseconds: number;
    seconds: number;
    year: number;
}

Properties

date: number

The day of the month

hours: number

The hour of the timestamp

minutes: number

The minute of the timestamp

month: number

The month of the timestamp (should be between 1 and 12)

nanoseconds: number

The nanosecond of the timestamp

seconds: number

The second of the timestamp

year: number

The year of the timestamp