| | | 1 | | using Elsa.Workflows.Runtime.Options; |
| | | 2 | | |
| | | 3 | | namespace Elsa.Workflows.Runtime; |
| | | 4 | | |
| | | 5 | | public class NewBookmarkQueueItem |
| | | 6 | | { |
| | | 7 | | /// <summary> |
| | | 8 | | /// The workflow instance ID owning the bookmark to resume. |
| | | 9 | | /// </summary> |
| | 128 | 10 | | public string? WorkflowInstanceId { get; set; } = default!; |
| | | 11 | | |
| | | 12 | | /// <summary> |
| | | 13 | | /// The bookmark ID to resume. |
| | | 14 | | /// </summary> |
| | 71 | 15 | | public string? BookmarkId { get; set; } = default!; |
| | | 16 | | |
| | | 17 | | /// <summary> |
| | | 18 | | /// A bookmark payload hash of the bookmark to resume. |
| | | 19 | | /// </summary> |
| | 129 | 20 | | public string? StimulusHash { get; set; } |
| | | 21 | | |
| | | 22 | | /// <summary> |
| | | 23 | | /// The ID of the activity instance associated with the bookmark. |
| | | 24 | | /// </summary> |
| | 64 | 25 | | public string? ActivityInstanceId { get; set; } |
| | | 26 | | |
| | | 27 | | /// <summary> |
| | | 28 | | /// The correlation ID that is associated with the bookmark if any. |
| | | 29 | | /// </summary> |
| | 68 | 30 | | public string? CorrelationId { get; set; } |
| | | 31 | | |
| | | 32 | | /// <summary> |
| | | 33 | | /// The type name of the activity associated with the bookmark. |
| | | 34 | | /// </summary> |
| | 121 | 35 | | public string? ActivityTypeName { get; set; } |
| | | 36 | | |
| | | 37 | | /// <summary> |
| | | 38 | | /// Any options to apply when resuming the bookmark. |
| | | 39 | | /// </summary> |
| | 128 | 40 | | public ResumeBookmarkOptions? Options { get; set; } |
| | | 41 | | } |