Skip to content

Commit

Permalink
adding payloadId to export event
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Oct 23, 2023
1 parent fab4b09 commit f551b56
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Messaging/Events/ExportRequestEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ public class ExportRequestEvent : EventBase
[JsonPropertyName("error_messages")]
public List<string> ErrorMessages { get; private set; }

[JsonProperty(PropertyName = "file_id")]
[JsonPropertyName("file_id")]
public string PayloadId { get; set; } = string.Empty;

/// <summary>
/// A list of data output plug-in type names to be executed by the export services.
/// Each string must be a fully-qualified type name.
Expand Down

0 comments on commit f551b56

Please sign in to comment.