Skip to main content
Module

x/atlas_sdk/mod.ts>Timestamp

TypeSafe MongoDB Atlas Data API SDK for Deno, Deno Deploy and Node.js
Latest
class Timestamp
import { Timestamp } from "https://deno.land/x/atlas_sdk@v1.1.3/mod.ts";

Constructors

new
Timestamp(int: bigint)
new
Timestamp(long: Long)
new
Timestamp(value: { t: number; i: number; })

Properties

readonly
_bsontype: "Timestamp"

Methods

inspect(): string
toJSON(): { $timestamp: string; }

Static Properties

readonly
MAX_VALUE: Long

Static Methods

fromBits(lowBits: number, highBits: number): Timestamp

Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits.

fromInt(value: number): Timestamp

Returns a Timestamp represented by the given (32-bit) integer value.

fromNumber(value: number): Timestamp

Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned.

fromString(str: string, optRadix: number): Timestamp

Returns a Timestamp from the given string, optionally using the given radix.