Skip to content

Commit

Permalink
Merge pull request #247 from Project-MONAI/AI-230
Browse files Browse the repository at this point in the history
making payloadId nullable
  • Loading branch information
neildsouth authored Oct 23, 2023
2 parents bb9840f + 4c6751f commit 875b2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Messaging/Events/ExportRequestEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class ExportRequestEvent : EventBase

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

/// <summary>
/// A list of data output plug-in type names to be executed by the export services.
Expand Down

0 comments on commit 875b2df

Please sign in to comment.