Target
Contains the history that the target went through.
interface Target {
type: string;
url: string;
title: string;
event: TargetEvent; // "CREATED" | "UPDATED" | "UNKNOWN"
version: string;
timestamp: string;
}
Fields
Reference
Fields
type
version : 1.0.0
stability: stable
type: string;
The type of the target.
url
version : 1.0.0
stability: stable
url: string;
The URL of the target at that point in time.
title
version : 1.0.0
stability: stable
title: string;
The title of the target at that point in time.
event
version : 1.0.0
stability: stable
event: TargetEvent;
enum TargetEvent {
Created = "CREATED",
Updated = "UPDATED",
Unknown = "UNKNOWN",
}
The reason of the target's info update at that point in time.
version
version : 1.0.0
stability: stable
version: string;
The version of the target at that point in time.
timestamp
version : 1.0.0
stability: stable
timestamp: string;
An ISO 8601 timestamp that reflects the moment when the Target
was updated.