SuccessNode

public struct SuccessNode : Node

Represents a success node in the workflow.

  • property input: The input for the success.
  • property session: The session for the success.
  • Declaration

    Swift

    nonisolated(unsafe) public let input: [String : Any]
  • Declaration

    Swift

    public let session: Session
  • Initializes a new instance of SuccessNode.

    Declaration

    Swift

    public init(input: [String : Any] = [:], session: Session)

    Parameters

    input

    The input for the success.

    session

    The session for the success.