Skip to content

Commit

Permalink
fix: Run pipeline without specifying a pipeline id (use default pipel…
Browse files Browse the repository at this point in the history
…ine)
  • Loading branch information
vicfergar committed Aug 18, 2023
1 parent 80f6d16 commit 7a105a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/HassClient.WS/HASSClientWebSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using HassClient.Models;
using HassClient.Serialization;
using HassClient.WS.Messages;
using HassClient.WS.Messages.Response;
using HassClient.WS.Serialization;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ public PipelineRunMessage()
/// <summary>
/// ID of the pipeline.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string Pipeline { get; set; }

/// <summary>
/// Unique id for conversation. <see href="https://developers.home-assistant.io/docs/intent_conversation_api#conversation-id"/>.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string ConversationId { get; set; }

/// <summary>
Expand Down

0 comments on commit 7a105a2

Please sign in to comment.