public setFrom(from?: number): TimestampRange {
        this.from = from == null ? CommandKeyword.MIN_TIMESTAMP : this.validateTimestamp(from);
        return this;
    }