Skip to content

Commit ef65034

Browse files
committed
Include EventOverType in ApiEventResponse
1 parent 621b74e commit ef65034

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Refresh.Interfaces.APIv3/Endpoints/DataTypes/Response/Activity/ApiEventResponse.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public class ApiEventResponse : IApiResponse, IDataConvertableFrom<ApiEventRespo
88
{
99
public required string EventId { get; set; }
1010
public required int EventType { get; set; }
11+
public required EventOverType OverType { get; set; }
1112
public required string UserId { get; set; }
1213
public required DateTimeOffset OccurredAt { get; set; }
1314
public required EventDataType StoredDataType { get; set; }
@@ -22,6 +23,7 @@ public class ApiEventResponse : IApiResponse, IDataConvertableFrom<ApiEventRespo
2223
{
2324
EventId = old.EventId.ToString()!,
2425
EventType = (int)old.EventType,
26+
OverType = old.OverType,
2527
UserId = old.User.UserId.ToString()!,
2628
OccurredAt = old.Timestamp,
2729
StoredDataType = old.StoredDataType,

0 commit comments

Comments
 (0)