interface SeenAt {
    global: null | string;
    subscription: null | string;
}

Properties

Properties

global: null | string

The date and time across all subscription. The string format is ISO-8601.

Example

'2022-03-16T05:18:24.610Z'
new Date(result.firstSeenAt.global)
subscription: null | string

The date and time within your subscription. The string format is ISO-8601.

Example

'2022-03-16T05:18:24.610Z'
new Date(result.firstSeenAt.subscription)

Generated using TypeDoc