2026-03-23 07:51:32 -05:00
|
|
|
|
namespace Jibo.Runtime.Abstractions;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed class RobotEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
public string EventId { get; init; } = Guid.NewGuid().ToString("N");
|
|
|
|
|
|
public DateTimeOffset TimestampUtc { get; init; } = DateTimeOffset.UtcNow;
|
|
|
|
|
|
|
|
|
|
|
|
public string EventType { get; init; } = string.Empty;
|
|
|
|
|
|
public string? SessionId { get; init; }
|
|
|
|
|
|
public string? Transcript { get; init; }
|
|
|
|
|
|
public string? WakePhrase { get; init; }
|
2026-04-11 07:12:57 -05:00
|
|
|
|
public string? DeviceId { get; init; }
|
|
|
|
|
|
public string? HostName { get; init; }
|
|
|
|
|
|
public string? RequestId { get; init; }
|
|
|
|
|
|
public string? ProtocolService { get; init; }
|
|
|
|
|
|
public string? ProtocolOperation { get; init; }
|
|
|
|
|
|
public string? FirmwareVersion { get; init; }
|
|
|
|
|
|
public string? ApplicationVersion { get; init; }
|
2026-03-23 07:51:32 -05:00
|
|
|
|
|
|
|
|
|
|
public IDictionary<string, object?> Payload { get; init; } = new Dictionary<string, object?>();
|
2026-05-17 08:08:11 -05:00
|
|
|
|
}
|