diff --git a/src/graph/Node.ts b/src/graph/Node.ts index bedf5da7f..e49b6d753 100644 --- a/src/graph/Node.ts +++ b/src/graph/Node.ts @@ -98,6 +98,15 @@ export class Node { return this._ca; } + /** + * Get captured at. + * + * @returns {number} Timestamp when the image was captured. + */ + public get capturedAt(): number { + return this._apiNavImIm.captured_at; + } + /** * Get edges. * @@ -236,6 +245,15 @@ export class Node { return this._sequence; } + /** + * Get user. + * + * @returns {string} Username of the user who uploaded the image. + */ + public get user(): string { + return this._apiNavImIm.user; + } + /** * Get worthy. *