| | | 1 | | namespace Elsa.Api.Client.Resources.WorkflowInstances.Models; |
| | | 2 | | |
| | | 3 | | /// <summary> |
| | | 4 | | /// Represents a single execution log record. |
| | | 5 | | /// </summary> |
| | | 6 | | /// <param name="Id">The ID of the execution log record.</param> |
| | | 7 | | /// <param name="ActivityInstanceId">The ID of the activity instance associated with the execution log record.</param> |
| | | 8 | | /// <param name="ParentActivityInstanceId">The ID of the parent activity instance associated with the execution log reco |
| | | 9 | | /// <param name="ActivityId">The ID of the activity associated with the execution log record.</param> |
| | | 10 | | /// <param name="ActivityType">The type of the activity associated with the execution log record.</param> |
| | | 11 | | /// <param name="ActivityTypeVersion">The version of the activity type associated with the execution log record.</param> |
| | | 12 | | /// <param name="ActivityName">The name of the activity associated with the execution log record.</param> |
| | | 13 | | /// <param name="NodeId">The ID of the node associated with the execution log record.</param> |
| | | 14 | | /// <param name="Timestamp">The timestamp of the execution log record.</param> |
| | | 15 | | /// <param name="Sequence">The sequence of the execution log record.</param> |
| | | 16 | | /// <param name="EventName">The name of the event associated with the execution log record.</param> |
| | | 17 | | /// <param name="Message">The message associated with the execution log record.</param> |
| | | 18 | | /// <param name="Source">The source of the execution log record.</param> |
| | | 19 | | /// <param name="ActivityState">The state of the activity associated with the execution log record.</param> |
| | | 20 | | /// <param name="Payload">The payload associated with the execution log record.</param> |
| | 0 | 21 | | public record WorkflowExecutionLogRecord( |
| | 0 | 22 | | string Id, |
| | 0 | 23 | | string ActivityInstanceId, |
| | 0 | 24 | | string? ParentActivityInstanceId, |
| | 0 | 25 | | string ActivityId, |
| | 0 | 26 | | string ActivityType, |
| | 0 | 27 | | int ActivityTypeVersion, |
| | 0 | 28 | | string? ActivityName, |
| | 0 | 29 | | string NodeId, |
| | 0 | 30 | | DateTimeOffset Timestamp, |
| | 0 | 31 | | long Sequence, |
| | 0 | 32 | | string? EventName, |
| | 0 | 33 | | string? Message, |
| | 0 | 34 | | string? Source, |
| | 0 | 35 | | IDictionary<string, object>? ActivityState, |
| | 0 | 36 | | object? Payload); |