Module

x/atlas_sdk3/mod.ts>Timestamp

TypeSafe MongoDB Atlas Data API SDK for Deno & Deno Deploy
Latest
class Timestamp
import { Timestamp } from "https://dotland.deno.dev/x/atlas_sdk3@v0.3.1/mod.ts";

Constructors

new
Timestamp()
new
Timestamp(value: Long | Timestamp)
new
Timestamp(value: { t: number; i: number; })
new
Timestamp(value?: Timestamp | Long | { t: number; i: number; })

Properties

_bsontype: string

Methods

toExtendedJSON(): TimestampExtended
toJSON(): { $timestamp: string; }

Static Properties

readonly
MAX_VALUE

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.

fromExtendedJSON(doc: TimestampExtended): Timestamp
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.

import Timestamp
import { Timestamp } from "https://dotland.deno.dev/x/atlas_sdk3@v0.3.1/mod.ts";