Class VideoMetadata
Details about the in-car video.
Inherited Members
Namespace: RedMist.TimingCommon.Models.InCarVideo
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class VideoMetadata
Constructors
View SourceVideoMetadata()
Declaration
public VideoMetadata()
Properties
View SourceCarNumber
Car number if available. Specific to the event.
Declaration
[JsonPropertyName("cn")]
[Key(1)]
[MaxLength(5)]
public string CarNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Destinations
Destination details for the video stream.
Declaration
[JsonPropertyName("d")]
[Key(5)]
[MaxLength(5)]
public List<VideoDestination> Destinations { get; set; }
Property Value
| Type | Description |
|---|---|
| List<VideoDestination> |
DriverName
DEPRECATED. Name of the driver if available.
Declaration
[JsonPropertyName("dn")]
[Key(7)]
[MaxLength(25)]
[Obsolete("DriverName is deprecated and will be removed in future versions.")]
public string DriverName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EventId
Associated event ID.
Declaration
[JsonPropertyName("eid")]
[Key(0)]
public int EventId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
IsLive
Indicates if the video is currently live.
Declaration
[JsonPropertyName("l")]
[Key(6)]
public bool IsLive { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
SystemType
Source of the video, e.g., Sentinel.
Declaration
[JsonPropertyName("t")]
[Key(4)]
public VideoSystemType SystemType { get; set; }
Property Value
| Type | Description |
|---|---|
| VideoSystemType |
TransponderId
Car's transponder ID. Not specific to the event.
Declaration
[JsonPropertyName("tp")]
[Key(2)]
public uint TransponderId { get; set; }
Property Value
| Type | Description |
|---|---|
| uint |
UseTransponderId
Indicates if the transponder ID should be used instead of the car number.
Declaration
[JsonPropertyName("utp")]
[Key(3)]
public bool UseTransponderId { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |